diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 8495e1ce6c..9678f82caf 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -2353,6 +2353,178 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -9889,6 +10061,173 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", @@ -104588,6 +104927,44 @@ } } }, + "oidc-custom-property-inclusion": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "oidc-custom-property-inclusion-input": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, "code-security-configuration": { "type": "object", "description": "A code security configuration", @@ -285882,6 +286259,11 @@ "max_cache_size_gb": 150 } }, + "oidc-custom-property-inclusion": { + "value": { + "custom_property_name": "environment" + } + }, "enterprise-code-security-configuration-list": { "value": [ { diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index 60108162a8..6c4fe76900 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -1641,6 +1641,125 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7073,6 +7192,120 @@ paths: enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - property_name: environment + - property_name: team + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -75759,6 +75992,36 @@ components: size limit for the sum of all caches in a repository, in gigabytes. type: integer example: 10 + oidc-custom-property-inclusion: + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included in the OIDC + token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization or enterprise + level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + oidc-custom-property-inclusion-input: + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC token + required: + - custom_property_name code-security-configuration: type: object description: A code security configuration @@ -213791,6 +214054,9 @@ components: actions-cache-storage-limit: value: max_cache_size_gb: 150 + oidc-custom-property-inclusion: + value: + custom_property_name: environment enterprise-code-security-configuration-list: value: - id: 17 diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.json b/descriptions/api.github.com/api.github.com.2026-03-10.json index 570b711796..a73e98a97e 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions/api.github.com/api.github.com.2026-03-10.json @@ -2353,6 +2353,178 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -9888,6 +10060,173 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", @@ -104412,6 +104751,44 @@ } } }, + "oidc-custom-property-inclusion": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "oidc-custom-property-inclusion-input": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, "code-security-configuration": { "type": "object", "description": "A code security configuration", @@ -285132,6 +285509,11 @@ "max_cache_size_gb": 150 } }, + "oidc-custom-property-inclusion": { + "value": { + "custom_property_name": "environment" + } + }, "enterprise-code-security-configuration-list": { "value": [ { diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.yaml b/descriptions/api.github.com/api.github.com.2026-03-10.yaml index d1cfaa4ce3..242b672dfa 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions/api.github.com/api.github.com.2026-03-10.yaml @@ -1641,6 +1641,125 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7071,6 +7190,120 @@ paths: enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - property_name: environment + - property_name: team + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -75613,6 +75846,36 @@ components: size limit for the sum of all caches in a repository, in gigabytes. type: integer example: 10 + oidc-custom-property-inclusion: + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included in the OIDC + token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization or enterprise + level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + oidc-custom-property-inclusion-input: + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC token + required: + - custom_property_name code-security-configuration: type: object description: A code security configuration @@ -213118,6 +213381,9 @@ components: actions-cache-storage-limit: value: max_cache_size_gb: 150 + oidc-custom-property-inclusion: + value: + custom_property_name: environment enterprise-code-security-configuration-list: value: - id: 17 diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index def8ec8366..8adfc7b92a 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -2367,6 +2367,178 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -9935,6 +10107,173 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", @@ -105169,6 +105508,44 @@ } } }, + "oidc-custom-property-inclusion": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "oidc-custom-property-inclusion-input": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, "code-security-configuration": { "type": "object", "description": "A code security configuration", @@ -287977,6 +288354,11 @@ "max_cache_size_gb": 150 } }, + "oidc-custom-property-inclusion": { + "value": { + "custom_property_name": "environment" + } + }, "enterprise-code-security-configuration-list": { "value": [ { diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index d970b204cb..f8fa0f9c53 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -1649,6 +1649,125 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7098,6 +7217,120 @@ paths: enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - property_name: environment + - property_name: team + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -76135,6 +76368,36 @@ components: size limit for the sum of all caches in a repository, in gigabytes. type: integer example: 10 + oidc-custom-property-inclusion: + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included in the OIDC + token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization or enterprise + level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + oidc-custom-property-inclusion-input: + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC token + required: + - custom_property_name code-security-configuration: type: object description: A code security configuration @@ -215172,6 +215435,9 @@ components: actions-cache-storage-limit: value: max_cache_size_gb: 150 + oidc-custom-property-inclusion: + value: + custom_property_name: environment enterprise-code-security-configuration-list: value: - id: 17 diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 8ccb360814..20ce44113c 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -17188,6 +17188,345 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -76598,6 +76937,340 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 2372edac66..1e88d46283 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -438,7 +438,7 @@ paths: The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs. schema: type: string - - &45 + - &47 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 results before this cursor. For @@ -447,7 +447,7 @@ paths: required: false schema: type: string - - &46 + - &48 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 results after this cursor. For @@ -456,7 +456,7 @@ paths: required: false schema: type: string - - &53 + - &55 name: direction description: The direction to sort the results by. in: query @@ -677,7 +677,7 @@ paths: required: - vector_string - score - cvss_severities: &55 + cvss_severities: &57 type: object nullable: true properties: @@ -717,7 +717,7 @@ paths: required: - vector_string - score - epss: &56 + epss: &58 type: object nullable: true readOnly: true @@ -855,7 +855,7 @@ paths: - subscriptions_url - type - url - type: &320 + type: &323 type: string description: The type of credit the user is receiving. enum: @@ -988,7 +988,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &123 + schema: &125 title: Validation Error Simple description: Validation Error Simple type: object @@ -1021,7 +1021,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &648 + - &651 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1139,7 +1139,7 @@ paths: GitHub. type: object nullable: true - properties: &72 + properties: &74 id: description: Unique identifier of the GitHub app example: 37 @@ -1272,7 +1272,7 @@ paths: about itself. example: 5 type: integer - required: &73 + required: &75 - id - node_id - owner @@ -1577,7 +1577,7 @@ paths: schema: type: integer default: 30 - - &207 + - &210 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 @@ -1593,7 +1593,7 @@ paths: application/json: schema: type: array - items: &208 + items: &211 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1673,7 +1673,7 @@ paths: - installation_id - repository_id examples: - default: &209 + default: &212 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1732,7 +1732,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &122 + schema: &124 title: Validation Error description: Validation Error type: object @@ -1801,7 +1801,7 @@ paths: description: Response content: application/json: - schema: &210 + schema: &213 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1915,7 +1915,7 @@ paths: - request - response examples: - default: &211 + default: &214 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2116,7 +2116,7 @@ paths: parameters: - *17 - *19 - - &84 + - &86 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2691,7 +2691,7 @@ paths: suspended_at: suspended_by: headers: - Link: &59 + Link: &61 example: ; rel="next", ; rel="last" schema: @@ -2880,11 +2880,11 @@ paths: - selected repositories: type: array - items: &71 + items: &73 title: Repository description: A repository on GitHub. type: object - properties: &285 + properties: &288 id: description: Unique identifier of the repository example: 42 @@ -2904,7 +2904,7 @@ paths: title: License Simple description: License Simple type: object - properties: &80 + properties: &82 key: type: string example: mit @@ -2926,7 +2926,7 @@ paths: html_url: type: string format: uri - required: &81 + required: &83 - key - name - url @@ -3340,7 +3340,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &286 + required: &289 - archive_url - assignees_url - blobs_url @@ -5127,7 +5127,7 @@ paths: responses: '202': *39 '422': *7 - '500': &113 + '500': &115 description: Internal Error content: application/json: @@ -7200,6 +7200,147 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - *40 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &45 + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included + in the OIDC token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization + or enterprise level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: &137 + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC + token + required: + - custom_property_name + examples: + default: &46 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *45 + examples: + default: *46 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *40 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7225,8 +7366,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -7234,7 +7375,7 @@ paths: application/json: schema: type: array - items: &47 + items: &49 type: object description: A code security configuration properties: @@ -7624,7 +7765,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &51 + code_scanning_options: &53 type: object description: Security Configuration feature options for code scanning nullable: true @@ -7641,7 +7782,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &50 + code_scanning_default_setup_options: &52 type: object description: Feature options for code scanning default setup nullable: true @@ -7766,9 +7907,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *47 + schema: *49 examples: - default: &48 + default: &50 value: id: 1325 target_type: enterprise @@ -7826,7 +7967,7 @@ paths: description: Response content: application/json: - schema: &182 + schema: &185 type: array description: A list of default code security configurations items: @@ -7840,9 +7981,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *47 + configuration: *49 examples: - default: &183 + default: &186 value: - default_for_new_repos: public configuration: @@ -7931,7 +8072,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *40 - - &49 + - &51 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -7943,9 +8084,9 @@ paths: description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *48 + default: *50 '304': *37 '403': *29 '404': *6 @@ -7970,7 +8111,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8049,8 +8190,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *50 - code_scanning_options: *51 + code_scanning_default_setup_options: *52 + code_scanning_options: *53 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -8146,13 +8287,13 @@ paths: description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *48 + default: *50 '304': *37 '403': *29 '404': *6 - '409': &52 + '409': &54 description: Conflict content: application/json: @@ -8180,14 +8321,14 @@ paths: url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *40 - - *49 + - *51 responses: - '204': &184 + '204': &187 description: A header with no content is returned. '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -8212,7 +8353,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8239,7 +8380,7 @@ paths: '202': *39 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -8264,7 +8405,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8304,12 +8445,12 @@ paths: - none - private_and_internal - public - configuration: *47 + configuration: *49 examples: default: value: default_for_new_repos: all - configuration: &181 + configuration: &184 value: id: 1325 target_type: organization @@ -8366,7 +8507,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *40 - - *49 + - *51 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -8375,8 +8516,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -8394,7 +8535,7 @@ paths: application/json: schema: type: array - items: &185 + items: &188 type: object description: Repositories associated with a code security configuration and attachment status @@ -8412,11 +8553,11 @@ paths: - failed - updating - removed_by_enterprise - repository: &58 + repository: &60 title: Simple Repository description: A GitHub repository. type: object - properties: &111 + properties: &113 id: type: integer format: int64 @@ -8643,7 +8784,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &112 + required: &114 - archive_url - assignees_url - blobs_url @@ -8695,7 +8836,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &186 + repository: &189 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8789,7 +8930,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &191 + - &194 name: state in: query description: |- @@ -8798,7 +8939,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &192 + - &195 name: severity in: query description: |- @@ -8807,7 +8948,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &193 + - &196 name: ecosystem in: query description: |- @@ -8816,14 +8957,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &194 + - &197 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &195 + - &198 name: epss_percentage in: query description: |- @@ -8835,7 +8976,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 - - &483 + - &486 name: has in: query description: |- @@ -8849,7 +8990,7 @@ paths: type: string enum: - patch - - &196 + - &199 name: assignee in: query description: |- @@ -8858,7 +8999,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &197 + - &200 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8868,7 +9009,7 @@ paths: enum: - development - runtime - - &198 + - &201 name: sort in: query description: |- @@ -8883,9 +9024,9 @@ paths: - updated - epss_percentage default: created - - *53 - - *45 - - *46 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -8894,11 +9035,11 @@ paths: application/json: schema: type: array - items: &199 + items: &202 type: object description: A Dependabot alert. properties: - number: &171 + number: &174 type: integer description: The security alert number. readOnly: true @@ -8916,7 +9057,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &54 + package: &56 type: object description: Details for the vulnerable package. readOnly: true @@ -8960,7 +9101,7 @@ paths: - unknown - direct - transitive - security_advisory: &484 + security_advisory: &487 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -8990,13 +9131,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &57 + items: &59 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *54 + package: *56 severity: type: string description: The severity of the vulnerability. @@ -9062,8 +9203,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *55 - epss: *56 + cvss_severities: *57 + epss: *58 cwes: type: array description: Details for the advisory pertaining to Common @@ -9162,30 +9303,30 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *57 - url: &174 + security_vulnerability: *59 + url: &177 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &175 + html_url: &178 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &172 + created_at: &175 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &173 + updated_at: &176 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &177 + dismissed_at: &180 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9215,21 +9356,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &176 + fixed_at: &179 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - auto_dismissed_at: &485 + auto_dismissed_at: &488 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &486 + dismissal_request: &489 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -9272,7 +9413,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *58 + repository: *60 required: - number - state @@ -9291,7 +9432,7 @@ paths: - repository additionalProperties: false examples: - default: &200 + default: &203 value: - number: 2 state: dismissed @@ -9660,7 +9801,7 @@ paths: application/json: schema: type: array - items: &60 + items: &62 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -9731,7 +9872,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -9804,9 +9945,9 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: &68 + default: &70 value: id: 1 name: Justice League @@ -9835,7 +9976,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *40 - - &61 + - &63 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -9854,7 +9995,7 @@ paths: type: array items: *4 examples: - default: &62 + default: &64 value: - login: octocat id: 1 @@ -9875,7 +10016,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9893,7 +10034,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -9924,7 +10065,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9942,7 +10083,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -9973,7 +10114,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9991,8 +10132,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *40 - - *61 - - &63 + - *63 + - &65 name: username description: The handle for the GitHub user account. in: path @@ -10006,7 +10147,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &64 + exampleKey1: &66 value: login: octocat id: 1 @@ -10042,8 +10183,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *40 - - *61 - *63 + - *65 responses: '201': description: Successfully added team member @@ -10051,7 +10192,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *64 + exampleKey1: *66 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10069,8 +10210,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *40 - - *61 - *63 + - *65 responses: '204': description: Response @@ -10092,7 +10233,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *40 - - *61 + - *63 - *17 - *19 responses: @@ -10102,11 +10243,11 @@ paths: application/json: schema: type: array - items: &65 + items: &67 title: Organization Simple description: A GitHub organization. type: object - properties: &188 + properties: &191 login: type: string example: github @@ -10147,7 +10288,7 @@ paths: type: string example: A great organization nullable: true - required: &189 + required: &192 - login - url - id @@ -10161,7 +10302,7 @@ paths: - avatar_url - description examples: - default: &66 + default: &68 value: login: github id: 1 @@ -10192,7 +10333,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10220,9 +10361,9 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: &108 + default: &110 value: - login: github id: 1 @@ -10253,7 +10394,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10294,8 +10435,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *40 - - *61 - - &67 + - *63 + - &69 name: org description: The organization name. The name is not case sensitive. in: path @@ -10307,9 +10448,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 '404': description: The team is not assigned to the organization x-github: @@ -10328,16 +10469,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *40 - - *61 - - *67 + - *63 + - *69 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10354,8 +10495,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *40 - - *61 - - *67 + - *63 + - *69 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -10379,7 +10520,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *40 - - &69 + - &71 name: team_slug description: The slug of the team name. in: path @@ -10391,11 +10532,11 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *68 + default: *70 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -10413,7 +10554,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *40 - - *69 + - *71 requestBody: required: true content: @@ -10468,11 +10609,11 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *68 + default: *70 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -10493,7 +10634,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *40 - - *69 + - *71 responses: '204': description: Response @@ -10531,7 +10672,7 @@ paths: application/json: schema: type: array - items: &103 + items: &105 title: Event description: Event type: object @@ -10541,7 +10682,7 @@ paths: type: type: string nullable: true - actor: &70 + actor: &72 title: Actor description: Actor type: object @@ -10581,7 +10722,7 @@ paths: - id - name - url - org: *70 + org: *72 payload: oneOf: - title: CreateEvent @@ -10627,7 +10768,7 @@ paths: properties: action: type: string - discussion: &743 + discussion: &746 title: Discussion description: A Discussion in a repository. type: object @@ -10914,7 +11055,7 @@ paths: - id labels: type: array - items: &76 + items: &78 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -10989,12 +11130,12 @@ paths: properties: action: type: string - issue: &77 + issue: &79 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &537 + properties: &540 id: type: integer format: int64 @@ -11107,7 +11248,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &269 + properties: &272 url: type: string format: uri @@ -11177,7 +11318,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &270 + required: &273 - closed_issues - creator - description @@ -11256,7 +11397,7 @@ paths: timeline_url: type: string format: uri - type: &232 + type: &235 title: Issue Type description: The type of issue. type: object @@ -11306,7 +11447,7 @@ paths: - node_id - name - description - repository: *71 + repository: *73 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -11317,9 +11458,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - author_association: &74 + properties: *74 + required: *75 + author_association: &76 title: author_association type: string example: OWNER @@ -11334,7 +11475,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &75 + reactions: &77 title: Reaction Rollup type: object properties: @@ -11370,7 +11511,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &660 + sub_issues_summary: &663 title: Sub-issues Summary type: object properties: @@ -11395,7 +11536,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &78 + properties: &80 id: description: Unique identifier of the issue comment example: 42 @@ -11438,7 +11579,7 @@ paths: issue_url: type: string format: uri - author_association: *74 + author_association: *76 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -11449,15 +11590,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - reactions: *75 + properties: *74 + required: *75 + reactions: *77 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &559 + properties: &562 pinned_at: type: string format: date-time @@ -11469,11 +11610,11 @@ paths: properties: *20 required: *21 nullable: true - required: &560 + required: &563 - pinned_at - pinned_by nullable: true - required: &79 + required: &81 - id - node_id - html_url @@ -11483,7 +11624,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &661 + issue_dependencies_summary: &664 title: Issue Dependencies Summary type: object properties: @@ -11502,7 +11643,7 @@ paths: - total_blocking issue_field_values: type: array - items: &544 + items: &547 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11563,7 +11704,7 @@ paths: - node_id - data_type - value - required: &538 + required: &541 - assignee - closed_at - comments @@ -11588,10 +11729,10 @@ paths: assignees: type: array items: *4 - label: *76 + label: *78 labels: type: array - items: *76 + items: *78 required: - action - issue @@ -11600,14 +11741,14 @@ paths: properties: action: type: string - issue: *77 - comment: &533 + issue: *79 + comment: &536 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 required: - action - issue @@ -11782,8 +11923,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true allow_forking: type: boolean @@ -11872,7 +12013,7 @@ paths: type: string number: type: integer - pull_request: &82 + pull_request: &84 title: Pull Request Minimal type: object properties: @@ -11943,10 +12084,10 @@ paths: assignees: type: array items: *4 - label: *76 + label: *78 labels: type: array - items: *76 + items: *78 required: - action - number @@ -11956,7 +12097,7 @@ paths: properties: action: type: string - pull_request: *82 + pull_request: *84 comment: type: object properties: @@ -12207,7 +12348,7 @@ paths: - pull_request updated_at: type: string - pull_request: *82 + pull_request: *84 required: - action - review @@ -12256,7 +12397,7 @@ paths: updated_at: type: string format: date-time - reactions: *75 + reactions: *77 required: - action - comment @@ -12267,7 +12408,7 @@ paths: type: string release: allOf: - - &593 + - &596 title: Release description: A release. type: object @@ -12338,7 +12479,7 @@ paths: author: *4 assets: type: array - items: &594 + items: &597 title: Release Asset description: Data related to a release. type: object @@ -12413,7 +12554,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *75 + reactions: *77 required: - assets_url - upload_url @@ -12505,7 +12646,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': &114 + '503': &116 description: Service unavailable content: application/json: @@ -12598,7 +12739,7 @@ paths: _links: type: object properties: - timeline: &83 + timeline: &85 title: Link With Type description: Hypermedia Link with Type type: object @@ -12610,17 +12751,17 @@ paths: required: - href - type - user: *83 - security_advisories: *83 - current_user: *83 - current_user_public: *83 - current_user_actor: *83 - current_user_organization: *83 + user: *85 + security_advisories: *85 + current_user: *85 + current_user_public: *85 + current_user_actor: *85 + current_user_organization: *85 current_user_organizations: type: array - items: *83 - repository_discussions: *83 - repository_discussions_category: *83 + items: *85 + repository_discussions: *85 + repository_discussions_category: *85 required: - timeline - user @@ -12682,7 +12823,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *84 + - *86 - *17 - *19 responses: @@ -12692,7 +12833,7 @@ paths: application/json: schema: type: array - items: &85 + items: &87 title: Base Gist description: Base Gist type: object @@ -12791,7 +12932,7 @@ paths: - created_at - updated_at examples: - default: &86 + default: &88 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -12836,7 +12977,7 @@ paths: site_admin: false truncated: false headers: - Link: *59 + Link: *61 '304': *37 '403': *29 x-github: @@ -12912,7 +13053,7 @@ paths: description: Response content: application/json: - schema: &87 + schema: &89 title: Gist Simple description: Gist Simple type: object @@ -12929,7 +13070,7 @@ paths: url: type: string format: uri - user: &667 + user: &670 title: Public User description: Public User type: object @@ -13291,7 +13432,7 @@ paths: truncated: type: boolean examples: - default: &88 + default: &90 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -13395,7 +13536,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *84 + - *86 - *17 - *19 responses: @@ -13405,11 +13546,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '403': *29 @@ -13429,7 +13570,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *84 + - *86 - *17 - *19 responses: @@ -13439,11 +13580,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '401': *25 '304': *37 '403': *29 @@ -13469,7 +13610,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &89 + - &91 name: gist_id description: The unique identifier of the gist. in: path @@ -13481,10 +13622,10 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - default: *88 - '403': &92 + default: *90 + '403': &94 description: Forbidden Gist content: application/json: @@ -13532,7 +13673,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *89 + - *91 requestBody: required: true content: @@ -13592,9 +13733,9 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - updateGist: *88 + updateGist: *90 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -13752,7 +13893,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -13781,7 +13922,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *89 + - *91 - *17 - *19 responses: @@ -13791,7 +13932,7 @@ paths: application/json: schema: type: array - items: &90 + items: &92 title: Gist Comment description: A comment made to a gist. type: object @@ -13826,7 +13967,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *74 + author_association: *76 required: - url - id @@ -13866,7 +14007,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -13891,7 +14032,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *89 + - *91 requestBody: required: true content: @@ -13916,9 +14057,9 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: &91 + default: &93 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -13976,8 +14117,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *89 - - &93 + - *91 + - &95 name: comment_id description: The unique identifier of the comment. in: path @@ -13990,12 +14131,12 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '304': *37 '404': *6 - '403': *92 + '403': *94 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14017,8 +14158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *89 - - *93 + - *91 + - *95 requestBody: required: true content: @@ -14043,9 +14184,9 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '404': *6 x-github: githubCloudOnly: false @@ -14062,8 +14203,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *89 - - *93 + - *91 + - *95 responses: '204': description: Response @@ -14086,7 +14227,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *89 + - *91 - *17 - *19 responses: @@ -14187,7 +14328,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *89 + - *91 - *17 - *19 responses: @@ -14197,7 +14338,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -14243,7 +14384,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 '304': *37 '403': *29 @@ -14262,13 +14403,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *89 + - *91 responses: '201': description: Response content: application/json: - schema: *85 + schema: *87 examples: default: value: @@ -14339,7 +14480,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *89 + - *91 responses: '204': description: Response if gist is starred @@ -14369,7 +14510,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14391,7 +14532,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14420,7 +14561,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *89 + - *91 - name: sha in: path required: true @@ -14431,9 +14572,9 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - default: *88 + default: *90 '422': *15 '404': *6 '403': *29 @@ -14594,7 +14735,7 @@ paths: type: array items: allOf: - - *71 + - *73 repository_selection: type: string example: selected @@ -14717,7 +14858,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '403': *29 '304': *37 '401': *25 @@ -14801,7 +14942,7 @@ paths: - closed - all default: open - - &235 + - &238 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -14819,8 +14960,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - name: collab in: query required: false @@ -14850,9 +14991,9 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: &236 + default: &239 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15097,7 +15238,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '404': *6 @@ -15136,8 +15277,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 examples: default: value: @@ -15422,7 +15563,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &94 + X-CommonMarker-Version: &96 example: 0.17.4 schema: type: string @@ -15477,7 +15618,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *94 + X-CommonMarker-Version: *96 content: text/html: schema: @@ -15506,7 +15647,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &97 + - &99 name: account_id description: account_id parameter in: path @@ -15518,7 +15659,7 @@ paths: description: Response content: application/json: - schema: &96 + schema: &98 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -15548,7 +15689,7 @@ paths: nullable: true id: type: integer - plan: &95 + plan: &97 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -15637,7 +15778,7 @@ paths: nullable: true updated_at: type: string - plan: *95 + plan: *97 required: - url - id @@ -15645,7 +15786,7 @@ paths: - login - marketplace_purchase examples: - default: &98 + default: &100 value: url: https://api.github.com/orgs/github type: Organization @@ -15730,9 +15871,9 @@ paths: application/json: schema: type: array - items: *95 + items: *97 examples: - default: &99 + default: &101 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -15750,7 +15891,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '404': *6 '401': *25 x-github: @@ -15772,14 +15913,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &100 + - &102 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &101 + - &103 name: sort description: The property to sort the results by. in: query @@ -15809,9 +15950,9 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: - default: &102 + default: &104 value: - url: https://api.github.com/orgs/github type: Organization @@ -15862,7 +16003,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '404': *6 '422': *15 '401': *25 @@ -15885,15 +16026,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *97 + - *99 responses: '200': description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *98 + default: *100 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -15925,11 +16066,11 @@ paths: application/json: schema: type: array - items: *95 + items: *97 examples: - default: *99 + default: *101 headers: - Link: *59 + Link: *61 '401': *25 x-github: githubCloudOnly: false @@ -15950,8 +16091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *100 - - *101 + - *102 + - *103 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -15971,11 +16112,11 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: - default: *102 + default: *104 headers: - Link: *59 + Link: *61 '401': *25 x-github: githubCloudOnly: false @@ -16237,14 +16378,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &332 + - &335 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &333 + - &336 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -16261,7 +16402,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -16306,7 +16447,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &336 + '301': &339 description: Moved permanently content: application/json: @@ -16328,7 +16469,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &569 + - &572 name: all description: If `true`, show notifications marked as read. in: query @@ -16336,7 +16477,7 @@ paths: schema: type: boolean default: false - - &570 + - &573 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16345,8 +16486,8 @@ paths: schema: type: boolean default: false - - *84 - - &571 + - *86 + - &574 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: @@ -16371,18 +16512,18 @@ paths: application/json: schema: type: array - items: &104 + items: &106 title: Thread description: Thread type: object properties: id: type: string - repository: &153 + repository: &156 title: Minimal Repository description: Minimal Repository type: object - properties: &202 + properties: &205 id: type: integer format: int64 @@ -16670,7 +16811,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &287 + security_and_analysis: &290 nullable: true type: object properties: @@ -16783,7 +16924,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &203 + required: &206 - archive_url - assignees_url - blobs_url @@ -16871,7 +17012,7 @@ paths: - url - subscription_url examples: - default: &572 + default: &575 value: - id: '1' repository: @@ -16953,7 +17094,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -17037,7 +17178,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &105 + - &107 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -17051,7 +17192,7 @@ paths: description: Response content: application/json: - schema: *104 + schema: *106 examples: default: value: @@ -17153,7 +17294,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *105 + - *107 responses: '205': description: Reset Content @@ -17175,7 +17316,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *105 + - *107 responses: '204': description: No content @@ -17198,13 +17339,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *105 + - *107 responses: '200': description: Response content: application/json: - schema: &106 + schema: &108 title: Thread Subscription description: Thread Subscription type: object @@ -17241,7 +17382,7 @@ paths: - url - subscribed examples: - default: &107 + default: &109 value: subscribed: true ignored: false @@ -17272,7 +17413,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *105 + - *107 requestBody: required: false content: @@ -17293,9 +17434,9 @@ paths: description: Response content: application/json: - schema: *106 + schema: *108 examples: - default: *107 + default: *109 '304': *37 '403': *29 '401': *25 @@ -17318,7 +17459,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *105 + - *107 responses: '204': description: Response @@ -17413,9 +17554,9 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: Link: example: ; rel="next" @@ -17442,13 +17583,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &109 + schema: &111 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -17481,12 +17622,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *109 + schema: *111 examples: selected_actions: *42 responses: @@ -17515,13 +17656,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &110 + schema: &112 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -17554,12 +17695,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *110 + schema: *112 examples: selected_actions: *44 responses: @@ -17588,7 +17729,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-organization parameters: - - *67 + - *69 - name: page in: query description: The page number of results to fetch. @@ -17632,8 +17773,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *111 - required: *112 + properties: *113 + required: *114 nullable: true additionalProperties: false examples: @@ -17739,7 +17880,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -17805,7 +17946,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *67 + - *69 requestBody: required: true content: @@ -17854,7 +17995,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *67 + - *69 - name: page description: The page number of the results to fetch. in: query @@ -18005,7 +18146,7 @@ paths: total_count: 3 '404': *6 '403': *29 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18026,8 +18167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *67 - - &115 + - *69 + - &117 name: budget_id description: The ID corresponding to the budget. in: path @@ -18123,8 +18264,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18144,8 +18285,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *67 - - *115 + - *69 + - *117 requestBody: required: true content: @@ -18336,8 +18477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *67 - - *115 + - *69 + - *117 responses: '200': description: Response when deleting a budget @@ -18363,8 +18504,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18384,8 +18525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *67 - - &116 + - *69 + - &118 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -18394,7 +18535,7 @@ paths: required: false schema: type: integer - - &118 + - &120 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current @@ -18403,7 +18544,7 @@ paths: required: false schema: type: integer - - &117 + - &119 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -18418,14 +18559,14 @@ paths: required: false schema: type: string - - &718 + - &721 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &119 + - &121 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18541,8 +18682,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18562,9 +18703,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *67 - - *116 - - &719 + - *69 + - *118 + - &722 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 @@ -18573,7 +18714,7 @@ paths: required: false schema: type: integer - - *117 + - *119 responses: '200': description: Billing usage report response for an organization @@ -18648,8 +18789,8 @@ paths: repositoryName: github/example '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18672,19 +18813,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *67 - - *116 + - *69 - *118 - - *117 - - &720 + - *120 + - *119 + - &723 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *119 - - &721 + - *121 + - &724 name: sku description: The SKU to query for usage. in: query @@ -18794,8 +18935,8 @@ paths: netAmount: 8.0 '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18821,13 +18962,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &120 + schema: &122 title: Organization Full description: Organization Full type: object @@ -19146,7 +19287,7 @@ paths: - updated_at - archived_at examples: - default-response: &121 + default-response: &123 value: login: github id: 1 @@ -19246,7 +19387,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *67 + - *69 requestBody: required: false content: @@ -19462,18 +19603,18 @@ paths: description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '422': description: Validation failed content: application/json: schema: oneOf: - - *122 - - *123 - '409': *52 + - *124 + - *125 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19496,7 +19637,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *67 + - *69 responses: '202': *39 '404': *6 @@ -19521,7 +19662,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -19547,7 +19688,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19568,7 +19709,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -19586,7 +19727,7 @@ paths: type: integer repository_cache_usages: type: array - items: &343 + items: &346 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19621,7 +19762,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19641,7 +19782,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -19659,7 +19800,7 @@ paths: type: integer runners: type: array - items: &124 + items: &126 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -19713,7 +19854,7 @@ paths: - display_name - source nullable: true - machine_size_details: &132 + machine_size_details: &134 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -19809,7 +19950,7 @@ paths: - public_ip_enabled - platform examples: - default: &152 + default: &155 value: total_count: 2 runners: @@ -19851,7 +19992,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19869,7 +20010,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -19946,9 +20087,9 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: &133 + default: &135 value: id: 5 name: My hosted ubuntu runner @@ -19989,7 +20130,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20005,7 +20146,7 @@ paths: type: integer images: type: array - items: &125 + items: &127 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -20056,7 +20197,7 @@ paths: - latest_version - state examples: - default: &127 + default: &129 value: total_count: 2 image_versions: @@ -20087,8 +20228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - - *67 - - &126 + - *69 + - &128 name: image_definition_id description: Image definition ID of custom image in: path @@ -20100,7 +20241,7 @@ paths: description: Response content: application/json: - schema: *125 + schema: *127 examples: default: value: @@ -20130,8 +20271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *67 - - *126 + - *69 + - *128 responses: '204': description: Response @@ -20154,8 +20295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - - *126 - - *67 + - *128 + - *69 responses: '200': description: Response @@ -20171,7 +20312,7 @@ paths: type: integer image_versions: type: array - items: &128 + items: &130 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20204,7 +20345,7 @@ paths: - created_on - state_details examples: - default: *127 + default: *129 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20224,9 +20365,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - - *67 - - *126 - - &129 + - *69 + - *128 + - &131 name: version description: Version of a custom image in: path @@ -20239,7 +20380,7 @@ paths: description: Response content: application/json: - schema: *128 + schema: *130 examples: default: value: @@ -20265,9 +20406,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - - *67 - - *126 - - *129 + - *69 + - *128 + - *131 responses: '204': description: Response @@ -20288,7 +20429,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20304,7 +20445,7 @@ paths: type: integer images: type: array - items: &130 + items: &132 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20340,7 +20481,7 @@ paths: - display_name - source examples: - default: &131 + default: &133 value: id: ubuntu-20.04 platform: linux-x64 @@ -20364,7 +20505,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20380,9 +20521,9 @@ paths: type: integer images: type: array - items: *130 + items: *132 examples: - default: *131 + default: *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20399,7 +20540,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20452,7 +20593,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20468,7 +20609,7 @@ paths: type: integer machine_specs: type: array - items: *132 + items: *134 examples: default: value: @@ -20493,7 +20634,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20537,8 +20678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *67 - - &134 + - *69 + - &136 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -20550,11 +20691,11 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20572,8 +20713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *67 - - *134 + - *69 + - *136 requestBody: required: true content: @@ -20625,9 +20766,9 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -20643,21 +20784,126 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *67 - - *134 + - *69 + - *136 responses: '202': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - *69 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *45 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *69 + requestBody: + required: true + content: + application/json: + schema: *137 + examples: + default: *46 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *45 + examples: + default: *46 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *69 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -20672,13 +20918,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *67 + - *69 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &135 + schema: &138 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -20692,7 +20938,7 @@ paths: required: - include_claim_keys examples: - default: &136 + default: &139 value: include_claim_keys: - repo @@ -20714,20 +20960,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *135 + schema: *138 examples: - default: *136 + default: *139 responses: '201': description: Empty response content: application/json: - schema: &162 + schema: &165 title: Empty Object description: An object without any properties. type: object @@ -20757,7 +21003,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20766,7 +21012,7 @@ paths: schema: type: object properties: - enabled_repositories: &137 + enabled_repositories: &140 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -20779,7 +21025,7 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: &138 + allowed_actions: &141 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -20787,12 +21033,12 @@ paths: - all - local_only - selected - selected_actions_url: &349 + selected_actions_url: &352 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` is set to `selected`. - sha_pinning_required: &139 + sha_pinning_required: &142 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -20823,7 +21069,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -20834,9 +21080,9 @@ paths: schema: type: object properties: - enabled_repositories: *137 - allowed_actions: *138 - sha_pinning_required: *139 + enabled_repositories: *140 + allowed_actions: *141 + sha_pinning_required: *142 required: - enabled_repositories examples: @@ -20864,13 +21110,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &353 + schema: &356 type: object properties: days: @@ -20907,12 +21153,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &354 + schema: &357 type: object properties: days: @@ -20929,7 +21175,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -20949,13 +21195,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &140 + schema: &143 type: object properties: approval_policy: @@ -20969,7 +21215,7 @@ paths: required: - approval_policy examples: - default: &355 + default: &358 value: approval_policy: first_time_contributors '404': *6 @@ -20990,7 +21236,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21000,7 +21246,7 @@ paths: required: true content: application/json: - schema: *140 + schema: *143 examples: default: summary: Set approval policy to first time contributors @@ -21022,13 +21268,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &356 + schema: &359 type: object required: - run_workflows_from_fork_pull_requests @@ -21054,7 +21300,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &141 + default: &144 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -21077,12 +21323,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &357 + schema: &360 type: object required: - run_workflows_from_fork_pull_requests @@ -21105,7 +21351,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *141 + default: *144 responses: '204': description: Empty response for successful settings update @@ -21135,7 +21381,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -21153,9 +21399,9 @@ paths: type: number repositories: type: array - items: *71 + items: *73 examples: - default: &145 + default: &148 value: total_count: 1 repositories: @@ -21295,7 +21541,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21339,8 +21585,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *67 - - &142 + - *69 + - &145 name: repository_id description: The unique identifier of the repository. in: path @@ -21368,8 +21614,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -21392,13 +21638,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &143 + schema: &146 type: object properties: github_owned_allowed: @@ -21420,7 +21666,7 @@ paths: items: type: string examples: - default: &144 + default: &147 value: github_owned_allowed: true verified_allowed: false @@ -21445,7 +21691,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21453,9 +21699,9 @@ paths: required: false content: application/json: - schema: *143 + schema: *146 examples: - selected_actions: *144 + selected_actions: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21475,7 +21721,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -21523,7 +21769,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21550,7 +21796,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21570,7 +21816,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#list-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -21585,9 +21831,9 @@ paths: type: integer repositories: type: array - items: *71 + items: *73 examples: - default: *145 + default: *148 '403': *29 '404': *6 x-github: @@ -21607,7 +21853,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21655,14 +21901,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21682,14 +21928,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21711,23 +21957,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &358 + schema: &361 type: object properties: - default_workflow_permissions: &146 + default_workflow_permissions: &149 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &147 + can_approve_pull_request_reviews: &150 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -21735,7 +21981,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &148 + default: &151 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -21760,7 +22006,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Success response @@ -21768,13 +22014,13 @@ paths: required: false content: application/json: - schema: &359 + schema: &362 type: object properties: - default_workflow_permissions: *146 - can_approve_pull_request_reviews: *147 + default_workflow_permissions: *149 + can_approve_pull_request_reviews: *150 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21794,7 +22040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *67 + - *69 - *17 - *19 - name: visible_to_repository @@ -21819,7 +22065,7 @@ paths: type: number runner_groups: type: array - items: &149 + items: &152 type: object properties: id: @@ -21935,7 +22181,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -22007,9 +22253,9 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: &151 + default: &154 value: id: 2 name: octo-runner-group @@ -22044,8 +22290,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *67 - - &150 + - *69 + - &153 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -22057,7 +22303,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: default: value: @@ -22093,8 +22339,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22148,9 +22394,9 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *151 + default: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22169,8 +22415,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *67 - - *150 + - *69 + - *153 responses: '204': description: Response @@ -22193,8 +22439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *17 - *19 responses: @@ -22212,11 +22458,11 @@ paths: type: number runners: type: array - items: *124 + items: *126 examples: - default: *152 + default: *155 headers: - Link: *59 + Link: *61 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22236,8 +22482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *19 - *17 responses: @@ -22255,9 +22501,9 @@ paths: type: number repositories: type: array - items: *153 + items: *156 examples: - default: &670 + default: &673 value: total_count: 1 repositories: @@ -22509,8 +22755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22554,9 +22800,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 - - *142 + - *69 + - *153 + - *145 responses: '204': description: Response @@ -22578,9 +22824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 - - *142 + - *69 + - *153 + - *145 responses: '204': description: Response @@ -22603,8 +22849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *17 - *19 responses: @@ -22622,7 +22868,7 @@ paths: type: number runners: type: array - items: &155 + items: &158 title: Self hosted runners description: A self hosted runner type: object @@ -22651,7 +22897,7 @@ paths: type: boolean labels: type: array - items: &158 + items: &161 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -22681,7 +22927,7 @@ paths: - busy - labels examples: - default: &156 + default: &159 value: total_count: 2 runners: @@ -22721,7 +22967,7 @@ paths: name: no-gpu type: custom headers: - Link: *59 + Link: *61 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22740,8 +22986,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22785,9 +23031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *67 - - *150 - - &154 + - *69 + - *153 + - &157 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -22815,9 +23061,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *67 - - *150 - - *154 + - *69 + - *153 + - *157 responses: '204': description: Response @@ -22847,7 +23093,7 @@ paths: in: query schema: type: string - - *67 + - *69 - *17 - *19 responses: @@ -22865,11 +23111,11 @@ paths: type: integer runners: type: array - items: *155 + items: *158 examples: - default: *156 + default: *159 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22891,7 +23137,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -22899,7 +23145,7 @@ paths: application/json: schema: type: array - items: &360 + items: &363 title: Runner Application description: Runner Application type: object @@ -22924,7 +23170,7 @@ paths: - download_url - filename examples: - default: &361 + default: &364 value: - os: osx architecture: x64 @@ -22967,7 +23213,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -23010,7 +23256,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &362 + '201': &365 description: Response content: application/json: @@ -23020,7 +23266,7 @@ paths: - runner - encoded_jit_config properties: - runner: *155 + runner: *158 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -23049,7 +23295,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23077,13 +23323,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *67 + - *69 responses: '201': description: Response content: application/json: - schema: &157 + schema: &160 title: Authentication Token description: Authentication Token type: object @@ -23105,7 +23351,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *71 + items: *73 single_file: type: string example: config.yaml @@ -23121,7 +23367,7 @@ paths: - token - expires_at examples: - default: &363 + default: &366 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -23152,15 +23398,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *67 + - *69 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: &364 + default: &367 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -23185,16 +23431,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: '200': description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: &365 + default: &368 value: id: 23 name: MBP @@ -23235,8 +23481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: '204': description: Response @@ -23262,10 +23508,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: - '200': &159 + '200': &162 description: Response content: application/json: @@ -23279,7 +23525,7 @@ paths: type: integer labels: type: array - items: *158 + items: *161 examples: default: value: @@ -23318,8 +23564,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-an-organization parameters: - - *67 - - *154 + - *69 + - *157 requestBody: required: true content: @@ -23343,7 +23589,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23367,8 +23613,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-an-organization parameters: - - *67 - - *154 + - *69 + - *157 requestBody: required: true content: @@ -23393,7 +23639,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23417,10 +23663,10 @@ 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-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: - '200': &366 + '200': &369 description: Response content: application/json: @@ -23434,7 +23680,7 @@ paths: type: integer labels: type: array - items: *158 + items: *161 examples: default: value: @@ -23475,9 +23721,9 @@ 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-an-organization parameters: - - *67 - - *154 - - &367 + - *69 + - *157 + - &370 name: name description: The name of a self-hosted runner's custom label. in: path @@ -23485,7 +23731,7 @@ paths: schema: type: string responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23510,7 +23756,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -23528,7 +23774,7 @@ paths: type: integer secrets: type: array - items: &160 + items: &163 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -23578,7 +23824,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23601,13 +23847,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &379 + schema: &382 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -23636,7 +23882,7 @@ paths: - key_id - key examples: - default: &380 + default: &383 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23661,8 +23907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *67 - - &161 + - *69 + - &164 name: secret_name description: The name of the secret. in: path @@ -23674,7 +23920,7 @@ paths: description: Response content: application/json: - schema: *160 + schema: *163 examples: default: value: @@ -23704,8 +23950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -23762,7 +24008,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -23788,8 +24034,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -23815,8 +24061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -23834,9 +24080,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: &165 + default: &168 value: total_count: 1 repositories: @@ -23928,8 +24174,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -23981,8 +24227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -24015,8 +24261,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -24048,8 +24294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *67 - - &348 + - *69 + - &351 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -24073,7 +24319,7 @@ paths: type: integer variables: type: array - items: &163 + items: &166 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24137,7 +24383,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24158,7 +24404,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *67 + - *69 requestBody: required: true content: @@ -24206,7 +24452,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -24231,8 +24477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *67 - - &164 + - *69 + - &167 name: name description: The name of the variable. in: path @@ -24244,7 +24490,7 @@ paths: description: Response content: application/json: - schema: *163 + schema: *166 examples: default: value: @@ -24274,8 +24520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 requestBody: required: true content: @@ -24337,8 +24583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 responses: '204': description: Response @@ -24364,8 +24610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - *19 - *17 responses: @@ -24383,9 +24629,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 '409': description: Response when the visibility of the variable is not set to `selected` @@ -24411,8 +24657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 requestBody: required: true content: @@ -24461,8 +24707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - name: repository_id in: path required: true @@ -24496,8 +24742,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - name: repository_id in: path required: true @@ -24538,7 +24784,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *67 + - *69 requestBody: required: true content: @@ -24654,7 +24900,7 @@ paths: type: integer deployment_records: type: array - items: &166 + items: &169 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -24698,7 +24944,7 @@ paths: with the deployment record. nullable: true examples: - default: &167 + default: &170 value: total_count: 1 deployment_records: @@ -24733,7 +24979,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *67 + - *69 - name: cluster in: path description: The cluster name. @@ -24869,9 +25115,9 @@ paths: type: integer deployment_records: type: array - items: *166 + items: *169 examples: - default: *167 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24891,7 +25137,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *67 + - *69 requestBody: required: true content: @@ -25043,7 +25289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *67 + - *69 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -25068,9 +25314,9 @@ paths: type: integer deployment_records: type: array - items: *166 + items: *169 examples: - default: *167 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25090,7 +25336,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *67 + - *69 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25173,9 +25419,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 requestBody: required: true content: @@ -25199,12 +25445,12 @@ paths: required: - subject_digests examples: - default: &700 + default: &703 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &701 + withPredicateType: &704 value: subject_digests: - sha256:abc123 @@ -25262,7 +25508,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &702 + default: &705 value: attestations_subject_digests: - sha256:abc: @@ -25371,7 +25617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *67 + - *69 requestBody: required: true content: @@ -25436,7 +25682,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *67 + - *69 - name: subject_digest description: Subject Digest in: path @@ -25469,9 +25715,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -25519,7 +25765,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *67 + - *69 - name: attestation_id description: Attestation ID in: path @@ -25555,9 +25801,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25612,7 +25858,7 @@ paths: initiator: type: string examples: - default: &393 + default: &396 value: attestations: - bundle: @@ -25719,7 +25965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -25731,7 +25977,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25750,8 +25996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: If the user is blocked @@ -25776,8 +26022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -25797,8 +26043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -25823,15 +26069,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *67 + - *69 - *19 - *17 - - *53 + - *55 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &168 + schema: &171 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -25857,7 +26103,7 @@ paths: application/json: schema: type: array - items: &169 + items: &172 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -25888,7 +26134,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &190 + items: &193 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -25963,7 +26209,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &247 + properties: &250 id: description: Unique identifier of the team type: integer @@ -26035,7 +26281,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &248 + required: &251 - id - node_id - url @@ -26078,7 +26324,7 @@ paths: type: string format: date-time nullable: true - state: *168 + state: *171 contact_link: description: The contact link of the campaign. type: string @@ -26173,9 +26419,9 @@ paths: closed_at: state: open headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26199,7 +26445,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -26298,9 +26544,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: &170 + default: &173 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -26349,7 +26595,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26371,7 +26617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26383,16 +26629,16 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: *170 + default: *173 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26413,7 +26659,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26462,7 +26708,7 @@ paths: type: string format: uri nullable: true - state: *168 + state: *171 examples: default: value: @@ -26472,9 +26718,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: *170 + default: *173 '400': description: Bad Request content: @@ -26486,7 +26732,7 @@ paths: content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26507,7 +26753,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26518,7 +26764,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26540,18 +26786,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *67 - - &418 + - *69 + - &421 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`, but not both. in: query required: false - schema: &178 + schema: &181 type: string description: The name of the tool used to generate the code scanning analysis. - - &419 + - &422 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 @@ -26559,22 +26805,22 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &179 + schema: &182 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *45 - - *46 + - *47 + - *48 - *19 - *17 - - *53 + - *55 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &421 + schema: &424 type: string description: State of a code scanning alert. enum: @@ -26597,7 +26843,7 @@ paths: be returned. in: query required: false - schema: &422 + schema: &425 type: string description: Severity of a code scanning alert. enum: @@ -26626,18 +26872,18 @@ paths: items: type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: &423 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: &426 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &180 + state: &183 type: string description: State of a code scanning alert. nullable: true @@ -26645,7 +26891,7 @@ paths: - open - dismissed - fixed - fixed_at: *176 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -26653,8 +26899,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: &424 + dismissed_at: *180 + dismissed_reason: &427 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -26663,13 +26909,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &425 + dismissed_comment: &428 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &426 + rule: &429 type: object properties: id: @@ -26722,42 +26968,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &427 + tool: &430 type: object properties: - name: *178 + name: *181 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *179 - most_recent_instance: &428 + guid: *182 + most_recent_instance: &431 type: object properties: - ref: &420 + ref: &423 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &438 + analysis_key: &441 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: &439 + environment: &442 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: &440 + category: &443 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *180 + state: *183 commit_sha: type: string message: @@ -26765,7 +27011,7 @@ paths: properties: text: type: string - location: &441 + location: &444 type: object description: Describe a region within a file for the alert. properties: @@ -26786,7 +27032,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: &442 + items: &445 type: string description: A classification of the file. For example to identify it as generated. @@ -26796,7 +27042,7 @@ paths: - generated - test - library - repository: *58 + repository: *60 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -27051,9 +27297,9 @@ paths: trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27075,7 +27321,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *67 + - *69 - name: target_type in: query description: The target type of the code security configuration @@ -27094,8 +27340,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -27103,7 +27349,7 @@ paths: application/json: schema: type: array - items: *47 + items: *49 examples: default: value: @@ -27186,7 +27432,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *67 + - *69 requestBody: required: true content: @@ -27273,7 +27519,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *51 + code_scanning_options: *53 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -27282,7 +27528,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *50 + code_scanning_default_setup_options: *52 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -27421,9 +27667,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *47 + schema: *49 examples: - default: *181 + default: *184 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27445,15 +27691,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *182 + schema: *185 examples: - default: *183 + default: *186 '304': *37 '403': *29 '404': *6 @@ -27479,7 +27725,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *67 + - *69 requestBody: required: true content: @@ -27505,11 +27751,11 @@ paths: - 32 - 91 responses: - '204': *184 + '204': *187 '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27531,16 +27777,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 responses: '200': description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *181 + default: *184 '304': *37 '403': *29 '404': *6 @@ -27564,8 +27810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27652,8 +27898,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *50 - code_scanning_options: *51 + code_scanning_default_setup_options: *52 + code_scanning_options: *53 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -27778,7 +28024,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *47 + schema: *49 examples: default: value: @@ -27837,14 +28083,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 responses: - '204': *184 + '204': *187 '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27868,8 +28114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27932,8 +28178,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27973,12 +28219,12 @@ paths: - none - private_and_internal - public - configuration: *47 + configuration: *49 examples: default: value: default_for_new_repos: all - configuration: *181 + configuration: *184 '403': *29 '404': *6 x-github: @@ -28002,8 +28248,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -28012,8 +28258,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -28031,13 +28277,13 @@ paths: application/json: schema: type: array - items: *185 + items: *188 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *186 + repository: *189 '403': *29 '404': *6 x-github: @@ -28061,7 +28307,7 @@ paths: parameters: - *17 - *19 - - *67 + - *69 responses: '200': description: Response @@ -28077,7 +28323,7 @@ paths: type: integer codespaces: type: array - items: &237 + items: &240 type: object title: Codespace description: A codespace. @@ -28102,12 +28348,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *153 + repository: *156 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &454 + properties: &457 name: type: string description: The name of the machine. @@ -28149,7 +28395,7 @@ paths: - ready - in_progress nullable: true - required: &455 + required: &458 - name - display_name - operating_system @@ -28354,7 +28600,7 @@ paths: - pulls_url - recent_folders examples: - default: &238 + default: &241 value: total_count: 3 codespaces: @@ -28764,7 +29010,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -28786,7 +29032,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *67 + - *69 deprecated: true requestBody: required: true @@ -28830,7 +29076,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28853,7 +29099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *67 + - *69 deprecated: true requestBody: required: true @@ -28885,7 +29131,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28908,7 +29154,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *67 + - *69 requestBody: required: true content: @@ -28939,7 +29185,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28960,7 +29206,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -28978,7 +29224,7 @@ paths: type: integer secrets: type: array - items: &187 + items: &190 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -29017,7 +29263,7 @@ paths: - updated_at - visibility examples: - default: &456 + default: &459 value: total_count: 2 secrets: @@ -29030,7 +29276,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29049,13 +29295,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &457 + schema: &460 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -29084,7 +29330,7 @@ paths: - key_id - key examples: - default: &458 + default: &461 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29107,23 +29353,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: Response content: application/json: - schema: *187 + schema: *190 examples: - default: &460 + default: &463 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29143,8 +29389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -29199,7 +29445,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -29225,8 +29471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -29251,8 +29497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -29270,9 +29516,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 '404': *6 x-github: githubCloudOnly: false @@ -29294,8 +29540,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -29345,8 +29591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -29379,8 +29625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -29419,7 +29665,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: OK @@ -29528,7 +29774,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29560,7 +29806,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *67 + - *69 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -29583,7 +29829,7 @@ paths: currently being billed. seats: type: array - items: &240 + items: &243 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -29600,15 +29846,15 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *188 - required: *189 + properties: *191 + required: *192 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *190 - - *60 + - *193 + - *62 nullable: true pending_cancellation_date: type: string @@ -29732,8 +29978,8 @@ paths: type: User site_admin: false headers: - Link: *59 - '500': *113 + Link: *61 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29766,7 +30012,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29808,7 +30054,7 @@ paths: default: value: seats_created: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29844,7 +30090,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29886,7 +30132,7 @@ paths: default: value: seats_cancelled: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29924,7 +30170,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29965,7 +30211,7 @@ paths: default: value: seats_created: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30001,7 +30247,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -30043,7 +30289,7 @@ paths: default: value: seats_cancelled: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30083,7 +30329,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-content-exclusion-management#get-copilot-content-exclusion-rules-for-an-organization parameters: - - *67 + - *69 responses: '200': description: OK @@ -30103,7 +30349,7 @@ paths: value: octo-repo: - "/src/some-dir/kernel.rs" - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30136,7 +30382,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-content-exclusion-management#set-copilot-content-exclusion-rules-for-an-organization parameters: - - *67 + - *69 requestBody: description: The content exclusion rules to set required: true @@ -30188,7 +30434,7 @@ paths: default: value: message: Content exclusion rules updated successfully. - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30227,7 +30473,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *67 + - *69 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -30259,7 +30505,7 @@ paths: application/json: schema: type: array - items: &325 + items: &328 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -30566,7 +30812,7 @@ paths: - date additionalProperties: true examples: - default: &326 + default: &329 value: - date: '2024-06-24' total_active_users: 24 @@ -30665,10 +30911,10 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *113 + '500': *115 '403': *29 '404': *6 - '422': &327 + '422': &330 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -30695,12 +30941,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *67 - - *191 - - *192 - - *193 + - *69 - *194 - *195 + - *196 + - *197 + - *198 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -30730,7 +30976,7 @@ paths: enum: - patch - deployment - - *196 + - *199 - name: runtime_risk in: query description: |- @@ -30739,11 +30985,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *197 - - *198 - - *53 - - *45 - - *46 + - *200 + - *201 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -30752,9 +30998,9 @@ paths: application/json: schema: type: array - items: *199 + items: *202 examples: - default: *200 + default: *203 '304': *37 '400': *14 '403': *29 @@ -30780,7 +31026,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -30798,7 +31044,7 @@ paths: type: integer secrets: type: array - items: &201 + items: &204 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -30848,7 +31094,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30869,13 +31115,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &489 + schema: &492 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -30892,7 +31138,7 @@ paths: - key_id - key examples: - default: &490 + default: &493 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -30915,14 +31161,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -30950,8 +31196,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -31008,7 +31254,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -31032,8 +31278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -31057,8 +31303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -31076,9 +31322,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31099,8 +31345,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -31150,8 +31396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -31182,8 +31428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -31213,7 +31459,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -31221,7 +31467,7 @@ paths: application/json: schema: type: array - items: &250 + items: &253 title: Package description: A software package type: object @@ -31271,8 +31517,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *202 - required: *203 + properties: *205 + required: *206 nullable: true created_at: type: string @@ -31291,7 +31537,7 @@ paths: - created_at - updated_at examples: - default: &251 + default: &254 value: - id: 197 name: hello_docker @@ -31369,7 +31615,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31379,7 +31625,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: 200-response: value: @@ -31451,7 +31697,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31461,7 +31707,7 @@ paths: application/json: schema: type: array - items: &226 + items: &229 title: Organization Invitation description: Organization Invitation type: object @@ -31508,7 +31754,7 @@ paths: - invitation_teams_url - node_id examples: - default: &227 + default: &230 value: - id: 1 login: monalisa @@ -31541,7 +31787,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -31565,7 +31811,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31575,7 +31821,7 @@ paths: application/json: schema: type: array - items: &204 + items: &207 title: Org Hook description: Org Hook type: object @@ -31663,7 +31909,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -31686,7 +31932,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *67 + - *69 requestBody: required: true content: @@ -31746,9 +31992,9 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: - default: &205 + default: &208 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -31795,8 +32041,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *67 - - &206 + - *69 + - &209 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. @@ -31809,9 +32055,9 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: - default: *205 + default: *208 '404': *6 x-github: githubCloudOnly: false @@ -31838,8 +32084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 requestBody: required: false content: @@ -31884,7 +32130,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: default: value: @@ -31925,8 +32171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 responses: '204': description: Response @@ -31953,8 +32199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *67 - - *206 + - *69 + - *209 responses: '200': description: Response @@ -31984,8 +32230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *67 - - *206 + - *69 + - *209 requestBody: required: false content: @@ -32035,10 +32281,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *17 - - *207 + - *210 responses: '200': description: Response @@ -32046,9 +32292,9 @@ paths: application/json: schema: type: array - items: *208 + items: *211 examples: - default: *209 + default: *212 '400': *14 '422': *15 x-github: @@ -32073,17 +32319,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *16 responses: '200': description: Response content: application/json: - schema: *210 + schema: *213 examples: - default: *211 + default: *214 '400': *14 '422': *15 x-github: @@ -32108,8 +32354,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *16 responses: '202': *39 @@ -32138,8 +32384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 responses: '204': description: Response @@ -32161,8 +32407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *67 - - &216 + - *69 + - &219 name: actor_type in: path description: The type of the actor @@ -32175,14 +32421,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &217 + - &220 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &212 + - &215 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`.' @@ -32190,7 +32436,7 @@ paths: required: true schema: type: string - - &213 + - &216 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) @@ -32201,7 +32447,7 @@ paths: type: string - *19 - *17 - - *53 + - *55 - name: sort description: The property to sort the results by. in: query @@ -32283,13 +32529,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *67 - - *212 - - *213 + - *69 + - *215 + - *216 - *19 - *17 - - *53 - - &222 + - *55 + - &225 name: sort description: The property to sort the results by. in: query @@ -32366,15 +32612,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *67 - - *212 - - *213 + - *69 + - *215 + - *216 responses: '200': description: Response content: application/json: - schema: &214 + schema: &217 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -32390,7 +32636,7 @@ paths: type: integer format: int64 examples: - default: &215 + default: &218 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -32410,24 +32656,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *67 - - &218 + - *69 + - &221 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *212 - - *213 + - *215 + - *216 responses: '200': description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: *215 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32445,19 +32691,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *67 - - *212 - - *213 + - *69 + - *215 - *216 - - *217 + - *219 + - *220 responses: '200': description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: *215 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32474,10 +32720,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *67 - - *212 - - *213 - - &219 + - *69 + - *215 + - *216 + - &222 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -32490,7 +32736,7 @@ paths: description: Response content: application/json: - schema: &220 + schema: &223 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -32506,7 +32752,7 @@ paths: type: integer format: int64 examples: - default: &221 + default: &224 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -32542,19 +32788,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *67 - - *218 - - *212 - - *213 - - *219 + - *69 + - *221 + - *215 + - *216 + - *222 responses: '200': description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 x-github: enabledForGitHubApps: true category: orgs @@ -32571,20 +32817,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *67 - - *216 - - *217 - - *212 - - *213 + - *69 - *219 + - *220 + - *215 + - *216 + - *222 responses: '200': description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 x-github: enabledForGitHubApps: true category: orgs @@ -32601,14 +32847,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *67 - - *218 - - *212 - - *213 + - *69 + - *221 + - *215 + - *216 - *19 - *17 - - *53 - - *222 + - *55 + - *225 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -32681,7 +32927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *67 + - *69 responses: '200': description: Response @@ -32689,7 +32935,7 @@ paths: application/json: schema: *22 examples: - default: &528 + default: &531 value: id: 1 account: @@ -32758,7 +33004,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -32828,7 +33074,7 @@ paths: suspended_at: suspended_by: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32847,7 +33093,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -32855,12 +33101,12 @@ paths: application/json: schema: anyOf: - - &224 + - &227 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &223 + limit: &226 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -32885,7 +33131,7 @@ paths: properties: {} additionalProperties: false examples: - default: &225 + default: &228 value: limit: collaborators_only origin: organization @@ -32909,18 +33155,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &529 + schema: &532 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *223 + limit: *226 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -32944,9 +33190,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: *225 + default: *228 '422': *15 x-github: githubCloudOnly: false @@ -32964,7 +33210,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -32988,7 +33234,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *67 + - *69 - *17 - *19 - name: role @@ -33022,11 +33268,11 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -33047,7 +33293,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *67 + - *69 requestBody: required: false content: @@ -33101,7 +33347,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: default: value: @@ -33155,8 +33401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *67 - - &228 + - *69 + - &231 name: invitation_id description: The unique identifier of the invitation. in: path @@ -33186,8 +33432,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *67 - - *228 + - *69 + - *231 - *17 - *19 responses: @@ -33197,9 +33443,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: &249 + default: &252 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -33215,7 +33461,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -33234,7 +33480,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -33242,7 +33488,7 @@ paths: application/json: schema: type: array - items: &229 + items: &232 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -33385,7 +33631,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -33475,9 +33721,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - default: &230 + default: &233 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -33532,8 +33778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *67 - - &231 + - *69 + - &234 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -33632,9 +33878,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - default: *230 + default: *233 '404': *6 '422': *7 x-github: @@ -33658,10 +33904,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *67 - - *231 + - *69 + - *234 responses: - '204': *184 + '204': *187 '404': *6 '422': *7 x-github: @@ -33681,7 +33927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -33689,7 +33935,7 @@ paths: application/json: schema: type: array - items: *232 + items: *235 examples: default: value: @@ -33727,7 +33973,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -33774,9 +34020,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *235 examples: - default: &233 + default: &236 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -33808,8 +34054,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *67 - - &234 + - *69 + - &237 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -33862,9 +34108,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *235 examples: - default: *233 + default: *236 '404': *6 '422': *7 x-github: @@ -33888,8 +34134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *67 - - *234 + - *69 + - *237 responses: '204': description: Response @@ -33922,7 +34168,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *67 + - *69 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -33952,7 +34198,7 @@ paths: - closed - all default: open - - *235 + - *238 - name: type description: Can be the name of an issue type. in: query @@ -33970,8 +34216,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -33981,11 +34227,11 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *236 + default: *239 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -34005,7 +34251,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *67 + - *69 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -34043,9 +34289,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -34063,8 +34309,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response if requester is an organization member and user is @@ -34098,8 +34344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -34125,8 +34371,8 @@ paths: parameters: - *17 - *19 - - *67 - - *63 + - *69 + - *65 responses: '200': description: Response @@ -34142,11 +34388,11 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34169,9 +34415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *67 - - *63 - - &239 + - *69 + - *65 + - &242 name: codespace_name in: path required: true @@ -34181,7 +34427,7 @@ paths: responses: '202': *39 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34204,17 +34450,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *67 - - *63 - - *239 + - *69 + - *65 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: &453 + default: &456 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -34356,7 +34602,7 @@ paths: recent_folders: [] template: '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34387,14 +34633,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *240 + schema: *243 examples: default: value: @@ -34438,7 +34684,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34463,14 +34709,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '200': description: Response content: application/json: - schema: &241 + schema: &244 title: Org Membership description: Org Membership type: object @@ -34514,7 +34760,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *65 + organization: *67 user: title: Simple User description: A GitHub user. @@ -34537,7 +34783,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &242 + response-if-user-has-an-active-admin-membership-with-organization: &245 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -34609,8 +34855,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 requestBody: required: false content: @@ -34638,9 +34884,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: - response-if-user-already-had-membership-with-organization: *242 + response-if-user-already-had-membership-with-organization: *245 '422': *15 '403': *29 x-github: @@ -34664,8 +34910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -34690,7 +34936,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *67 + - *69 - *17 - *19 - name: exclude @@ -34711,7 +34957,7 @@ paths: application/json: schema: type: array - items: &243 + items: &246 title: Migration description: A migration. type: object @@ -34752,7 +34998,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *71 + items: *73 url: type: string format: uri @@ -34948,7 +35194,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -34964,7 +35210,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *67 + - *69 requestBody: required: true content: @@ -35040,7 +35286,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -35218,8 +35464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *67 - - &244 + - *69 + - &247 name: migration_id description: The unique identifier of the migration. in: path @@ -35246,7 +35492,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -35415,8 +35661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *67 - - *244 + - *69 + - *247 responses: '302': description: Response @@ -35437,8 +35683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *67 - - *244 + - *69 + - *247 responses: '204': description: Response @@ -35461,9 +35707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *67 - - *244 - - &683 + - *69 + - *247 + - &686 name: repo_name description: repo_name parameter in: path @@ -35490,8 +35736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *67 - - *244 + - *69 + - *247 - *17 - *19 responses: @@ -35501,9 +35747,9 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: &256 + default: &259 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -35616,7 +35862,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -35642,7 +35888,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response - list of organization roles @@ -35658,7 +35904,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &246 + items: &249 title: Organization Role description: Organization roles type: object @@ -35805,8 +36051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -35831,9 +36077,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *67 - *69 - - &245 + - *71 + - &248 name: role_id description: The unique identifier of the role. in: path @@ -35868,9 +36114,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *67 - *69 - - *245 + - *71 + - *248 responses: '204': description: Response @@ -35895,8 +36141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -35921,9 +36167,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *67 - - *63 - - *245 + - *69 + - *65 + - *248 responses: '204': description: Response @@ -35953,9 +36199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *67 - - *63 - - *245 + - *69 + - *65 + - *248 responses: '204': description: Response @@ -35983,14 +36229,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 responses: '200': description: Response content: application/json: - schema: *246 + schema: *249 examples: default: value: @@ -36040,8 +36286,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 - *17 - *19 responses: @@ -36119,8 +36365,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 nullable: true type: description: The ownership type of the team @@ -36152,9 +36398,9 @@ paths: - type - parent examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '404': description: Response if the organization or role does not exist. '422': @@ -36181,8 +36427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 - *17 - *19 responses: @@ -36210,13 +36456,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &321 + items: &324 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 name: nullable: true type: string @@ -36311,9 +36557,9 @@ paths: - type - url examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': description: Response if the organization or role does not exist. '422': @@ -36335,7 +36581,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *67 + - *69 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -36362,9 +36608,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36387,8 +36633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *67 - - *63 + - *69 + - *65 requestBody: required: false content: @@ -36445,8 +36691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -36503,8 +36749,8 @@ paths: - docker - nuget - container - - *67 - - &684 + - *69 + - &687 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -36540,12 +36786,12 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *251 + default: *254 '403': *29 '401': *25 - '400': &686 + '400': &689 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -36567,7 +36813,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &252 + - &255 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 @@ -36585,20 +36831,20 @@ paths: - docker - nuget - container - - &253 + - &256 name: package_name description: The name of the package. in: path required: true schema: type: string - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: default: value: @@ -36650,9 +36896,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 responses: '204': description: Response @@ -36684,9 +36930,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 - name: token description: package token schema: @@ -36718,9 +36964,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 - *19 - *17 - name: state @@ -36740,7 +36986,7 @@ paths: application/json: schema: type: array - items: &254 + items: &257 title: Package Version description: A version of a software package type: object @@ -36865,10 +37111,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - - &255 + - *255 + - *256 + - *69 + - &258 name: package_version_id description: Unique identifier of the package version. in: path @@ -36880,7 +37126,7 @@ paths: description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -36916,10 +37162,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - *255 + - *256 + - *69 + - *258 responses: '204': description: Response @@ -36951,10 +37197,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - *255 + - *256 + - *69 + - *258 responses: '204': description: Response @@ -36981,10 +37227,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *67 + - *69 - *17 - *19 - - &257 + - &260 name: sort description: The property by which to sort the results. in: query @@ -36994,8 +37240,8 @@ paths: enum: - created_at default: created_at - - *53 - - &258 + - *55 + - &261 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -37006,7 +37252,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &259 + - &262 name: repository description: The name of the repository to use to filter the results. in: query @@ -37014,7 +37260,7 @@ paths: schema: type: string example: Hello-World - - &260 + - &263 name: permission description: The permission to use to filter the results. in: query @@ -37022,7 +37268,7 @@ paths: schema: type: string example: issues_read - - &261 + - &264 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) @@ -37032,7 +37278,7 @@ paths: schema: type: string format: date-time - - &262 + - &265 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) @@ -37042,7 +37288,7 @@ paths: schema: type: string format: date-time - - &263 + - &266 name: token_id description: The ID of the token in: query @@ -37054,7 +37300,7 @@ paths: type: string example: token_id[]=1,token_id[]=2 responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37186,7 +37432,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37206,7 +37452,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *67 + - *69 requestBody: required: true content: @@ -37247,7 +37493,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37272,7 +37518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *67 + - *69 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -37308,11 +37554,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37333,7 +37579,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *67 + - *69 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -37344,7 +37590,7 @@ paths: - *17 - *19 responses: - '500': *113 + '500': *115 '404': *6 '403': *29 '200': @@ -37353,11 +37599,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37378,19 +37624,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *67 + - *69 - *17 - *19 - - *257 - - *53 - - *258 - - *259 - *260 + - *55 - *261 - *262 - *263 + - *264 + - *265 + - *266 responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37517,7 +37763,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37537,7 +37783,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *67 + - *69 requestBody: required: true content: @@ -37572,7 +37818,7 @@ paths: - 1296269 - 1296280 responses: - '500': *113 + '500': *115 '404': *6 '202': *39 '403': *29 @@ -37597,7 +37843,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *67 + - *69 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -37625,9 +37871,9 @@ paths: value: action: revoke responses: - '500': *113 + '500': *115 '404': *6 - '204': *184 + '204': *187 '403': *29 '422': *15 x-github: @@ -37649,7 +37895,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *67 + - *69 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -37659,7 +37905,7 @@ paths: - *17 - *19 responses: - '500': *113 + '500': *115 '404': *6 '403': *29 '200': @@ -37668,11 +37914,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37694,7 +37940,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -37712,7 +37958,7 @@ paths: type: integer configurations: type: array - items: &264 + items: &267 title: Organization private registry description: Private registry configuration for an organization type: object @@ -37792,7 +38038,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *59 + Link: *61 '400': *14 '404': *6 x-github: @@ -37814,7 +38060,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -38002,7 +38248,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &265 + org-private-registry-with-selected-visibility: &268 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -38043,7 +38289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -38069,7 +38315,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -38091,16 +38337,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *264 + schema: *267 examples: - default: *265 + default: *268 '404': *6 x-github: githubCloudOnly: false @@ -38121,8 +38367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -38226,8 +38472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -38250,15 +38496,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *67 + - *69 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -38267,7 +38513,7 @@ paths: application/json: schema: type: array - items: &266 + items: &269 title: Projects v2 Project description: A projects v2 project type: object @@ -38337,7 +38583,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &774 + properties: &777 id: type: number description: The unique identifier of the status update. @@ -38385,7 +38631,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &775 + required: &778 - id - node_id - created_at @@ -38410,7 +38656,7 @@ paths: - deleted_at - deleted_by examples: - default: &267 + default: &270 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -38493,7 +38739,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38513,24 +38759,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &268 + - &271 name: project_number description: The project's number. in: path required: true schema: type: integer - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38550,8 +38796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true description: Details of the draft item to create in the project. @@ -38585,7 +38831,7 @@ paths: description: Response content: application/json: - schema: &274 + schema: &277 title: Projects v2 Item description: An item belonging to a project type: object @@ -38598,8 +38844,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *77 - - &470 + - *79 + - &473 title: Pull Request Simple description: Pull Request Simple type: object @@ -38705,8 +38951,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true active_lock_reason: type: string @@ -38749,7 +38995,7 @@ paths: items: *4 requested_teams: type: array - items: *190 + items: *193 head: type: object properties: @@ -38757,7 +39003,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: @@ -38780,7 +39026,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: @@ -38799,7 +39045,7 @@ paths: _links: type: object properties: - comments: &271 + comments: &274 title: Link description: Hypermedia Link type: object @@ -38808,13 +39054,13 @@ paths: type: string required: - href - commits: *271 - statuses: *271 - html: *271 - issue: *271 - review_comments: *271 - review_comment: *271 - self: *271 + commits: *274 + statuses: *274 + html: *274 + issue: *274 + review_comments: *274 + review_comment: *274 + self: *274 required: - comments - commits @@ -38824,8 +39070,8 @@ paths: - review_comments - review_comment - self - author_association: *74 - auto_merge: &579 + author_association: *76 + auto_merge: &582 title: Auto merge description: The status of auto merging a pull request. type: object @@ -38927,7 +39173,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &273 + content_type: &276 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -38967,7 +39213,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &275 + draft_issue: &278 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -39041,11 +39287,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *268 - - *67 + - *271 + - *69 - *17 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -39053,7 +39299,7 @@ paths: application/json: schema: type: array - items: &272 + items: &275 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -39203,7 +39449,7 @@ paths: - updated_at - project_url examples: - default: &705 + default: &708 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39314,7 +39560,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -39333,8 +39579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *268 - - *67 + - *271 + - *69 requestBody: required: true content: @@ -39380,7 +39626,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &706 + items: &709 type: object properties: name: @@ -39417,7 +39663,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &707 + iteration_configuration: &710 type: object description: The configuration for iteration fields. properties: @@ -39467,7 +39713,7 @@ paths: value: name: Due date data_type: date - single_select_field: &708 + single_select_field: &711 summary: Create a single select field value: name: Priority @@ -39494,7 +39740,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &709 + iteration_field: &712 summary: Create an iteration field value: name: Sprint @@ -39518,9 +39764,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *272 + schema: *275 examples: - text_field: &710 + text_field: &713 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -39529,7 +39775,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: &711 + number_field: &714 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -39538,7 +39784,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: &712 + date_field: &715 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -39547,7 +39793,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: &713 + single_select_field: &716 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39581,7 +39827,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &714 + iteration_field: &717 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -39626,23 +39872,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *268 - - &715 + - *271 + - &718 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: &716 + default: &719 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39677,7 +39923,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -39698,8 +39944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *268 - - *67 + - *271 + - *69 - 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) for more information. @@ -39721,8 +39967,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -39731,7 +39977,7 @@ paths: application/json: schema: type: array - items: &276 + items: &279 title: Projects v2 Item description: An item belonging to a project type: object @@ -39747,7 +39993,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *273 + content_type: *276 content: type: object additionalProperties: true @@ -39790,7 +40036,7 @@ paths: - updated_at - archived_at examples: - default: &277 + default: &280 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -40467,7 +40713,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40487,8 +40733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -40558,22 +40804,22 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *275 + value: *278 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *275 + value: *278 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *275 + value: *278 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *275 + value: *278 '304': *37 '403': *29 '401': *25 @@ -40593,9 +40839,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *268 - - *67 - - &278 + - *271 + - *69 + - &281 name: item_id description: The unique identifier of the project item. in: path @@ -40621,11 +40867,11 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40644,9 +40890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *268 - - *67 - - *278 + - *271 + - *69 + - *281 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -40716,13 +40962,13 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - text_field: *277 - number_field: *277 - date_field: *277 - single_select_field: *277 - iteration_field: *277 + text_field: *280 + number_field: *280 + date_field: *280 + single_select_field: *280 + iteration_field: *280 '401': *25 '403': *29 '404': *6 @@ -40742,9 +40988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *268 - - *67 - - *278 + - *271 + - *69 + - *281 responses: '204': description: Response @@ -40767,8 +41013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true content: @@ -40839,7 +41085,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &697 + schema: &700 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -40937,7 +41183,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &279 + value: &282 value: id: 1 number: 1 @@ -40983,10 +41229,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *279 + value: *282 roadmap_view: summary: Response for creating a roadmap view - value: *279 + value: *282 '304': *37 '403': *29 '401': *25 @@ -41014,9 +41260,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *268 - - *67 - - &717 + - *271 + - *69 + - &720 name: view_number description: The number that identifies the project view. in: path @@ -41038,8 +41284,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -41048,11 +41294,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -41075,7 +41321,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -41083,7 +41329,7 @@ paths: application/json: schema: type: array - items: &280 + items: &283 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -41151,7 +41397,7 @@ paths: - property_name - value_type examples: - default: &281 + default: &284 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41200,7 +41446,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -41211,7 +41457,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *280 + items: *283 minItems: 1 maxItems: 100 required: @@ -41241,9 +41487,9 @@ paths: application/json: schema: type: array - items: *280 + items: *283 examples: - default: *281 + default: *284 '403': *29 '404': *6 x-github: @@ -41264,8 +41510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *67 - - &282 + - *69 + - &285 name: custom_property_name description: The custom property name in: path @@ -41277,9 +41523,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: &283 + default: &286 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41313,8 +41559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *67 - - *282 + - *69 + - *285 requestBody: required: true content: @@ -41385,9 +41631,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: *283 + default: *286 '403': *29 '404': *6 x-github: @@ -41410,10 +41656,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *67 - - *282 + - *69 + - *285 responses: - '204': *184 + '204': *187 '403': *29 '404': *6 x-github: @@ -41434,7 +41680,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *67 + - *69 - *17 - *19 - name: repository_query @@ -41472,7 +41718,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &284 + items: &287 title: Custom Property Value description: Custom property name and associated value type: object @@ -41511,7 +41757,7 @@ paths: - property_name: team value: octocat headers: - Link: *59 + Link: *61 '403': *29 '404': *6 x-github: @@ -41539,7 +41785,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *67 + - *69 requestBody: required: true content: @@ -41559,7 +41805,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *284 + items: *287 required: - repository_names - properties @@ -41600,7 +41846,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *67 + - *69 - *17 - *19 responses: @@ -41612,9 +41858,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41631,8 +41877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response if user is a public member @@ -41656,8 +41902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -41678,8 +41924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -41703,7 +41949,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *67 + - *69 - name: type description: Specifies the types of repositories you want returned. in: query @@ -41749,11 +41995,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41772,7 +42018,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *67 + - *69 requestBody: required: true content: @@ -41953,7 +42199,7 @@ paths: description: Response content: application/json: - schema: &335 + schema: &338 title: Full Repository description: Full Repository type: object @@ -42244,8 +42490,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *285 - required: *286 + properties: *288 + required: *289 nullable: true temp_clone_token: type: string @@ -42332,8 +42578,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true organization: title: Simple User @@ -42342,8 +42588,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *71 - source: *71 + parent: *73 + source: *73 forks: type: integer master_branch: @@ -42360,7 +42606,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &475 + properties: &478 url: type: string format: uri @@ -42376,12 +42622,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &476 + required: &479 - url - key - name - html_url - security_and_analysis: *287 + security_and_analysis: *290 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42465,7 +42711,7 @@ paths: - network_count - subscribers_count examples: - default: &337 + default: &340 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42983,10 +43229,10 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - *17 - *19 - - &601 + - &604 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43004,7 +43250,7 @@ paths: application/json: schema: type: array - items: &314 + items: &317 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -43039,7 +43285,7 @@ paths: source: type: string description: The name of the source - enforcement: &290 + enforcement: &293 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -43052,7 +43298,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &291 + items: &294 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -43122,7 +43368,7 @@ paths: conditions: nullable: true anyOf: - - &288 + - &291 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -43146,7 +43392,7 @@ paths: match. items: type: string - - &292 + - &295 title: Organization ruleset conditions type: object description: |- @@ -43160,7 +43406,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -43194,7 +43440,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -43216,7 +43462,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -43229,7 +43475,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &289 + items: &292 title: Repository ruleset property targeting definition type: object @@ -43262,17 +43508,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *289 + items: *292 required: - repository_property rules: type: array - items: &602 + items: &605 title: Repository Rule type: object description: A repository rule. oneOf: - - &293 + - &296 title: creation description: Only allow users with bypass permission to create matching refs. @@ -43284,7 +43530,7 @@ paths: type: string enum: - creation - - &294 + - &297 title: update description: Only allow users with bypass permission to update matching refs. @@ -43305,7 +43551,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &295 + - &298 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -43317,7 +43563,7 @@ paths: type: string enum: - deletion - - &296 + - &299 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -43329,7 +43575,7 @@ paths: type: string enum: - required_linear_history - - &600 + - &603 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -43407,7 +43653,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &297 + - &300 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -43431,7 +43677,7 @@ paths: type: string required: - required_deployment_environments - - &298 + - &301 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -43443,7 +43689,7 @@ paths: type: string enum: - required_signatures - - &299 + - &302 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -43549,7 +43795,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &300 + - &303 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -43597,7 +43843,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &301 + - &304 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -43609,7 +43855,7 @@ paths: type: string enum: - non_fast_forward - - &302 + - &305 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -43646,7 +43892,7 @@ paths: required: - operator - pattern - - &303 + - &306 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -43683,7 +43929,7 @@ paths: required: - operator - pattern - - &304 + - &307 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -43720,7 +43966,7 @@ paths: required: - operator - pattern - - &305 + - &308 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -43757,7 +44003,7 @@ paths: required: - operator - pattern - - &306 + - &309 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -43794,7 +44040,7 @@ paths: required: - operator - pattern - - &307 + - &310 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -43819,7 +44065,7 @@ paths: type: string required: - restricted_file_paths - - &308 + - &311 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -43843,7 +44089,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &309 + - &312 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -43866,7 +44112,7 @@ paths: type: string required: - restricted_file_extensions - - &310 + - &313 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -43891,7 +44137,7 @@ paths: maximum: 100 required: - max_file_size - - &311 + - &314 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -43941,7 +44187,7 @@ paths: - repository_id required: - workflows - - &312 + - &315 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -44002,7 +44248,7 @@ paths: - tool required: - code_scanning_tools - - &313 + - &316 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -44064,7 +44310,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -44080,7 +44326,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 requestBody: description: Request body required: true @@ -44101,23 +44347,20 @@ paths: - push - repository default: branch - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *292 + items: *294 + conditions: *295 rules: type: array description: An array of rules within the ruleset. - items: &316 + items: &319 title: Repository Rule type: object description: A repository rule. oneOf: - - *293 - - *294 - - *295 - *296 - *297 - *298 @@ -44136,6 +44379,9 @@ paths: - *311 - *312 - *313 + - *314 + - *315 + - *316 required: - name - enforcement @@ -44173,9 +44419,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: &315 + default: &318 value: id: 21 name: super cool ruleset @@ -44216,7 +44462,7 @@ paths: updated_at: '2023-09-23T16:29:47Z' '404': *6 '422': *15 - '500': *113 + '500': *115 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -44230,8 +44476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *67 - - &603 + - *69 + - &606 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 @@ -44246,7 +44492,7 @@ paths: in: query schema: type: string - - &604 + - &607 name: time_period description: |- The time period to filter by. @@ -44262,14 +44508,14 @@ paths: - week - month default: day - - &605 + - &608 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 - - &606 + - &609 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -44289,7 +44535,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &610 title: Rule Suites description: Response type: array @@ -44344,7 +44590,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &608 + default: &611 value: - id: 21 actor_id: 12 @@ -44368,7 +44614,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44387,8 +44633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *67 - - &609 + - *69 + - &612 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44404,7 +44650,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &613 title: Rule Suite description: Response type: object @@ -44503,7 +44749,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &611 + default: &614 value: id: 21 actor_id: 12 @@ -44538,7 +44784,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44564,7 +44810,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44576,11 +44822,11 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *315 + default: *318 '404': *6 - '500': *113 + '500': *115 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -44596,7 +44842,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44622,16 +44868,16 @@ paths: - tag - push - repository - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *292 + items: *294 + conditions: *295 rules: description: An array of rules within the ruleset. type: array - items: *316 + items: *319 examples: default: value: @@ -44666,12 +44912,12 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *315 + default: *318 '404': *6 '422': *15 - '500': *113 + '500': *115 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -44687,7 +44933,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44698,7 +44944,7 @@ paths: '204': description: Response '404': *6 - '500': *113 + '500': *115 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -44710,7 +44956,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *67 + - *69 - *17 - *19 - name: ruleset_id @@ -44726,7 +44972,7 @@ paths: application/json: schema: type: array - items: &317 + items: &320 title: Ruleset version type: object description: The historical version of a ruleset @@ -44750,7 +44996,7 @@ paths: type: string format: date-time examples: - default: &613 + default: &616 value: - version_id: 3 actor: @@ -44768,7 +45014,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44785,7 +45031,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44803,9 +45049,9 @@ paths: description: Response content: application/json: - schema: &614 + schema: &617 allOf: - - *317 + - *320 - type: object required: - state @@ -44852,7 +45098,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44874,8 +45120,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *67 - - &615 + - *69 + - &618 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -44886,7 +45132,7 @@ paths: enum: - open - resolved - - &616 + - &619 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -44896,7 +45142,7 @@ paths: required: false schema: type: string - - &617 + - &620 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -44905,7 +45151,7 @@ paths: required: false schema: type: string - - &618 + - &621 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -44924,7 +45170,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &619 + - &622 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. @@ -44936,10 +45182,10 @@ paths: - created - updated default: created - - *53 + - *55 - *19 - *17 - - &620 + - &623 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 @@ -44949,7 +45195,7 @@ paths: required: false schema: type: string - - &621 + - &624 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 @@ -44959,7 +45205,7 @@ paths: required: false schema: type: string - - &622 + - &625 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -44968,7 +45214,7 @@ paths: required: false schema: type: string - - &623 + - &626 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -44977,7 +45223,7 @@ paths: schema: type: boolean default: false - - &624 + - &627 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -44986,7 +45232,7 @@ paths: schema: type: boolean default: false - - &625 + - &628 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -45005,8 +45251,8 @@ paths: items: type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -45014,21 +45260,21 @@ paths: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &626 + state: &629 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: &627 + resolution: &630 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -45062,7 +45308,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *58 + repository: *60 push_protection_bypassed: type: boolean description: Whether push protection was bypassed for the detected @@ -45135,8 +45381,8 @@ paths: pull request. ' - oneOf: &628 - - &630 + oneOf: &631 + - &633 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -45188,7 +45434,7 @@ paths: - blob_url - commit_sha - commit_url - - &631 + - &634 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. @@ -45243,7 +45489,7 @@ paths: - page_url - commit_sha - commit_url - - &632 + - &635 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -45257,7 +45503,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &633 + - &636 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -45271,7 +45517,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &634 + - &637 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -45285,7 +45531,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &635 + - &638 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -45299,7 +45545,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &636 + - &639 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -45313,7 +45559,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &637 + - &640 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -45327,7 +45573,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &638 + - &641 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. @@ -45341,7 +45587,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &639 + - &642 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. @@ -45355,7 +45601,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &640 + - &643 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. @@ -45369,7 +45615,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &641 + - &644 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. @@ -45383,7 +45629,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &642 + - &645 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -45586,9 +45832,9 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45613,7 +45859,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *67 + - *69 responses: '200': description: Response @@ -45625,7 +45871,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &319 + pattern_config_version: &322 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -45634,7 +45880,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &318 + items: &321 type: object properties: token_type: @@ -45700,7 +45946,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *318 + items: *321 examples: default: value: @@ -45749,7 +45995,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *67 + - *69 requestBody: required: true content: @@ -45757,7 +46003,7 @@ paths: schema: type: object properties: - pattern_config_version: *319 + pattern_config_version: *322 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -45783,7 +46029,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *319 + custom_pattern_version: *322 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -45819,7 +46065,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 "/orgs/{org}/security-advisories": get: @@ -45837,8 +46083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *67 - - *53 + - *69 + - *55 - name: sort description: The property to sort the results by. in: query @@ -45850,8 +46096,8 @@ paths: - updated - published default: created - - *45 - - *46 + - *47 + - *48 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -45881,7 +46127,7 @@ paths: application/json: schema: type: array - items: &646 + items: &649 description: A repository security advisory. type: object properties: @@ -46068,7 +46314,7 @@ paths: required: - vector_string - score - cvss_severities: *55 + cvss_severities: *57 cwes: type: array nullable: true @@ -46101,7 +46347,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 credits_detailed: type: array nullable: true @@ -46111,7 +46357,7 @@ paths: type: object properties: user: *4 - type: *320 + type: *323 state: type: string description: The state of the user's acceptance of the @@ -46135,14 +46381,14 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *190 + items: *193 private_fork: readOnly: true nullable: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *58 + - *60 required: - ghsa_id - cve_id @@ -46172,7 +46418,7 @@ paths: - private_fork additionalProperties: false examples: - default: &647 + default: &650 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -46551,7 +46797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *67 + - *69 responses: '200': description: Response @@ -46559,7 +46805,7 @@ paths: application/json: schema: type: array - items: *321 + items: *324 examples: default: value: @@ -46599,8 +46845,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -46625,8 +46871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -46653,7 +46899,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Immutable releases settings response @@ -46702,7 +46948,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -46759,7 +47005,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *67 + - *69 - *19 - *17 responses: @@ -46777,9 +47023,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46798,7 +47044,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *67 + - *69 requestBody: required: true content: @@ -46847,8 +47093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -46870,8 +47116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -46894,7 +47140,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -46912,7 +47158,7 @@ paths: type: integer network_configurations: type: array - items: &322 + items: &325 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -46983,7 +47229,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47002,7 +47248,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -47045,9 +47291,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: &323 + default: &326 value: id: 123456789ABCDEF name: My network configuration @@ -47075,8 +47321,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 - - &324 + - *69 + - &327 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -47088,11 +47334,11 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *323 + default: *326 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47111,8 +47357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 - - *324 + - *69 + - *327 requestBody: required: true content: @@ -47152,9 +47398,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *323 + default: *326 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47173,8 +47419,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - - *67 - - *324 + - *69 + - *327 responses: '204': description: Response @@ -47197,7 +47443,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - - *67 + - *69 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -47251,7 +47497,7 @@ paths: subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" region: eastus headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47281,8 +47527,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *67 - *69 + - *71 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -47314,13 +47560,13 @@ paths: application/json: schema: type: array - items: *325 + items: *328 examples: - default: *326 - '500': *113 + default: *329 + '500': *115 '403': *29 '404': *6 - '422': *327 + '422': *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47338,7 +47584,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *67 + - *69 - *17 - *19 - name: team_type @@ -47360,11 +47606,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -47384,7 +47630,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *67 + - *69 requestBody: required: true content: @@ -47456,7 +47702,7 @@ paths: description: Response content: application/json: - schema: &328 + schema: &331 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -47519,8 +47765,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 nullable: true members_count: type: integer @@ -47783,7 +48029,7 @@ paths: - repos_count - organization examples: - default: &329 + default: &332 value: id: 1 node_id: MDQ6VGVhbTE= @@ -47853,16 +48099,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *67 - *69 + - *71 responses: '200': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 x-github: githubCloudOnly: false @@ -47883,8 +48129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *67 - *69 + - *71 requestBody: required: false content: @@ -47946,16 +48192,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '201': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 '422': *15 '403': *29 @@ -47980,12 +48226,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response - '422': &330 + '422': &333 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -48008,8 +48254,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -48019,12 +48265,12 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 - '422': *330 + Link: *61 + '422': *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48044,8 +48290,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *67 - *69 + - *71 - name: role description: Filters members returned by their role in the team. in: query @@ -48068,9 +48314,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48098,15 +48344,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 responses: '200': description: Response content: application/json: - schema: &331 + schema: &334 title: Team Membership description: Team Membership type: object @@ -48133,7 +48379,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &663 + response-if-user-is-a-team-maintainer: &666 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48169,9 +48415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 requestBody: required: false content: @@ -48196,9 +48442,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-users-membership-with-team-is-now-pending: &664 + response-if-users-membership-with-team-is-now-pending: &667 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48233,9 +48479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 responses: '204': description: Response @@ -48261,8 +48507,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -48272,11 +48518,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48303,16 +48549,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &665 + schema: &668 title: Team Repository description: A team's access to a repository. type: object @@ -48335,8 +48581,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true forks: type: integer @@ -48881,10 +49127,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 requestBody: required: false content: @@ -48929,10 +49175,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 responses: '204': description: Response @@ -48956,8 +49202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -48967,9 +49213,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - response-if-child-teams-exist: &666 + response-if-child-teams-exist: &669 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48997,7 +49243,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49022,7 +49268,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *67 + - *69 - name: security_product in: path description: The security feature to enable or disable. @@ -49123,7 +49369,7 @@ paths: resources: type: object properties: - core: &334 + core: &337 title: Rate Limit type: object properties: @@ -49140,21 +49386,21 @@ paths: - remaining - reset - used - graphql: *334 - search: *334 - code_search: *334 - source_import: *334 - integration_manifest: *334 - code_scanning_upload: *334 - actions_runner_registration: *334 - scim: *334 - dependency_snapshots: *334 - dependency_sbom: *334 - code_scanning_autofix: *334 + graphql: *337 + search: *337 + code_search: *337 + source_import: *337 + integration_manifest: *337 + code_scanning_upload: *337 + actions_runner_registration: *337 + scim: *337 + dependency_snapshots: *337 + dependency_sbom: *337 + code_scanning_autofix: *337 required: - core - search - rate: *334 + rate: *337 required: - rate - resources @@ -49259,14 +49505,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *335 + schema: *338 examples: default-response: summary: Default response @@ -49771,7 +50017,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *336 + '301': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49789,8 +50035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -50081,10 +50327,10 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 - '307': &338 + default: *340 + '307': &341 description: Temporary Redirect content: application/json: @@ -50113,8 +50359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -50136,9 +50382,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *338 + '307': *341 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50160,11 +50406,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - - &371 + - &374 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50187,7 +50433,7 @@ paths: type: integer artifacts: type: array - items: &339 + items: &342 title: Artifact description: An artifact type: object @@ -50265,7 +50511,7 @@ paths: - expires_at - updated_at examples: - default: &372 + default: &375 value: total_count: 2 artifacts: @@ -50304,7 +50550,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50326,9 +50572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *332 - - *333 - - &340 + - *335 + - *336 + - &343 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50340,7 +50586,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *342 examples: default: value: @@ -50378,9 +50624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *332 - - *333 - - *340 + - *335 + - *336 + - *343 responses: '204': description: Response @@ -50404,9 +50650,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *332 - - *333 - - *340 + - *335 + - *336 + - *343 - name: archive_format in: path required: true @@ -50420,7 +50666,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &532 + '410': &535 description: Gone content: application/json: @@ -50445,14 +50691,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &341 + schema: &344 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -50485,13 +50731,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *341 + schema: *344 examples: selected_actions: *42 responses: @@ -50520,14 +50766,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &342 + schema: &345 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -50560,13 +50806,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *342 + schema: *345 examples: selected_actions: *44 responses: @@ -50597,14 +50843,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *343 + schema: *346 examples: default: value: @@ -50630,11 +50876,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - - &344 + - &347 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 @@ -50662,13 +50908,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *53 + - *55 responses: '200': description: Response content: application/json: - schema: &345 + schema: &348 title: Repository actions caches description: Repository actions caches type: object @@ -50710,7 +50956,7 @@ paths: - total_count - actions_caches examples: - default: &346 + default: &349 value: total_count: 1 actions_caches: @@ -50722,7 +50968,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50742,23 +50988,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: - - *332 - - *333 + - *335 + - *336 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *344 + - *347 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50778,8 +51024,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: - - *332 - - *333 + - *335 + - *336 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50810,9 +51056,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *332 - - *333 - - &347 + - *335 + - *336 + - &350 name: job_id description: The unique identifier of the job. in: path @@ -50824,7 +51070,7 @@ paths: description: Response content: application/json: - schema: &375 + schema: &378 title: Job description: Information of a job execution in a workflow run type: object @@ -51131,9 +51377,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *332 - - *333 - - *347 + - *335 + - *336 + - *350 responses: '302': description: Response @@ -51161,9 +51407,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *332 - - *333 - - *347 + - *335 + - *336 + - *350 requestBody: required: false content: @@ -51184,7 +51430,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -51208,8 +51454,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Status response @@ -51259,8 +51505,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: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -51294,7 +51540,7 @@ paths: description: Empty response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -51323,8 +51569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -51342,7 +51588,7 @@ paths: type: integer secrets: type: array - items: &377 + items: &380 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51362,7 +51608,7 @@ paths: - created_at - updated_at examples: - default: &378 + default: &381 value: total_count: 2 secrets: @@ -51373,7 +51619,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51395,9 +51641,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *332 - - *333 - - *348 + - *335 + - *336 + - *351 - *19 responses: '200': @@ -51414,7 +51660,7 @@ paths: type: integer variables: type: array - items: &381 + items: &384 title: Actions Variable type: object properties: @@ -51444,7 +51690,7 @@ paths: - created_at - updated_at examples: - default: &382 + default: &385 value: total_count: 2 variables: @@ -51457,7 +51703,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51477,8 +51723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -51487,12 +51733,12 @@ paths: schema: type: object properties: - enabled: &350 + enabled: &353 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *138 - selected_actions_url: *349 - sha_pinning_required: *139 + allowed_actions: *141 + selected_actions_url: *352 + sha_pinning_required: *142 required: - enabled examples: @@ -51520,8 +51766,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51532,9 +51778,9 @@ paths: schema: type: object properties: - enabled: *350 - allowed_actions: *138 - sha_pinning_required: *139 + enabled: *353 + allowed_actions: *141 + sha_pinning_required: *142 required: - enabled examples: @@ -51564,14 +51810,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &351 + schema: &354 type: object properties: access_level: @@ -51588,7 +51834,7 @@ paths: required: - access_level examples: - default: &352 + default: &355 value: access_level: organization x-github: @@ -51612,15 +51858,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: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *351 + schema: *354 examples: - default: *352 + default: *355 responses: '204': description: Response @@ -51644,14 +51890,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *353 + schema: *356 examples: default: value: @@ -51675,8 +51921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Empty response for successful settings update @@ -51686,7 +51932,7 @@ paths: required: true content: application/json: - schema: *354 + schema: *357 examples: default: summary: Set retention days @@ -51710,16 +51956,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *140 + schema: *143 examples: - default: *355 + default: *358 '404': *6 x-github: enabledForGitHubApps: true @@ -51738,8 +51984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51749,7 +51995,7 @@ paths: required: true content: application/json: - schema: *140 + schema: *143 examples: default: summary: Set approval policy to first time contributors @@ -51773,16 +52019,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *356 + schema: *359 examples: - default: *141 + default: *144 '403': *29 '404': *6 x-github: @@ -51802,15 +52048,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *357 + schema: *360 examples: - default: *141 + default: *144 responses: '204': description: Empty response for successful settings update @@ -51834,16 +52080,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *143 + schema: *146 examples: - default: *144 + default: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -51862,8 +52108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51871,9 +52117,9 @@ paths: required: false content: application/json: - schema: *143 + schema: *146 examples: - selected_actions: *144 + selected_actions: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -51895,16 +52141,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51925,8 +52171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Success response @@ -51937,9 +52183,9 @@ paths: required: true content: application/json: - schema: *359 + schema: *362 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51966,8 +52212,8 @@ paths: in: query schema: type: string - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -51985,11 +52231,11 @@ paths: type: integer runners: type: array - items: *155 + items: *158 examples: - default: *156 + default: *159 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52011,8 +52257,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -52020,9 +52266,9 @@ paths: application/json: schema: type: array - items: *360 + items: *363 examples: - default: *361 + default: *364 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52044,8 +52290,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: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -52088,10 +52334,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *362 + '201': *365 '404': *6 '422': *7 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52119,16 +52365,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52156,16 +52402,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: *364 + default: *367 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52187,17 +52433,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: '200': description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: *365 + default: *368 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52218,9 +52464,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: '204': description: Response @@ -52246,11 +52492,11 @@ 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: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: - '200': *159 + '200': *162 '404': *6 x-github: githubCloudOnly: false @@ -52272,9 +52518,9 @@ 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: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 requestBody: required: true content: @@ -52298,7 +52544,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -52322,9 +52568,9 @@ 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: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 requestBody: required: true content: @@ -52349,7 +52595,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -52373,11 +52619,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: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: - '200': *366 + '200': *369 '404': *6 x-github: githubCloudOnly: false @@ -52404,12 +52650,12 @@ 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: - - *332 - - *333 - - *154 - - *367 + - *335 + - *336 + - *157 + - *370 responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -52435,9 +52681,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *332 - - *333 - - &385 + - *335 + - *336 + - &388 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. @@ -52445,7 +52691,7 @@ paths: required: false schema: type: string - - &386 + - &389 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52453,7 +52699,7 @@ paths: required: false schema: type: string - - &387 + - &390 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52462,7 +52708,7 @@ paths: required: false schema: type: string - - &388 + - &391 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 @@ -52489,7 +52735,7 @@ paths: - pending - *17 - *19 - - &389 + - &392 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)." @@ -52498,7 +52744,7 @@ paths: schema: type: string format: date-time - - &368 + - &371 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52507,13 +52753,13 @@ paths: schema: type: boolean default: false - - &390 + - &393 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &391 + - &394 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52536,7 +52782,7 @@ paths: type: integer workflow_runs: type: array - items: &369 + items: &372 title: Workflow Run description: An invocation of a workflow type: object @@ -52631,7 +52877,7 @@ paths: that triggered the run. type: array nullable: true - items: *82 + items: *84 created_at: type: string format: date-time @@ -52684,7 +52930,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &413 + properties: &416 id: type: string description: SHA for the commit @@ -52735,7 +52981,7 @@ paths: - name - email nullable: true - required: &414 + required: &417 - id - tree_id - message @@ -52743,8 +52989,8 @@ paths: - author - committer nullable: true - repository: *153 - head_repository: *153 + repository: *156 + head_repository: *156 head_repository_id: type: integer example: 5 @@ -52782,7 +53028,7 @@ paths: - workflow_url - pull_requests examples: - default: &392 + default: &395 value: total_count: 1 workflow_runs: @@ -52996,7 +53242,7 @@ paths: releases_url: https://api.github.com/repos/octo-org/octo-repo/releases{/id} deployments_url: https://api.github.com/repos/octo-org/octo-repo/deployments headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53018,24 +53264,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *332 - - *333 - - &370 + - *335 + - *336 + - &373 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *368 + - *371 responses: '200': description: Response content: application/json: - schema: *369 + schema: *372 examples: - default: &373 + default: &376 value: id: 30433642 name: Build @@ -53276,9 +53522,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '204': description: Response @@ -53301,9 +53547,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -53422,15 +53668,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -53457,13 +53703,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 - *17 - *19 - - *371 - - *53 + - *374 + - *55 responses: '200': description: Response @@ -53479,11 +53725,11 @@ paths: type: integer artifacts: type: array - items: *339 + items: *342 examples: - default: *372 + default: *375 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53505,25 +53751,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *332 - - *333 - - *370 - - &374 + - *335 + - *336 + - *373 + - &377 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *368 + - *371 responses: '200': description: Response content: application/json: - schema: *369 + schema: *372 examples: - default: *373 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53546,10 +53792,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *332 - - *333 - - *370 - - *374 + - *335 + - *336 + - *373 + - *377 - *17 - *19 responses: @@ -53567,9 +53813,9 @@ paths: type: integer jobs: type: array - items: *375 + items: *378 examples: - default: &376 + default: &379 value: total_count: 1 jobs: @@ -53658,7 +53904,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -53682,10 +53928,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *332 - - *333 - - *370 - - *374 + - *335 + - *336 + - *373 + - *377 responses: '302': description: Response @@ -53713,19 +53959,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '202': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53748,9 +53994,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: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: true content: @@ -53817,19 +54063,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '202': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53852,9 +54098,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 - 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 @@ -53884,11 +54130,11 @@ paths: type: integer jobs: type: array - items: *375 + items: *378 examples: - default: *376 + default: *379 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53911,9 +54157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '302': description: Response @@ -53940,14 +54186,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '204': description: Response '403': *29 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53969,9 +54215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -54031,7 +54277,7 @@ paths: items: type: object properties: - type: &498 + type: &501 type: string description: The type of reviewer. enum: @@ -54041,7 +54287,7 @@ paths: reviewer: anyOf: - *4 - - *190 + - *193 required: - environment - wait_timer @@ -54116,9 +54362,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: true content: @@ -54165,12 +54411,12 @@ paths: application/json: schema: type: array - items: &493 + items: &496 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &737 + properties: &740 url: type: string format: uri @@ -54253,9 +54499,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - required: &738 + properties: *74 + required: *75 + required: &741 - id - node_id - sha @@ -54271,7 +54517,7 @@ paths: - created_at - updated_at examples: - default: &494 + default: &497 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54327,9 +54573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: false content: @@ -54350,7 +54596,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54373,9 +54619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: false content: @@ -54396,7 +54642,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54428,9 +54674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -54567,8 +54813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -54586,11 +54832,11 @@ paths: type: integer secrets: type: array - items: *377 + items: *380 examples: - default: *378 + default: *381 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54613,16 +54859,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: - default: *380 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54644,17 +54890,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: &511 + default: &514 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54680,9 +54926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -54713,7 +54959,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54739,9 +54985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -54766,9 +55012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *332 - - *333 - - *348 + - *335 + - *336 + - *351 - *19 responses: '200': @@ -54785,11 +55031,11 @@ paths: type: integer variables: type: array - items: *381 + items: *384 examples: - default: *382 + default: *385 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54810,8 +55056,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -54838,7 +55084,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54863,17 +55109,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: &512 + default: &515 value: name: USERNAME value: octocat @@ -54899,9 +55145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 requestBody: required: true content: @@ -54943,9 +55189,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 responses: '204': description: Response @@ -54970,8 +55216,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -54989,7 +55235,7 @@ paths: type: integer workflows: type: array - items: &383 + items: &386 title: Workflow description: A GitHub Actions workflow type: object @@ -55073,7 +55319,7 @@ paths: html_url: https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289 badge_url: https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55096,9 +55342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *332 - - *333 - - &384 + - *335 + - *336 + - &387 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55113,7 +55359,7 @@ paths: description: Response content: application/json: - schema: *383 + schema: *386 examples: default: value: @@ -55146,9 +55392,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '204': description: Response @@ -55173,9 +55419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -55262,9 +55508,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '204': description: Response @@ -55291,19 +55537,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *332 - - *333 - - *384 - - *385 - - *386 + - *335 + - *336 - *387 - *388 - - *17 - - *19 - *389 - - *368 - *390 - *391 + - *17 + - *19 + - *392 + - *371 + - *393 + - *394 responses: '200': description: Response @@ -55319,11 +55565,11 @@ paths: type: integer workflow_runs: type: array - items: *369 + items: *372 examples: - default: *392 + default: *395 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55353,9 +55599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '200': description: Response @@ -55416,12 +55662,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *332 - - *333 - - *53 + - *335 + - *336 + - *55 - *17 - - *45 - - *46 + - *47 + - *48 - name: ref description: |- The Git reference for the activities you want to list. @@ -55562,7 +55808,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '422': *7 x-github: githubCloudOnly: false @@ -55581,8 +55827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -55594,9 +55840,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -55619,8 +55865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *332 - - *333 + - *335 + - *336 - name: assignee in: path required: true @@ -55656,8 +55902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -55769,11 +56015,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *332 - - *333 + - *335 + - *336 - *17 - - *45 - - *46 + - *47 + - *48 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -55827,7 +56073,7 @@ paths: initiator: type: string examples: - default: *393 + default: *396 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55847,8 +56093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -55856,7 +56102,7 @@ paths: application/json: schema: type: array - items: &394 + items: &397 title: Autolink reference description: An autolink reference. type: object @@ -55910,8 +56156,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -55950,9 +56196,9 @@ paths: description: response content: application/json: - schema: *394 + schema: *397 examples: - default: &395 + default: &398 value: id: 1 key_prefix: TICKET- @@ -55983,9 +56229,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *332 - - *333 - - &396 + - *335 + - *336 + - &399 name: autolink_id description: The unique identifier of the autolink. in: path @@ -55997,9 +56243,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *397 examples: - default: *395 + default: *398 '404': *6 x-github: githubCloudOnly: false @@ -56019,9 +56265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *332 - - *333 - - *396 + - *335 + - *336 + - *399 responses: '204': description: Response @@ -56045,8 +56291,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response if Dependabot is enabled @@ -56094,8 +56340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -56116,8 +56362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -56137,8 +56383,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *332 - - *333 + - *335 + - *336 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56176,7 +56422,7 @@ paths: - url protected: type: boolean - protection: &398 + protection: &401 title: Branch Protection description: Branch Protection type: object @@ -56218,7 +56464,7 @@ paths: required: - contexts - checks - enforce_admins: &401 + enforce_admins: &404 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56233,7 +56479,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &403 + required_pull_request_reviews: &406 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56254,7 +56500,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *190 + items: *193 apps: description: The list of apps with review dismissal access. @@ -56283,7 +56529,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *190 + items: *193 apps: description: The list of apps allowed to bypass pull request requirements. @@ -56309,7 +56555,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &400 + restrictions: &403 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56372,7 +56618,7 @@ paths: type: string teams: type: array - items: *190 + items: *193 apps: type: array items: @@ -56568,7 +56814,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -56586,9 +56832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *332 - - *333 - - &399 + - *335 + - *336 + - &402 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). @@ -56602,14 +56848,14 @@ paths: description: Response content: application/json: - schema: &409 + schema: &412 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &466 + commit: &469 title: Commit description: Commit type: object @@ -56643,7 +56889,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &397 + properties: &400 name: type: string example: '"Chris Wanstrath"' @@ -56659,7 +56905,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true message: type: string @@ -56680,7 +56926,7 @@ paths: required: - sha - url - verification: &518 + verification: &521 title: Verification type: object properties: @@ -56714,12 +56960,12 @@ paths: nullable: true oneOf: - *4 - - *162 + - *165 committer: nullable: true oneOf: - *4 - - *162 + - *165 parents: type: array items: @@ -56750,7 +56996,7 @@ paths: type: integer files: type: array - items: &479 + items: &482 title: Diff Entry description: Diff Entry type: object @@ -56834,7 +57080,7 @@ paths: - self protected: type: boolean - protection: *398 + protection: *401 protection_url: type: string format: uri @@ -56941,7 +57187,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *336 + '301': *339 '404': *6 x-github: githubCloudOnly: false @@ -56963,15 +57209,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: default: value: @@ -57165,9 +57411,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -57422,7 +57668,7 @@ paths: url: type: string format: uri - required_status_checks: &406 + required_status_checks: &409 title: Status Check Policy description: Status Check Policy type: object @@ -57498,7 +57744,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 apps: type: array items: *5 @@ -57516,7 +57762,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 apps: type: array items: *5 @@ -57574,7 +57820,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *400 + restrictions: *403 required_conversation_resolution: type: object properties: @@ -57686,9 +57932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57713,17 +57959,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &402 + default: &405 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -57745,17 +57991,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *402 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57774,9 +58020,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57801,17 +58047,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: &404 + default: &407 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -57907,9 +58153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58007,9 +58253,9 @@ paths: description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: *404 + default: *407 '422': *15 x-github: githubCloudOnly: false @@ -58030,9 +58276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -58059,17 +58305,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &405 + default: &408 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58092,17 +58338,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *405 + default: *408 '404': *6 x-github: githubCloudOnly: false @@ -58122,9 +58368,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -58149,17 +58395,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *406 + schema: *409 examples: - default: &407 + default: &410 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58185,9 +58431,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58239,9 +58485,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *409 examples: - default: *407 + default: *410 '404': *6 '422': *15 x-github: @@ -58263,9 +58509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -58289,9 +58535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58325,9 +58571,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58394,9 +58640,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58460,9 +58706,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: content: application/json: @@ -58528,15 +58774,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *400 + schema: *403 examples: default: value: @@ -58627,9 +58873,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -58652,9 +58898,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58664,7 +58910,7 @@ paths: type: array items: *5 examples: - default: &408 + default: &411 value: - id: 1 slug: octoapp @@ -58721,9 +58967,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58757,7 +59003,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58778,9 +59024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58814,7 +59060,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58835,9 +59081,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58871,7 +59117,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58893,9 +59139,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58903,9 +59149,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '404': *6 x-github: githubCloudOnly: false @@ -58925,9 +59171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58963,9 +59209,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -58986,9 +59232,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -59024,9 +59270,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -59047,9 +59293,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: content: application/json: @@ -59084,9 +59330,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -59108,9 +59354,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -59120,7 +59366,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '404': *6 x-github: githubCloudOnly: false @@ -59144,9 +59390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -59179,7 +59425,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -59204,9 +59450,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -59239,7 +59485,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -59264,9 +59510,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -59299,7 +59545,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -59326,9 +59572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -59350,7 +59596,7 @@ paths: description: Response content: application/json: - schema: *409 + schema: *412 examples: default: value: @@ -59466,8 +59712,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -59746,7 +59992,7 @@ paths: description: Response content: application/json: - schema: &410 + schema: &413 title: CheckRun description: A check performed on the code of a given code change type: object @@ -59857,16 +60103,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *82 - deployment: &730 + items: *84 + deployment: &733 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -59933,8 +60179,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -60146,9 +60392,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *332 - - *333 - - &411 + - *335 + - *336 + - &414 name: check_run_id description: The unique identifier of the check run. in: path @@ -60160,9 +60406,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *413 examples: - default: &412 + default: &415 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60262,9 +60508,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 requestBody: required: true content: @@ -60504,9 +60750,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *413 examples: - default: *412 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60526,9 +60772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 - *17 - *19 responses: @@ -60603,7 +60849,7 @@ paths: raw_details: Do you mean 'bananas' or 'banana'? blob_href: https://api.github.com/repos/github/rest-api-description/git/blobs/abc headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60623,15 +60869,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -60669,8 +60915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -60692,7 +60938,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &415 + schema: &418 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -60756,7 +61002,7 @@ paths: nullable: true pull_requests: type: array - items: *82 + items: *84 nullable: true app: title: GitHub app @@ -60767,9 +61013,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - repository: *153 + properties: *74 + required: *75 + repository: *156 created_at: type: string format: date-time @@ -60778,12 +61024,12 @@ paths: type: string format: date-time nullable: true - head_commit: &758 + head_commit: &761 title: Simple Commit description: A commit. type: object - properties: *413 - required: *414 + properties: *416 + required: *417 latest_check_runs_count: type: integer check_runs_url: @@ -60811,7 +61057,7 @@ paths: - check_runs_url - pull_requests examples: - default: &416 + default: &419 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61102,9 +61348,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *415 + schema: *418 examples: - default: *416 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61123,8 +61369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -61185,7 +61431,7 @@ paths: required: - app_id - setting - repository: *153 + repository: *156 examples: default: value: @@ -61433,9 +61679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *332 - - *333 - - &417 + - *335 + - *336 + - &420 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61447,9 +61693,9 @@ paths: description: Response content: application/json: - schema: *415 + schema: *418 examples: - default: *416 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61472,17 +61718,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *332 - - *333 - - *417 - - &472 + - *335 + - *336 + - *420 + - &475 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &473 + - &476 name: status description: Returns check runs with the specified `status`. in: query @@ -61521,9 +61767,9 @@ paths: type: integer check_runs: type: array - items: *410 + items: *413 examples: - default: &474 + default: &477 value: total_count: 1 check_runs: @@ -61605,7 +61851,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61625,15 +61871,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *332 - - *333 - - *417 + - *335 + - *336 + - *420 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -61660,30 +61906,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *332 - - *333 - - *418 - - *419 + - *335 + - *336 + - *421 + - *422 - *19 - *17 - - &436 + - &439 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: *420 - - &437 + schema: *423 + - &440 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *53 - - *45 - - *46 + - *55 + - *47 + - *48 - name: sort description: The property by which to sort the results. in: query @@ -61699,13 +61945,13 @@ paths: be returned. in: query required: false - schema: *421 + schema: *424 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *422 + schema: *425 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -61724,14 +61970,14 @@ paths: items: type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: *423 - state: *180 - fixed_at: *176 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: *426 + state: *183 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -61739,12 +61985,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: *424 - dismissed_comment: *425 - rule: *426 - tool: *427 - most_recent_instance: *428 + dismissed_at: *180 + dismissed_reason: *427 + dismissed_comment: *428 + rule: *429 + tool: *430 + most_recent_instance: *431 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -61870,14 +62116,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &429 + '403': &432 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61897,9 +62143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *332 - - *333 - - &430 + - *335 + - *336 + - &433 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -61907,23 +62153,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *171 + schema: *174 responses: '200': description: Response content: application/json: - schema: &431 + schema: &434 type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: *423 - state: *180 - fixed_at: *176 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: *426 + state: *183 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -61931,9 +62177,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_at: *180 + dismissed_reason: *427 + dismissed_comment: *428 rule: type: object properties: @@ -61987,8 +62233,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *427 - most_recent_instance: *428 + tool: *430 + most_recent_instance: *431 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -62087,9 +62333,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62107,9 +62353,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: true content: @@ -62124,8 +62370,8 @@ paths: enum: - open - dismissed - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_reason: *427 + dismissed_comment: *428 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -62153,7 +62399,7 @@ paths: description: Response content: application/json: - schema: *431 + schema: *434 examples: default: value: @@ -62229,14 +62475,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &435 + '403': &438 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62256,15 +62502,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: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 responses: '200': description: Response content: application/json: - schema: &432 + schema: &435 type: object properties: status: @@ -62290,13 +62536,13 @@ paths: - description - started_at examples: - default: &433 + default: &436 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &434 + '400': &437 description: Bad Request content: application/json: @@ -62307,9 +62553,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62332,29 +62578,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: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 responses: '200': description: OK content: application/json: - schema: *432 + schema: *435 examples: - default: *433 + default: *436 '202': description: Accepted content: application/json: - schema: *432 + schema: *435 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *434 + '400': *437 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62364,7 +62610,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62386,9 +62632,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: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: false content: @@ -62433,12 +62679,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *434 - '403': *435 + '400': *437 + '403': *438 '404': *6 '422': description: Unprocessable Entity - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62458,13 +62704,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 - *19 - *17 - - *436 - - *437 + - *439 + - *440 responses: '200': description: Response @@ -62475,10 +62721,10 @@ paths: items: type: object properties: - ref: *420 - analysis_key: *438 - environment: *439 - category: *440 + ref: *423 + analysis_key: *441 + environment: *442 + category: *443 state: type: string description: State of a code scanning alert instance. @@ -62493,7 +62739,7 @@ paths: properties: text: type: string - location: *441 + location: *444 html_url: type: string classifications: @@ -62501,7 +62747,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: *442 + items: *445 examples: default: value: @@ -62538,9 +62784,9 @@ paths: end_column: 50 classifications: - source - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62572,29 +62818,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *332 - - *333 - - *418 - - *419 + - *335 + - *336 + - *421 + - *422 - *19 - *17 - - *437 + - *440 - 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: *420 + schema: *423 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &443 + schema: &446 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *53 + - *55 - name: sort description: The property by which to sort the results. in: query @@ -62611,23 +62857,23 @@ paths: application/json: schema: type: array - items: &444 + items: &447 type: object properties: - ref: *420 - commit_sha: &452 + ref: *423 + commit_sha: &455 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *438 + analysis_key: *441 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *440 + category: *443 error: type: string example: error reading field xyz @@ -62651,8 +62897,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *443 - tool: *427 + sarif_id: *446 + tool: *430 deletable: type: boolean warning: @@ -62713,9 +62959,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62749,8 +62995,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: - - *332 - - *333 + - *335 + - *336 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62763,7 +63009,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: response: summary: application/json response @@ -62817,14 +63063,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *429 + '403': *432 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62904,8 +63150,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: - - *332 - - *333 + - *335 + - *336 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62958,9 +63204,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *435 + '403': *438 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62980,8 +63226,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -62989,7 +63235,7 @@ paths: application/json: schema: type: array - items: &445 + items: &448 title: CodeQL Database description: A CodeQL database. type: object @@ -63100,9 +63346,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63129,8 +63375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: language in: path description: The language of the CodeQL database. @@ -63142,7 +63388,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: default: value: @@ -63174,11 +63420,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &481 + '302': &484 description: Found - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63198,8 +63444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *332 - - *333 + - *335 + - *336 - name: language in: path description: The language of the CodeQL database. @@ -63209,9 +63455,9 @@ paths: responses: '204': description: Response - '403': *435 + '403': *438 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63237,8 +63483,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -63247,7 +63493,7 @@ paths: type: object additionalProperties: false properties: - language: &446 + language: &449 type: string description: The language targeted by the CodeQL query enum: @@ -63327,7 +63573,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &450 + schema: &453 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63335,9 +63581,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *58 + controller_repo: *60 actor: *4 - query_language: *446 + query_language: *449 query_pack_url: type: string description: The download url for the query pack. @@ -63384,7 +63630,7 @@ paths: items: type: object properties: - repository: &447 + repository: &450 title: Repository Identifier description: Repository Identifier type: object @@ -63420,7 +63666,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &451 + analysis_status: &454 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63452,7 +63698,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &448 + access_mismatch_repos: &451 type: object properties: repository_count: @@ -63466,7 +63712,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: *447 + items: *450 required: - repository_count - repositories @@ -63488,8 +63734,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *448 - over_limit_repos: *448 + no_codeql_db_repos: *451 + over_limit_repos: *451 required: - access_mismatch_repos - not_found_repos @@ -63505,7 +63751,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &449 + value: &452 summary: Default response value: id: 1 @@ -63651,17 +63897,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *449 + value: *452 repository_lists: summary: Response for a successful variant analysis submission - value: *449 + value: *452 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63682,8 +63928,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: - - *332 - - *333 + - *335 + - *336 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -63695,11 +63941,11 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: - default: *449 + default: *452 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63720,7 +63966,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: - - *332 + - *335 - name: repo in: path description: The name of the controller repository. @@ -63754,8 +64000,8 @@ paths: schema: type: object properties: - repository: *58 - analysis_status: *451 + repository: *60 + analysis_status: *454 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -63859,7 +64105,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63880,8 +64126,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -63966,9 +64212,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63987,8 +64233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -64055,7 +64301,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -64080,7 +64326,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *435 + '403': *438 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64094,7 +64340,7 @@ paths: content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64151,8 +64397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -64160,7 +64406,7 @@ paths: schema: type: object properties: - commit_sha: *452 + commit_sha: *455 ref: type: string description: |- @@ -64218,7 +64464,7 @@ paths: schema: type: object properties: - id: *443 + id: *446 url: type: string description: The REST API URL for checking the status of the upload. @@ -64232,11 +64478,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *435 + '403': *438 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64255,8 +64501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *332 - - *333 + - *335 + - *336 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64302,10 +64548,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *429 + '403': *432 '404': description: Not Found if the sarif id does not match any upload - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64327,8 +64573,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -64352,7 +64598,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *47 + configuration: *49 examples: default: value: @@ -64384,7 +64630,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *184 + '204': *187 '304': *37 '403': *29 '404': *6 @@ -64409,8 +64655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *332 - - *333 + - *335 + - *336 - 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 @@ -64530,8 +64776,8 @@ paths: parameters: - *17 - *19 - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -64547,7 +64793,7 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: default: value: @@ -64823,7 +65069,7 @@ paths: start_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop recent_folders: [] - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -64845,8 +65091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -64909,22 +65155,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -64948,8 +65194,8 @@ paths: parameters: - *17 - *19 - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -64989,7 +65235,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *113 + '500': *115 '400': *14 '401': *25 '403': *29 @@ -65013,8 +65259,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65049,14 +65295,14 @@ paths: type: integer machines: type: array - items: &673 + items: &676 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *454 - required: *455 + properties: *457 + required: *458 examples: - default: &674 + default: &677 value: total_count: 2 machines: @@ -65073,7 +65319,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -65096,8 +65342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65181,8 +65427,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: - - *332 - - *333 + - *335 + - *336 - 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 @@ -65227,7 +65473,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65248,8 +65494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -65267,7 +65513,7 @@ paths: type: integer secrets: type: array - items: &459 + items: &462 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65287,9 +65533,9 @@ paths: - created_at - updated_at examples: - default: *456 + default: *459 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65310,16 +65556,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *457 + schema: *460 examples: - default: *458 + default: *461 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65339,17 +65585,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: *460 + default: *463 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65369,9 +65615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -65399,7 +65645,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -65423,9 +65669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -65453,8 +65699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *332 - - *333 + - *335 + - *336 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65496,7 +65742,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &461 + properties: &464 login: type: string example: octocat @@ -65589,7 +65835,7 @@ paths: user_view_type: type: string example: public - required: &462 + required: &465 - avatar_url - events_url - followers_url @@ -65638,7 +65884,7 @@ paths: admin: false role_name: write headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -65663,9 +65909,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '204': description: Response if user is a collaborator @@ -65711,9 +65957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 requestBody: required: false content: @@ -65739,7 +65985,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &531 + schema: &534 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -65750,7 +65996,7 @@ paths: example: 42 type: integer format: int64 - repository: *153 + repository: *156 invitee: title: Simple User description: A GitHub user. @@ -65928,7 +66174,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *122 + schema: *124 '403': *29 x-github: triggersNotification: true @@ -65968,9 +66214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '204': description: No Content when collaborator was removed from the repository. @@ -66001,9 +66247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '200': description: if user has admin permissions @@ -66023,8 +66269,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *461 - required: *462 + properties: *464 + required: *465 nullable: true required: - permission @@ -66079,8 +66325,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -66090,7 +66336,7 @@ paths: application/json: schema: type: array - items: &463 + items: &466 title: Commit Comment description: Commit Comment type: object @@ -66131,8 +66377,8 @@ paths: updated_at: type: string format: date-time - author_association: *74 - reactions: *75 + author_association: *76 + reactions: *77 required: - url - html_url @@ -66148,7 +66394,7 @@ paths: - created_at - updated_at examples: - default: &468 + default: &471 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66182,7 +66428,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66207,17 +66453,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *463 + schema: *466 examples: - default: &469 + default: &472 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66274,9 +66520,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -66298,7 +66544,7 @@ paths: description: Response content: application/json: - schema: *463 + schema: *466 examples: default: value: @@ -66349,9 +66595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -66372,9 +66618,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - 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 commit comment. @@ -66400,7 +66646,7 @@ paths: application/json: schema: type: array - items: &464 + items: &467 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -66443,7 +66689,7 @@ paths: - content - created_at examples: - default: &535 + default: &538 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -66469,7 +66715,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -66488,9 +66734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -66522,9 +66768,9 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: &465 + default: &468 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -66553,9 +66799,9 @@ paths: description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -66577,10 +66823,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *332 - - *333 - - *93 - - &536 + - *335 + - *336 + - *95 + - &539 name: reaction_id description: The unique identifier of the reaction. in: path @@ -66635,8 +66881,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *332 - - *333 + - *335 + - *336 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -66692,9 +66938,9 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: &586 + default: &589 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66764,11 +67010,11 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *59 - '500': *113 + Link: *61 + '500': *115 '400': *14 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66788,9 +67034,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *332 - - *333 - - &467 + - *335 + - *336 + - &470 name: commit_sha description: The SHA of the commit. in: path @@ -66837,7 +67083,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66862,9 +67108,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 - *17 - *19 responses: @@ -66874,11 +67120,11 @@ paths: application/json: schema: type: array - items: *463 + items: *466 examples: - default: *468 + default: *471 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66904,9 +67150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 requestBody: required: true content: @@ -66941,9 +67187,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *466 examples: - default: *469 + default: *472 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66971,9 +67217,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 - *17 - *19 responses: @@ -66983,9 +67229,9 @@ paths: application/json: schema: type: array - items: *470 + items: *473 examples: - default: &578 + default: &581 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67464,8 +67710,8 @@ paths: auto_merge: draft: false headers: - Link: *59 - '409': *52 + Link: *61 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67522,11 +67768,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 - - &471 + - &474 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)" @@ -67541,9 +67787,9 @@ paths: description: Response content: application/json: - schema: *466 + schema: *469 examples: - default: &565 + default: &568 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67629,9 +67875,9 @@ paths: ..... '422': *15 '404': *6 - '500': *113 - '503': *114 - '409': *52 + '500': *115 + '503': *116 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67656,11 +67902,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *332 - - *333 - - *471 - - *472 - - *473 + - *335 + - *336 + - *474 + - *475 + - *476 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -67694,11 +67940,11 @@ paths: type: integer check_runs: type: array - items: *410 + items: *413 examples: - default: *474 + default: *477 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67721,9 +67967,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -67731,7 +67977,7 @@ paths: schema: type: integer example: 1 - - *472 + - *475 - *17 - *19 responses: @@ -67749,7 +67995,7 @@ paths: type: integer check_suites: type: array - items: *415 + items: *418 examples: default: value: @@ -67924,7 +68170,7 @@ paths: latest_check_runs_count: 1 check_runs_url: https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67949,9 +68195,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - *17 - *19 responses: @@ -68018,7 +68264,7 @@ paths: type: string total_count: type: integer - repository: *153 + repository: *156 commit_url: type: string format: uri @@ -68149,9 +68395,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - *17 - *19 responses: @@ -68161,7 +68407,7 @@ paths: application/json: schema: type: array - items: &651 + items: &654 title: Status description: The status of a commit. type: object @@ -68241,8 +68487,8 @@ paths: type: User site_admin: false headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68270,8 +68516,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -68300,20 +68546,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *475 - required: *476 + properties: *478 + required: *479 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &477 + properties: &480 url: type: string format: uri html_url: type: string format: uri - required: &478 + required: &481 - url - html_url nullable: true @@ -68321,32 +68567,32 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true contributing: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true readme: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true issue_template: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true pull_request_template: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true required: - code_of_conduct @@ -68473,8 +68719,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 - name: basehead @@ -68517,8 +68763,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *466 - merge_base_commit: *466 + base_commit: *469 + merge_base_commit: *469 status: type: string enum: @@ -68538,10 +68784,10 @@ paths: example: 6 commits: type: array - items: *466 + items: *469 files: type: array - items: *479 + items: *482 required: - url - html_url @@ -68784,8 +69030,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68827,8 +69073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -68988,7 +69234,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &480 + response-if-content-is-a-file-github-object: &483 summary: Response if content is a file value: type: file @@ -69120,7 +69366,7 @@ paths: - size - type - url - - &591 + - &594 title: Content File description: Content File type: object @@ -69321,7 +69567,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *480 + response-if-content-is-a-file: *483 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -69390,7 +69636,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *481 + '302': *484 '304': *37 x-github: githubCloudOnly: false @@ -69413,8 +69659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -69507,7 +69753,7 @@ paths: description: Response content: application/json: - schema: &482 + schema: &485 title: File Commit description: File Commit type: object @@ -69659,7 +69905,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: example-for-creating-a-file: value: @@ -69713,7 +69959,7 @@ paths: schema: oneOf: - *3 - - &513 + - &516 description: Repository rule violation was detected type: object properties: @@ -69734,7 +69980,7 @@ paths: items: type: object properties: - placeholder_id: &643 + placeholder_id: &646 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -69766,8 +70012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -69828,7 +70074,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: default: value: @@ -69862,8 +70108,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *52 - '503': *114 + '409': *54 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69883,8 +70129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *332 - - *333 + - *335 + - *336 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -69984,7 +70230,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *59 + Link: *61 '204': description: Response if repository is empty '403': *29 @@ -70007,26 +70253,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *332 - - *333 - - *191 - - *192 - - *193 + - *335 + - *336 - *194 + - *195 + - *196 + - *197 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *195 - - *483 - - *196 - - *197 - *198 - - *53 - - *45 - - *46 + - *486 + - *199 + - *200 + - *201 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -70035,11 +70281,11 @@ paths: application/json: schema: type: array - items: &487 + items: &490 type: object description: A Dependabot alert. properties: - number: *171 + number: *174 state: type: string description: The state of the Dependabot alert. @@ -70054,7 +70300,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *54 + package: *56 manifest_path: type: string description: The full path to the dependency manifest file, @@ -70081,13 +70327,13 @@ paths: - unknown - direct - transitive - security_advisory: *484 - security_vulnerability: *57 - url: *174 - html_url: *175 - created_at: *172 - updated_at: *173 - dismissed_at: *177 + security_advisory: *487 + security_vulnerability: *59 + url: *177 + html_url: *178 + created_at: *175 + updated_at: *176 + dismissed_at: *180 dismissed_by: title: Simple User description: A GitHub user. @@ -70111,9 +70357,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *176 - auto_dismissed_at: *485 - dismissal_request: *486 + fixed_at: *179 + auto_dismissed_at: *488 + dismissal_request: *489 assignees: type: array description: The users assigned to this alert. @@ -70368,9 +70614,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *332 - - *333 - - &488 + - *335 + - *336 + - &491 name: alert_number in: path description: |- @@ -70379,13 +70625,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *171 + schema: *174 responses: '200': description: Response content: application/json: - schema: *487 + schema: *490 examples: default: value: @@ -70517,9 +70763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *332 - - *333 - - *488 + - *335 + - *336 + - *491 requestBody: required: true content: @@ -70575,7 +70821,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *490 examples: default: value: @@ -70682,7 +70928,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *7 x-github: githubCloudOnly: false @@ -70705,8 +70951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -70724,7 +70970,7 @@ paths: type: integer secrets: type: array - items: &491 + items: &494 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -70755,7 +71001,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70777,16 +71023,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *489 + schema: *492 examples: - default: *490 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70806,15 +71052,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *491 + schema: *494 examples: default: value: @@ -70840,9 +71086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -70870,7 +71116,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -70894,9 +71140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -70918,8 +71164,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: - - *332 - - *333 + - *335 + - *336 - 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 @@ -71055,7 +71301,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *59 + Link: *61 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -71079,8 +71325,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -71296,7 +71542,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *59 + Link: *61 '404': *6 '403': *29 x-github: @@ -71319,8 +71565,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: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -71395,7 +71641,7 @@ paths: - version - url additionalProperties: false - metadata: &492 + metadata: &495 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71428,7 +71674,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *492 + metadata: *495 resolved: type: object description: A collection of resolved package dependencies. @@ -71441,7 +71687,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *492 + metadata: *495 relationship: type: string description: A notation of whether a dependency is requested @@ -71570,8 +71816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *332 - - *333 + - *335 + - *336 - name: sha description: The SHA recorded at creation time. in: query @@ -71611,11 +71857,11 @@ paths: application/json: schema: type: array - items: *493 + items: *496 examples: - default: *494 + default: *497 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71679,8 +71925,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -71761,7 +72007,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *496 examples: simple-example: summary: Simple example @@ -71834,9 +72080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *332 - - *333 - - &495 + - *335 + - *336 + - &498 name: deployment_id description: deployment_id parameter in: path @@ -71848,7 +72094,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *496 examples: default: value: @@ -71913,9 +72159,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 responses: '204': description: Response @@ -71937,9 +72183,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 - *17 - *19 responses: @@ -71949,7 +72195,7 @@ paths: application/json: schema: type: array - items: &496 + items: &499 title: Deployment Status description: The status of a deployment. type: object @@ -72040,8 +72286,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -72090,7 +72336,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -72110,9 +72356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 requestBody: required: true content: @@ -72187,9 +72433,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: &497 + default: &500 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72245,9 +72491,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 - name: status_id in: path required: true @@ -72258,9 +72504,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: *497 + default: *500 '404': *6 x-github: githubCloudOnly: false @@ -72285,8 +72531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -72343,8 +72589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -72361,7 +72607,7 @@ paths: type: integer environments: type: array - items: &499 + items: &502 title: Environment description: Details of a deployment environment type: object @@ -72413,7 +72659,7 @@ paths: type: type: string example: wait_timer - wait_timer: &501 + wait_timer: &504 type: integer example: 30 description: The amount of time to delay a job after @@ -72450,11 +72696,11 @@ paths: items: type: object properties: - type: *498 + type: *501 reviewer: anyOf: - *4 - - *190 + - *193 required: - id - node_id @@ -72474,7 +72720,7 @@ paths: - id - node_id - type - deployment_branch_policy: &502 + deployment_branch_policy: &505 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -72590,9 +72836,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *332 - - *333 - - &500 + - *335 + - *336 + - &503 name: environment_name in: path required: true @@ -72605,9 +72851,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: &503 + default: &506 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -72691,9 +72937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: false content: @@ -72702,7 +72948,7 @@ paths: type: object nullable: true properties: - wait_timer: *501 + wait_timer: *504 prevent_self_review: type: boolean example: false @@ -72719,13 +72965,13 @@ paths: items: type: object properties: - type: *498 + type: *501 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *502 + deployment_branch_policy: *505 additionalProperties: false examples: default: @@ -72745,9 +72991,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: *503 + default: *506 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -72771,9 +73017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 responses: '204': description: Default response @@ -72798,9 +73044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 - *17 - *19 responses: @@ -72818,7 +73064,7 @@ paths: example: 2 branch_policies: type: array - items: &504 + items: &507 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -72875,9 +73121,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: true content: @@ -72923,9 +73169,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - example-wildcard: &505 + example-wildcard: &508 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -72967,10 +73213,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - &506 + - *335 + - *336 + - *503 + - &509 name: branch_policy_id in: path required: true @@ -72982,9 +73228,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73003,10 +73249,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - *506 + - *335 + - *336 + - *503 + - *509 requestBody: required: true content: @@ -73034,9 +73280,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73055,10 +73301,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - *506 + - *335 + - *336 + - *503 + - *509 responses: '204': description: Response @@ -73083,9 +73329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 responses: '200': description: List of deployment protection rules @@ -73101,7 +73347,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &507 + items: &510 title: Deployment protection rule description: Deployment protection rule type: object @@ -73120,7 +73366,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &508 + app: &511 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73219,9 +73465,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: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 requestBody: content: application/json: @@ -73242,9 +73488,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *507 + schema: *510 examples: - default: &509 + default: &512 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73279,9 +73525,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: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 - *19 - *17 responses: @@ -73300,7 +73546,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *508 + items: *511 examples: default: value: @@ -73335,10 +73581,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *332 - - *333 - - *500 - - &510 + - *335 + - *336 + - *503 + - &513 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73350,9 +73596,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *509 + default: *512 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73373,10 +73619,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *500 - - *333 - - *332 - - *510 + - *503 + - *336 + - *335 + - *513 responses: '204': description: Response @@ -73402,9 +73648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 - *17 - *19 responses: @@ -73422,11 +73668,11 @@ paths: type: integer secrets: type: array - items: *377 + items: *380 examples: - default: *378 + default: *381 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73449,17 +73695,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: - default: *380 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73481,18 +73727,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 responses: '200': description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *511 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73514,10 +73760,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 requestBody: required: true content: @@ -73548,7 +73794,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -73574,10 +73820,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 responses: '204': description: Default response @@ -73602,10 +73848,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *332 - - *333 - - *500 - - *348 + - *335 + - *336 + - *503 + - *351 - *19 responses: '200': @@ -73622,11 +73868,11 @@ paths: type: integer variables: type: array - items: *381 + items: *384 examples: - default: *382 + default: *385 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73647,9 +73893,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: true content: @@ -73676,7 +73922,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -73701,18 +73947,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *332 - - *333 - - *500 - - *164 + - *335 + - *336 + - *503 + - *167 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: *512 + default: *515 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73733,10 +73979,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *332 - - *333 - - *164 - - *500 + - *335 + - *336 + - *167 + - *503 requestBody: required: true content: @@ -73778,10 +74024,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *332 - - *333 - - *164 - - *500 + - *335 + - *336 + - *167 + - *503 responses: '204': description: Response @@ -73803,8 +74049,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -73814,7 +74060,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: 200-response: value: @@ -73872,8 +74118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *332 - - *333 + - *335 + - *336 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -73895,7 +74141,7 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: default: value: @@ -74008,7 +74254,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *59 + Link: *61 '400': *14 x-github: githubCloudOnly: false @@ -74032,8 +74278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -74065,9 +74311,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 '400': *14 '422': *15 '403': *29 @@ -74088,8 +74334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74140,7 +74386,7 @@ paths: schema: type: string '404': *6 - '409': *52 + '409': *54 '403': *29 '422': description: Validation failed @@ -74148,8 +74394,8 @@ paths: application/json: schema: oneOf: - - *122 - - *513 + - *124 + - *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74174,8 +74420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *332 - - *333 + - *335 + - *336 - name: file_sha in: path required: true @@ -74226,7 +74472,7 @@ paths: '404': *6 '422': *15 '403': *29 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74274,8 +74520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74384,7 +74630,7 @@ paths: description: Response content: application/json: - schema: &514 + schema: &517 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -74548,7 +74794,7 @@ paths: type: string '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74598,15 +74844,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 responses: '200': description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -74637,7 +74883,7 @@ paths: payload: verified_at: '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74662,9 +74908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *332 - - *333 - - &515 + - *335 + - *336 + - &518 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. @@ -74681,7 +74927,7 @@ paths: application/json: schema: type: array - items: &516 + items: &519 title: Git Reference description: Git references within a repository type: object @@ -74734,8 +74980,8 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *59 - '409': *52 + Link: *61 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74756,17 +75002,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 responses: '200': description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: &517 + default: &520 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -74776,7 +75022,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74795,8 +75041,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74825,16 +75071,16 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74853,9 +75099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 requestBody: required: true content: @@ -74884,11 +75130,11 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74904,16 +75150,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74961,8 +75207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -75029,7 +75275,7 @@ paths: description: Response content: application/json: - schema: &519 + schema: &522 title: Git Tag description: Metadata for a Git tag type: object @@ -75080,7 +75326,7 @@ paths: - sha - type - url - verification: *518 + verification: *521 required: - sha - url @@ -75090,7 +75336,7 @@ paths: - tag - message examples: - default: &520 + default: &523 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75117,7 +75363,7 @@ paths: schema: type: string '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75163,8 +75409,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *332 - - *333 + - *335 + - *336 - name: tag_sha in: path required: true @@ -75175,11 +75421,11 @@ paths: description: Response content: application/json: - schema: *519 + schema: *522 examples: - default: *520 + default: *523 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75201,8 +75447,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -75275,7 +75521,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &524 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75348,7 +75594,7 @@ paths: '422': *15 '404': *6 '403': *29 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75371,8 +75617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *332 - - *333 + - *335 + - *336 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -75395,7 +75641,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *524 examples: default-response: summary: Default response @@ -75436,7 +75682,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75454,8 +75700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -75465,7 +75711,7 @@ paths: application/json: schema: type: array - items: &522 + items: &525 title: Webhook description: Webhooks for repositories. type: object @@ -75519,7 +75765,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &766 + last_response: &769 title: Hook Response type: object properties: @@ -75574,7 +75820,7 @@ paths: status: unused message: headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -75593,8 +75839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -75646,9 +75892,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: &523 + default: &526 value: type: Repository id: 12345678 @@ -75696,17 +75942,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '200': description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: *523 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -75726,9 +75972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 requestBody: required: true content: @@ -75773,9 +76019,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: *523 + default: *526 '422': *15 '404': *6 x-github: @@ -75796,9 +76042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -75822,9 +76068,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '200': description: Response @@ -75851,9 +76097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 requestBody: required: false content: @@ -75897,11 +76143,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *17 - - *207 + - *210 responses: '200': description: Response @@ -75909,9 +76155,9 @@ paths: application/json: schema: type: array - items: *208 + items: *211 examples: - default: *209 + default: *212 '400': *14 '422': *15 x-github: @@ -75930,18 +76176,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *16 responses: '200': description: Response content: application/json: - schema: *210 + schema: *213 examples: - default: *211 + default: *214 '400': *14 '422': *15 x-github: @@ -75960,9 +76206,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *16 responses: '202': *39 @@ -75985,9 +76231,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -76012,9 +76258,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -76037,8 +76283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response if immutable releases are enabled @@ -76084,11 +76330,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 - '409': *52 + '204': *187 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76105,11 +76351,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 - '409': *52 + '204': *187 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76163,14 +76409,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &524 + schema: &527 title: Import description: A repository import from an external source. type: object @@ -76269,7 +76515,7 @@ paths: - html_url - authors_url examples: - default: &527 + default: &530 value: vcs: subversion use_lfs: true @@ -76285,7 +76531,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': &525 + '503': &528 description: Unavailable due to service under maintenance. content: application/json: @@ -76314,8 +76560,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -76363,7 +76609,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: default: value: @@ -76388,7 +76634,7 @@ paths: type: string '422': *15 '404': *6 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76416,8 +76662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -76466,7 +76712,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: example-1: summary: Example 1 @@ -76514,7 +76760,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': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76537,12 +76783,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76568,9 +76814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *332 - - *333 - - &695 + - *335 + - *336 + - &698 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76584,7 +76830,7 @@ paths: application/json: schema: type: array - items: &526 + items: &529 title: Porter Author description: Porter Author type: object @@ -76638,7 +76884,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': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76663,8 +76909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *332 - - *333 + - *335 + - *336 - name: author_id in: path required: true @@ -76694,7 +76940,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: default: value: @@ -76707,7 +76953,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76731,8 +76977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76773,7 +77019,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76801,8 +77047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -76829,11 +77075,11 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: *527 + default: *530 '422': *15 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76856,8 +77102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76865,8 +77111,8 @@ paths: application/json: schema: *22 examples: - default: *528 - '301': *336 + default: *531 + '301': *339 '404': *6 x-github: githubCloudOnly: false @@ -76886,8 +77132,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76895,12 +77141,12 @@ paths: application/json: schema: anyOf: - - *224 + - *227 - type: object properties: {} additionalProperties: false examples: - default: &530 + default: &533 value: limit: collaborators_only origin: repository @@ -76925,13 +77171,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *529 + schema: *532 examples: default: summary: Example request body @@ -76943,9 +77189,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: *530 + default: *533 '409': description: Response x-github: @@ -76967,8 +77213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -76991,8 +77237,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -77002,9 +77248,9 @@ paths: application/json: schema: type: array - items: *531 + items: *534 examples: - default: &688 + default: &691 value: - id: 1 repository: @@ -77118,7 +77364,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77135,9 +77381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *332 - - *333 - - *228 + - *335 + - *336 + - *231 requestBody: required: false content: @@ -77166,7 +77412,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: default: value: @@ -77297,9 +77543,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *332 - - *333 - - *228 + - *335 + - *336 + - *231 responses: '204': description: Response @@ -77330,8 +77576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *332 - - *333 + - *335 + - *336 - 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 @@ -77379,7 +77625,7 @@ paths: required: false schema: type: string - - *235 + - *238 - name: sort description: What to sort results by. in: query @@ -77391,8 +77637,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -77402,9 +77648,9 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: &543 + default: &546 value: - id: 1 node_id: MDU6SXNzdWUx @@ -77552,8 +77798,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '422': *15 '404': *6 x-github: @@ -77582,8 +77828,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -77665,9 +77911,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: &540 + default: &543 value: id: 1 node_id: MDU6SXNzdWUx @@ -77822,9 +78068,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *114 + '503': *116 '404': *6 - '410': *532 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -77852,9 +78098,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *332 - - *333 - - *101 + - *335 + - *336 + - *103 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -77864,7 +78110,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -77874,9 +78120,9 @@ paths: application/json: schema: type: array - items: *533 + items: *536 examples: - default: &542 + default: &545 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -77907,7 +78153,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '422': *15 '404': *6 x-github: @@ -77934,17 +78180,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: &534 + default: &537 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -77999,9 +78245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -78023,9 +78269,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: *534 + default: *537 '422': *15 x-github: githubCloudOnly: false @@ -78043,9 +78289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -78073,15 +78319,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *533 + schema: *536 examples: default: value: @@ -78137,7 +78383,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -78154,17 +78400,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *532 - '503': *114 + '410': *535 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78181,9 +78427,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - 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 comment. @@ -78209,11 +78455,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -78232,9 +78478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -78266,16 +78512,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -78297,10 +78543,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *332 - - *333 - - *93 - - *536 + - *335 + - *336 + - *95 + - *539 responses: '204': description: Response @@ -78320,8 +78566,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -78331,7 +78577,7 @@ paths: application/json: schema: type: array - items: &539 + items: &542 title: Issue Event description: Issue Event type: object @@ -78374,8 +78620,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *537 - required: *538 + properties: *540 + required: *541 nullable: true label: title: Issue Event Label @@ -78419,7 +78665,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *190 + requested_team: *193 dismissed_review: title: Issue Event Dismissed Review type: object @@ -78484,7 +78730,7 @@ paths: required: - from - to - author_association: *74 + author_association: *76 lock_reason: type: string nullable: true @@ -78497,8 +78743,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -78665,7 +78911,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -78683,8 +78929,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *332 - - *333 + - *335 + - *336 - name: event_id in: path required: true @@ -78695,7 +78941,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *542 examples: default: value: @@ -78888,7 +79134,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *532 + '410': *535 '403': *29 x-github: githubCloudOnly: false @@ -78922,9 +79168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *332 - - *333 - - &541 + - *335 + - *336 + - &544 name: issue_number description: The number that identifies the issue. in: path @@ -78936,11 +79182,11 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: default: summary: Issue - value: *540 + value: *543 pinned_comment: summary: Issue with pinned comment value: @@ -79139,9 +79385,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 '304': *37 x-github: githubCloudOnly: false @@ -79166,9 +79412,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -79292,15 +79538,15 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 '422': *15 - '503': *114 + '503': *116 '403': *29 - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79318,9 +79564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -79346,9 +79592,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79364,9 +79610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: content: application/json: @@ -79391,9 +79637,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79415,9 +79661,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: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: assignee in: path required: true @@ -79457,10 +79703,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *332 - - *333 - - *541 - - *84 + - *335 + - *336 + - *544 + - *86 - *17 - *19 responses: @@ -79470,13 +79716,13 @@ paths: application/json: schema: type: array - items: *533 + items: *536 examples: - default: *542 + default: *545 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79505,9 +79751,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -79529,16 +79775,16 @@ paths: description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: *534 + default: *537 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -79566,9 +79812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79578,14 +79824,14 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79613,9 +79859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -79637,17 +79883,17 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *336 + '301': *339 '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -79678,9 +79924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -79692,15 +79938,15 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 - '301': *336 + default: *543 + '301': *339 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *532 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -79726,9 +79972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79738,14 +79984,14 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79762,9 +80008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79778,7 +80024,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &546 + - &549 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79809,8 +80055,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 label: type: object properties: @@ -79832,7 +80078,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &547 + - &550 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -79863,8 +80109,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 label: type: object properties: @@ -79952,8 +80198,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 assigner: *4 required: @@ -79968,7 +80214,7 @@ paths: - performed_via_github_app - assignee - assigner - - &548 + - &551 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -79999,8 +80245,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 milestone: type: object properties: @@ -80019,7 +80265,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &549 + - &552 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -80050,8 +80296,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 milestone: type: object properties: @@ -80070,7 +80316,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &550 + - &553 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -80101,8 +80347,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 rename: type: object properties: @@ -80124,7 +80370,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &551 + - &554 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -80155,10 +80401,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 review_requester: *4 - requested_team: *190 + requested_team: *193 requested_reviewer: *4 required: - review_requester @@ -80171,7 +80417,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &555 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -80202,10 +80448,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 review_requester: *4 - requested_team: *190 + requested_team: *193 requested_reviewer: *4 required: - review_requester @@ -80218,7 +80464,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &556 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80249,8 +80495,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 dismissed_review: type: object properties: @@ -80278,7 +80524,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &557 title: Locked Issue Event description: Locked Issue Event type: object @@ -80309,8 +80555,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 lock_reason: type: string example: '"off-topic"' @@ -80326,7 +80572,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &558 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -80357,8 +80603,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -80392,7 +80638,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &559 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -80423,8 +80669,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -80458,7 +80704,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &560 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80489,8 +80735,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -80524,7 +80770,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &561 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80614,8 +80860,8 @@ paths: name: label color: red headers: - Link: *59 - '410': *532 + Link: *61 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80632,9 +80878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -80644,9 +80890,9 @@ paths: application/json: schema: type: array - items: *544 + items: *547 examples: - default: &657 + default: &660 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -80669,10 +80915,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80689,9 +80935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -80701,9 +80947,9 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: &545 + default: &548 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80720,10 +80966,10 @@ paths: color: a2eeef default: false headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80739,9 +80985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80784,12 +81030,12 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 - '301': *336 + default: *548 + '301': *339 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -80806,9 +81052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80868,12 +81114,12 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 - '301': *336 + default: *548 + '301': *339 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -80890,15 +81136,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '204': description: Response - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80917,9 +81163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: name in: path required: true @@ -80932,7 +81178,7 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: default: value: @@ -80943,9 +81189,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80965,9 +81211,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80995,7 +81241,7 @@ paths: '204': description: Response '403': *29 - '410': *532 + '410': *535 '404': *6 '422': *15 x-github: @@ -81013,9 +81259,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '204': description: Response @@ -81045,20 +81291,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '200': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 - '301': *336 + default: *543 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81075,9 +81321,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - 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. @@ -81103,13 +81349,13 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81127,9 +81373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -81161,16 +81407,16 @@ paths: description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -81192,10 +81438,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *332 - - *333 - - *541 - - *536 + - *335 + - *336 + - *544 + - *539 responses: '204': description: Response @@ -81224,9 +81470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -81248,9 +81494,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -81283,9 +81529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -81295,13 +81541,13 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81329,9 +81575,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -81358,16 +81604,16 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -81387,9 +81633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -81420,13 +81666,13 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 '403': *29 '404': *6 '422': *7 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -81444,9 +81690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -81461,9 +81707,6 @@ paths: description: Timeline Event type: object anyOf: - - *546 - - *547 - - *548 - *549 - *550 - *551 @@ -81474,6 +81717,9 @@ paths: - *556 - *557 - *558 + - *559 + - *560 + - *561 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81516,7 +81762,7 @@ paths: issue_url: type: string format: uri - author_association: *74 + author_association: *76 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -81526,16 +81772,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - reactions: *75 + properties: *74 + required: *75 + reactions: *77 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true required: - event @@ -81567,7 +81813,7 @@ paths: properties: type: type: string - issue: *77 + issue: *79 required: - event - created_at @@ -81767,7 +82013,7 @@ paths: type: string body_text: type: string - author_association: *74 + author_association: *76 required: - event - id @@ -81790,7 +82036,7 @@ paths: type: string comments: type: array - items: &580 + items: &583 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81885,7 +82131,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *74 + author_association: *76 _links: type: object properties: @@ -81969,7 +82215,7 @@ paths: enum: - line - file - reactions: *75 + reactions: *77 body_html: type: string example: '"

comment body

"' @@ -82005,7 +82251,7 @@ paths: type: string comments: type: array - items: *463 + items: *466 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -82036,8 +82282,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 required: - id @@ -82080,8 +82326,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 required: - id @@ -82124,8 +82370,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 state_reason: type: string nullable: true @@ -82292,9 +82538,9 @@ paths: type: User site_admin: true headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82311,8 +82557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -82322,7 +82568,7 @@ paths: application/json: schema: type: array - items: &561 + items: &564 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82372,7 +82618,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82388,8 +82634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82425,9 +82671,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: &562 + default: &565 value: id: 1 key: ssh-rsa AAA... @@ -82461,9 +82707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *332 - - *333 - - &563 + - *335 + - *336 + - &566 name: key_id description: The unique identifier of the key. in: path @@ -82475,9 +82721,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '404': *6 x-github: githubCloudOnly: false @@ -82495,9 +82741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *332 - - *333 - - *563 + - *335 + - *336 + - *566 responses: '204': description: Response @@ -82517,8 +82763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -82528,11 +82774,11 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 + default: *548 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -82551,8 +82797,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82588,9 +82834,9 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: &564 + default: &567 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82622,8 +82868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82634,9 +82880,9 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: *564 + default: *567 '404': *6 x-github: githubCloudOnly: false @@ -82653,8 +82899,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82693,7 +82939,7 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: default: value: @@ -82719,8 +82965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82746,8 +82992,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -82786,9 +83032,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *332 - - *333 - - *436 + - *335 + - *336 + - *439 responses: '200': description: Response @@ -82850,8 +83096,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true required: - _links @@ -82933,8 +83179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82999,8 +83245,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83034,9 +83280,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *466 + schema: *469 examples: - default: *565 + default: *568 '204': description: Response when already merged '404': @@ -83061,8 +83307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *332 - - *333 + - *335 + - *336 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -83103,12 +83349,12 @@ paths: application/json: schema: type: array - items: &566 + items: &569 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 examples: default: value: @@ -83147,7 +83393,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -83164,8 +83410,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83205,9 +83451,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: &567 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83266,9 +83512,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *332 - - *333 - - &568 + - *335 + - *336 + - &571 name: milestone_number description: The number that identifies the milestone. in: path @@ -83280,9 +83526,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *567 + default: *570 '404': *6 x-github: githubCloudOnly: false @@ -83299,9 +83545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 requestBody: required: false content: @@ -83339,9 +83585,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *567 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83357,9 +83603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 responses: '204': description: Response @@ -83380,9 +83626,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 - *17 - *19 responses: @@ -83392,11 +83638,11 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 + default: *548 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83413,12 +83659,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *332 - - *333 - - *569 - - *570 - - *84 - - *571 + - *335 + - *336 + - *572 + - *573 + - *86 + - *574 - *17 - *19 responses: @@ -83428,11 +83674,11 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: *572 + default: *575 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -83454,8 +83700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -83513,14 +83759,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &573 + schema: &576 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83645,7 +83891,7 @@ paths: - custom_404 - public examples: - default: &574 + default: &577 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83686,8 +83932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83741,11 +83987,11 @@ paths: description: Response content: application/json: - schema: *573 + schema: *576 examples: - default: *574 + default: *577 '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83766,8 +84012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83845,7 +84091,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83866,14 +84112,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83893,8 +84139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -83904,7 +84150,7 @@ paths: application/json: schema: type: array - items: &575 + items: &578 title: Page Build description: Page Build type: object @@ -83979,7 +84225,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83998,8 +84244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response @@ -84044,16 +84290,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: &576 + default: &579 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -84101,8 +84347,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *332 - - *333 + - *335 + - *336 - name: build_id in: path required: true @@ -84113,9 +84359,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: *576 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84135,8 +84381,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -84241,9 +84487,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *332 - - *333 - - &577 + - *335 + - *336 + - &580 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84301,11 +84547,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *332 - - *333 - - *577 + - *335 + - *336 + - *580 responses: - '204': *184 + '204': *187 '404': *6 x-github: githubCloudOnly: false @@ -84330,8 +84576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -84562,7 +84808,7 @@ paths: description: Empty response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -84589,8 +84835,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Private vulnerability reporting status @@ -84627,10 +84873,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 + '204': *187 '422': *14 x-github: githubCloudOnly: false @@ -84649,10 +84895,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 + '204': *187 '422': *14 x-github: githubCloudOnly: false @@ -84672,8 +84918,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -84681,7 +84927,7 @@ paths: application/json: schema: type: array - items: *284 + items: *287 examples: default: value: @@ -84712,8 +84958,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: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -84725,7 +84971,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *284 + items: *287 required: - properties examples: @@ -84775,8 +85021,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *332 - - *333 + - *335 + - *336 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -84836,11 +85082,11 @@ paths: application/json: schema: type: array - items: *470 + items: *473 examples: - default: *578 + default: *581 headers: - Link: *59 + Link: *61 '304': *37 '422': *15 x-github: @@ -84870,8 +85116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -84936,7 +85182,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &585 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85047,8 +85293,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true active_lock_reason: type: string @@ -85091,7 +85337,7 @@ paths: items: *4 requested_teams: type: array - items: *321 + items: *324 head: type: object properties: @@ -85099,7 +85345,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: *4 @@ -85116,7 +85362,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: *4 @@ -85129,14 +85375,14 @@ paths: _links: type: object properties: - comments: *271 - commits: *271 - statuses: *271 - html: *271 - issue: *271 - review_comments: *271 - review_comment: *271 - self: *271 + comments: *274 + commits: *274 + statuses: *274 + html: *274 + issue: *274 + review_comments: *274 + review_comment: *274 + self: *274 required: - comments - commits @@ -85146,8 +85392,8 @@ paths: - review_comments - review_comment - self - author_association: *74 - auto_merge: *579 + author_association: *76 + auto_merge: *582 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -85239,7 +85485,7 @@ paths: - merged_by - review_comments examples: - default: &583 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -85766,8 +86012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: sort in: query required: false @@ -85786,7 +86032,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -85796,9 +86042,9 @@ paths: application/json: schema: type: array - items: *580 + items: *583 examples: - default: &585 + default: &588 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85850,7 +86096,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85875,17 +86121,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: &581 + default: &584 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85960,9 +86206,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -85984,9 +86230,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: *581 + default: *584 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86002,9 +86248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -86025,9 +86271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - 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 pull request review comment. @@ -86053,11 +86299,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -86076,9 +86322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -86110,16 +86356,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -86141,10 +86387,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *332 - - *333 - - *93 - - *536 + - *335 + - *336 + - *95 + - *539 responses: '204': description: Response @@ -86187,9 +86433,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *332 - - *333 - - &584 + - *335 + - *336 + - &587 name: pull_number description: The number that identifies the pull request. in: path @@ -86202,9 +86448,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *582 + schema: *585 examples: - default: *583 + default: *586 '304': *37 '404': *6 '406': @@ -86212,8 +86458,8 @@ paths: content: application/json: schema: *3 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86239,9 +86485,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -86283,9 +86529,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: - default: *583 + default: *586 '422': *15 '403': *29 x-github: @@ -86307,9 +86553,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -86369,21 +86615,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86409,10 +86655,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *332 - - *333 - - *584 - - *101 + - *335 + - *336 + - *587 + - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -86422,7 +86668,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -86432,11 +86678,11 @@ paths: application/json: schema: type: array - items: *580 + items: *583 examples: - default: *585 + default: *588 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86467,9 +86713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -86574,7 +86820,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: example-for-a-multi-line-comment: value: @@ -86662,10 +86908,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *332 - - *333 - - *584 - - *93 + - *335 + - *336 + - *587 + - *95 requestBody: required: true content: @@ -86687,7 +86933,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: default: value: @@ -86773,9 +87019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -86785,11 +87031,11 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: *586 + default: *589 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86817,9 +87063,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -86829,7 +87075,7 @@ paths: application/json: schema: type: array - items: *479 + items: *482 examples: default: value: @@ -86845,10 +87091,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *59 + Link: *61 '422': *15 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86867,9 +87113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 responses: '204': description: Response if pull request has been merged @@ -86892,9 +87138,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -87005,9 +87251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 responses: '200': description: Response @@ -87023,7 +87269,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 required: - users - teams @@ -87064,7 +87310,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87082,9 +87328,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -87121,7 +87367,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -87657,9 +87903,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -87693,7 +87939,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -88198,9 +88444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -88210,7 +88456,7 @@ paths: application/json: schema: type: array - items: &587 + items: &590 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88279,7 +88525,7 @@ paths: type: string body_text: type: string - author_association: *74 + author_association: *76 required: - id - node_id @@ -88328,7 +88574,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88361,9 +88607,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -88449,9 +88695,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: &589 + default: &592 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88514,10 +88760,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - &588 + - *335 + - *336 + - *587 + - &591 name: review_id description: The unique identifier of the review. in: path @@ -88529,9 +88775,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: &590 + default: &593 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88590,10 +88836,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -88616,7 +88862,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -88678,18 +88924,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 responses: '200': description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: *589 + default: *592 '422': *7 '404': *6 x-github: @@ -88716,10 +88962,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 - *17 - *19 responses: @@ -88798,13 +89044,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *74 + author_association: *76 _links: type: object properties: - self: *271 - html: *271 - pull_request: *271 + self: *274 + html: *274 + pull_request: *274 required: - self - html @@ -88813,7 +89059,7 @@ paths: type: string body_html: type: string - reactions: *75 + reactions: *77 side: description: The side of the first line of the range for a multi-line comment. @@ -88925,7 +89171,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -88954,10 +89200,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -88985,7 +89231,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -89048,10 +89294,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -89086,9 +89332,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: *590 + default: *593 '404': *6 '422': *7 '403': *29 @@ -89110,9 +89356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -89175,8 +89421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89189,9 +89435,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: &592 + default: &595 value: type: file encoding: base64 @@ -89233,8 +89479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *332 - - *333 + - *335 + - *336 - name: dir description: The alternate path to look for a README file in: path @@ -89254,9 +89500,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: *592 + default: *595 '404': *6 '422': *15 x-github: @@ -89278,8 +89524,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -89289,7 +89535,7 @@ paths: application/json: schema: type: array - items: *593 + items: *596 examples: default: value: @@ -89363,7 +89609,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -89383,8 +89629,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -89460,9 +89706,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: &597 + default: &600 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89567,9 +89813,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *332 - - *333 - - &595 + - *335 + - *336 + - &598 name: asset_id description: The unique identifier of the asset. in: path @@ -89581,9 +89827,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: &596 + default: &599 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 @@ -89618,7 +89864,7 @@ paths: type: User site_admin: false '404': *6 - '302': *481 + '302': *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89634,9 +89880,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *332 - - *333 - - *595 + - *335 + - *336 + - *598 requestBody: required: false content: @@ -89664,9 +89910,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *596 + default: *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89682,9 +89928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *332 - - *333 - - *595 + - *335 + - *336 + - *598 responses: '204': description: Response @@ -89708,8 +89954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -89794,16 +90040,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89820,8 +90066,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *332 - - *333 + - *335 + - *336 - name: tag description: tag parameter in: path @@ -89834,9 +90080,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 '404': *6 x-github: githubCloudOnly: false @@ -89858,9 +90104,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *332 - - *333 - - &598 + - *335 + - *336 + - &601 name: release_id description: The unique identifier of the release. in: path @@ -89874,9 +90120,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: *593 + schema: *596 examples: - default: *597 + default: *600 '401': description: Unauthorized x-github: @@ -89894,9 +90140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 requestBody: required: false content: @@ -89960,9 +90206,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 '404': description: Not Found if the discussion category name is invalid content: @@ -89983,9 +90229,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 responses: '204': description: Response @@ -90005,9 +90251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - *17 - *19 responses: @@ -90017,7 +90263,7 @@ paths: application/json: schema: type: array - items: *594 + items: *597 examples: default: value: @@ -90054,7 +90300,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90098,9 +90344,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: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - name: name in: query required: true @@ -90126,7 +90372,7 @@ paths: description: Response for successful upload content: application/json: - schema: *594 + schema: *597 examples: response-for-successful-upload: value: @@ -90181,9 +90427,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - 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. @@ -90207,11 +90453,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -90230,9 +90476,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 requestBody: required: true content: @@ -90262,16 +90508,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -90293,10 +90539,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *332 - - *333 - - *598 - - *536 + - *335 + - *336 + - *601 + - *539 responses: '204': description: Response @@ -90320,9 +90566,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 - *17 - *19 responses: @@ -90338,8 +90584,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *293 - - &599 + - *296 + - &602 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90358,69 +90604,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *294 - - *599 - - allOf: - - *295 - - *599 - - allOf: - - *296 - - *599 - - allOf: - - *600 - - *599 - allOf: - *297 - - *599 + - *602 - allOf: - *298 - - *599 + - *602 - allOf: - *299 - - *599 + - *602 + - allOf: + - *603 + - *602 - allOf: - *300 - - *599 + - *602 - allOf: - *301 - - *599 + - *602 - allOf: - *302 - - *599 + - *602 - allOf: - *303 - - *599 + - *602 - allOf: - *304 - - *599 + - *602 - allOf: - *305 - - *599 + - *602 - allOf: - *306 - - *599 + - *602 - allOf: - *307 - - *599 + - *602 - allOf: - *308 - - *599 + - *602 - allOf: - *309 - - *599 + - *602 - allOf: - *310 - - *599 + - *602 - allOf: - *311 - - *599 + - *602 - allOf: - *312 - - *599 + - *602 - allOf: - *313 - - *599 + - *602 + - allOf: + - *314 + - *602 + - allOf: + - *315 + - *602 + - allOf: + - *316 + - *602 examples: default: value: @@ -90459,8 +90705,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - name: includes_parents @@ -90471,7 +90717,7 @@ paths: schema: type: boolean default: true - - *601 + - *604 responses: '200': description: Response @@ -90479,7 +90725,7 @@ paths: application/json: schema: type: array - items: *314 + items: *317 examples: default: value: @@ -90510,7 +90756,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -90526,8 +90772,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 requestBody: description: Request body required: true @@ -90547,16 +90793,16 @@ paths: - tag - push default: branch - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *288 + items: *294 + conditions: *291 rules: type: array description: An array of rules within the ruleset. - items: *602 + items: *605 required: - name - enforcement @@ -90587,9 +90833,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: &612 + default: &615 value: id: 42 name: super cool ruleset @@ -90623,7 +90869,7 @@ paths: updated_at: '2023-08-23T16:29:47Z' '404': *6 '422': *15 - '500': *113 + '500': *115 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -90637,12 +90883,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *332 - - *333 - - *603 - - *604 - - *605 + - *335 + - *336 - *606 + - *607 + - *608 + - *609 - *17 - *19 responses: @@ -90650,11 +90896,11 @@ paths: description: Response content: application/json: - schema: *607 + schema: *610 examples: - default: *608 + default: *611 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90673,19 +90919,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *332 - - *333 - - *609 + - *335 + - *336 + - *612 responses: '200': description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: *611 + default: *614 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90711,8 +90957,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90732,11 +90978,11 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *612 + default: *615 '404': *6 - '500': *113 + '500': *115 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -90752,8 +90998,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90778,16 +91024,16 @@ paths: - branch - tag - push - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *288 + items: *294 + conditions: *291 rules: description: An array of rules within the ruleset. type: array - items: *602 + items: *605 examples: default: value: @@ -90815,12 +91061,12 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *612 + default: *615 '404': *6 '422': *15 - '500': *113 + '500': *115 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -90836,8 +91082,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90848,7 +91094,7 @@ paths: '204': description: Response '404': *6 - '500': *113 + '500': *115 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -90860,8 +91106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - name: ruleset_id @@ -90877,11 +91123,11 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *613 + default: *616 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90898,8 +91144,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90917,7 +91163,7 @@ paths: description: Response content: application/json: - schema: *614 + schema: *617 examples: default: value: @@ -90950,7 +91196,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90972,22 +91218,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *332 - - *333 - - *615 - - *616 - - *617 + - *335 + - *336 - *618 - *619 - - *53 - - *19 - - *17 - *620 - *621 - *622 + - *55 + - *19 + - *17 - *623 - *624 - *625 + - *626 + - *627 + - *628 responses: '200': description: Response @@ -90995,11 +91241,11 @@ paths: application/json: schema: type: array - items: &629 + items: &632 type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -91007,15 +91253,15 @@ paths: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *626 - resolution: *627 + state: *629 + resolution: *630 resolved_at: type: string format: date-time @@ -91111,7 +91357,7 @@ paths: pull request. ' - oneOf: *628 + oneOf: *631 nullable: true has_more_locations: type: boolean @@ -91238,7 +91484,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91260,16 +91506,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 - - *625 + - *335 + - *336 + - *433 + - *628 responses: '200': description: Response content: application/json: - schema: *629 + schema: *632 examples: default: value: @@ -91300,7 +91546,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91323,9 +91569,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: true content: @@ -91333,8 +91579,8 @@ paths: schema: type: object properties: - state: *626 - resolution: *627 + state: *629 + resolution: *630 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -91368,7 +91614,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *632 examples: default: value: @@ -91441,7 +91687,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91463,9 +91709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 - *19 - *17 responses: @@ -91476,7 +91722,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &788 + items: &791 type: object properties: type: @@ -91502,9 +91748,6 @@ paths: example: commit details: oneOf: - - *630 - - *631 - - *632 - *633 - *634 - *635 @@ -91515,6 +91758,9 @@ paths: - *640 - *641 - *642 + - *643 + - *644 + - *645 examples: default: value: @@ -91574,11 +91820,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *59 + Link: *61 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91600,8 +91846,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -91609,14 +91855,14 @@ paths: schema: type: object properties: - reason: &644 + reason: &647 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *643 + placeholder_id: *646 required: - reason - placeholder_id @@ -91633,7 +91879,7 @@ paths: schema: type: object properties: - reason: *644 + reason: *647 expire_at: type: string format: date-time @@ -91656,7 +91902,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91679,13 +91925,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *114 + '503': *116 '200': description: Response content: @@ -91695,7 +91941,7 @@ paths: properties: incremental_scans: type: array - items: &645 + items: &648 description: Information on a single scan performed by secret scanning on the repository type: object @@ -91721,15 +91967,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *645 + items: *648 backfill_scans: type: array - items: *645 + items: *648 custom_pattern_backfill_scans: type: array items: allOf: - - *645 + - *648 - type: object properties: pattern_name: @@ -91799,9 +92045,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *332 - - *333 - - *53 + - *335 + - *336 + - *55 - name: sort description: The property to sort the results by. in: query @@ -91813,8 +92059,8 @@ paths: - updated - published default: created - - *45 - - *46 + - *47 + - *48 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -91844,9 +92090,9 @@ paths: application/json: schema: type: array - items: *646 + items: *649 examples: - default: *647 + default: *650 '400': *14 '404': *6 x-github: @@ -91869,8 +92115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -91943,7 +92189,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 required: - login - type @@ -92030,9 +92276,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: &649 + default: &652 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92265,8 +92511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -92370,7 +92616,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: default: value: @@ -92517,17 +92763,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '200': description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: *649 + default: *652 '403': *29 '404': *6 x-github: @@ -92551,9 +92797,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 requestBody: required: true content: @@ -92626,7 +92872,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 required: - login - type @@ -92712,17 +92958,17 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: *649 - add_credit: *649 + default: *652 + add_credit: *652 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *122 + schema: *124 examples: invalid_state_transition: value: @@ -92753,9 +92999,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: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '202': *39 '400': *14 @@ -92782,17 +93028,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '202': description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 '400': *14 '422': *15 '403': *29 @@ -92818,8 +93064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -92896,7 +93142,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -92918,8 +93164,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -92928,7 +93174,7 @@ paths: application/json: schema: type: array - items: &650 + items: &653 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -92941,7 +93187,7 @@ paths: - 1124 - -435 '202': *39 - '204': *184 + '204': *187 '422': description: Repository contains more than 10,000 commits x-github: @@ -92961,8 +93207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -93011,7 +93257,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93038,8 +93284,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -93113,7 +93359,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93135,8 +93381,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -93290,8 +93536,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -93301,7 +93547,7 @@ paths: application/json: schema: type: array - items: *650 + items: *653 examples: default: value: @@ -93314,7 +93560,7 @@ paths: - - 0 - 2 - 21 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93334,8 +93580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *332 - - *333 + - *335 + - *336 - name: sha in: path required: true @@ -93389,7 +93635,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *654 examples: default: value: @@ -93443,8 +93689,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93456,9 +93702,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93476,14 +93722,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &652 + schema: &655 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93551,8 +93797,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -93578,7 +93824,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *655 examples: default: value: @@ -93605,8 +93851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -93626,8 +93872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93683,7 +93929,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93706,8 +93952,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *332 - - *333 + - *335 + - *336 - name: ref in: path required: true @@ -93743,8 +93989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93754,11 +94000,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -93776,8 +94022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 responses: @@ -93785,7 +94031,7 @@ paths: description: Response content: application/json: - schema: &653 + schema: &656 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -93797,7 +94043,7 @@ paths: required: - names examples: - default: &654 + default: &657 value: names: - octocat @@ -93820,8 +94066,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -93852,9 +94098,9 @@ paths: description: Response content: application/json: - schema: *653 + schema: *656 examples: - default: *654 + default: *657 '404': *6 '422': *7 x-github: @@ -93875,9 +94121,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *332 - - *333 - - &655 + - *335 + - *336 + - &658 name: per description: The time frame to display results for. in: query @@ -93906,7 +94152,7 @@ paths: example: 128 clones: type: array - items: &656 + items: &659 title: Traffic type: object properties: @@ -93993,8 +94239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -94084,8 +94330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -94145,9 +94391,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *332 - - *333 - - *655 + - *335 + - *336 + - *658 responses: '200': description: Response @@ -94166,7 +94412,7 @@ paths: example: 3782 views: type: array - items: *656 + items: *659 required: - uniques - count @@ -94243,8 +94489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -94280,7 +94526,7 @@ paths: description: Response content: application/json: - schema: *153 + schema: *156 examples: default: value: @@ -94518,8 +94764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -94542,8 +94788,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -94565,8 +94811,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -94592,8 +94838,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *332 - - *333 + - *335 + - *336 - name: ref in: path required: true @@ -94685,9 +94931,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -94728,7 +94974,7 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: default: value: @@ -94834,8 +95080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *142 - - *541 + - *145 + - *544 requestBody: required: true content: @@ -94899,14 +95145,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *544 + items: *547 examples: - default: *657 + default: *660 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -94937,8 +95183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *142 - - *541 + - *145 + - *544 requestBody: required: true content: @@ -95003,14 +95249,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *544 + items: *547 examples: - default: *657 + default: *660 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -95036,16 +95282,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *142 - - *541 - - *231 + - *145 + - *544 + - *234 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -95159,7 +95405,7 @@ paths: html_url: type: string format: uri - repository: *153 + repository: *156 score: type: number file_size: @@ -95177,7 +95423,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &658 + text_matches: &661 title: Search Result Text Matches type: array items: @@ -95291,7 +95537,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *114 + '503': *116 '422': *15 '403': *29 x-github: @@ -95339,7 +95585,7 @@ paths: enum: - author-date - committer-date - - &659 + - &662 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 @@ -95410,7 +95656,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true comment_count: type: integer @@ -95430,7 +95676,7 @@ paths: url: type: string format: uri - verification: *518 + verification: *521 required: - author - committer @@ -95449,7 +95695,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true parents: type: array @@ -95462,12 +95708,12 @@ paths: type: string sha: type: string - repository: *153 + repository: *156 score: type: number node_id: type: string - text_matches: *658 + text_matches: *661 required: - sha - node_id @@ -95659,7 +95905,7 @@ paths: - interactions - created - updated - - *659 + - *662 - *17 - *19 - name: advanced_search @@ -95756,11 +96002,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: type: string state_reason: @@ -95777,8 +96023,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true comments: type: integer @@ -95792,7 +96038,7 @@ paths: type: string format: date-time nullable: true - text_matches: *658 + text_matches: *661 pull_request: type: object properties: @@ -95825,10 +96071,10 @@ paths: type: string score: type: number - author_association: *74 + author_association: *76 draft: type: boolean - repository: *71 + repository: *73 body_html: type: string body_text: @@ -95836,7 +96082,7 @@ paths: timeline_url: type: string format: uri - type: *232 + type: *235 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -95846,17 +96092,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - reactions: *75 + reactions: *77 required: - assignee - closed_at @@ -95972,7 +96218,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *114 + '503': *116 '422': *15 '304': *37 '403': *29 @@ -96025,7 +96271,7 @@ paths: enum: - created - updated - - *659 + - *662 - *17 - *19 responses: @@ -96069,7 +96315,7 @@ paths: nullable: true score: type: number - text_matches: *658 + text_matches: *661 required: - id - node_id @@ -96154,7 +96400,7 @@ paths: - forks - help-wanted-issues - updated - - *659 + - *662 - *17 - *19 responses: @@ -96384,8 +96630,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true permissions: type: object @@ -96404,7 +96650,7 @@ paths: - admin - pull - push - text_matches: *658 + text_matches: *661 temp_clone_token: type: string allow_merge_commit: @@ -96606,7 +96852,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *114 + '503': *116 '422': *15 '304': *37 x-github: @@ -96704,7 +96950,7 @@ paths: type: string format: uri nullable: true - text_matches: *658 + text_matches: *661 related: type: array nullable: true @@ -96895,7 +97141,7 @@ paths: - followers - repositories - joined - - *659 + - *662 - *17 - *19 responses: @@ -96999,7 +97245,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *658 + text_matches: *661 blog: type: string nullable: true @@ -97058,7 +97304,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *114 + '503': *116 '422': *15 x-github: githubCloudOnly: false @@ -97078,7 +97324,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &662 + - &665 name: team_id description: The unique identifier of the team. in: path @@ -97090,9 +97336,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 x-github: githubCloudOnly: false @@ -97119,7 +97365,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *662 + - *665 requestBody: required: true content: @@ -97182,16 +97428,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '201': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 '422': *15 '403': *29 @@ -97219,7 +97465,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *662 + - *665 responses: '204': description: Response @@ -97248,7 +97494,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -97258,11 +97504,11 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97286,7 +97532,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *662 + - *665 - name: role description: Filters members returned by their role in the team. in: query @@ -97309,9 +97555,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -97337,8 +97583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: if user is a member @@ -97374,8 +97620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -97414,8 +97660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -97451,16 +97697,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '200': description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-user-is-a-team-maintainer: *663 + response-if-user-is-a-team-maintainer: *666 '404': *6 x-github: githubCloudOnly: false @@ -97493,8 +97739,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 requestBody: required: false content: @@ -97519,9 +97765,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-users-membership-with-team-is-now-pending: *664 + response-if-users-membership-with-team-is-now-pending: *667 '403': description: Forbidden if team synchronization is set up '422': @@ -97555,8 +97801,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -97583,7 +97829,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -97593,11 +97839,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -97625,15 +97871,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *665 + schema: *668 examples: alternative-response-with-extra-repository-information: value: @@ -97784,9 +98030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 requestBody: required: false content: @@ -97836,9 +98082,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 responses: '204': description: Response @@ -97863,7 +98109,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -97873,11 +98119,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - response-if-child-teams-exist: *666 + response-if-child-teams-exist: *669 headers: - Link: *59 + Link: *61 '404': *6 '403': *29 '422': *15 @@ -97908,7 +98154,7 @@ paths: application/json: schema: oneOf: - - &668 + - &671 title: Private User description: Private User type: object @@ -98111,7 +98357,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *667 + - *670 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -98264,7 +98510,7 @@ paths: description: Response content: application/json: - schema: *668 + schema: *671 examples: default: value: @@ -98343,7 +98589,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '304': *37 '404': *6 '403': *29 @@ -98366,7 +98612,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *63 + - *65 responses: '204': description: If the user is blocked @@ -98394,7 +98640,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -98418,7 +98664,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -98467,11 +98713,11 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -98608,21 +98854,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98662,7 +98908,7 @@ paths: type: integer secrets: type: array - items: &669 + items: &672 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -98702,9 +98948,9 @@ paths: - visibility - selected_repositories_url examples: - default: *456 + default: *459 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98772,13 +99018,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 responses: '200': description: Response content: application/json: - schema: *669 + schema: *672 examples: default: value: @@ -98808,7 +99054,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 requestBody: required: true content: @@ -98853,7 +99099,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -98881,7 +99127,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 responses: '204': description: Response @@ -98906,7 +99152,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *161 + - *164 responses: '200': description: Response @@ -98922,13 +99168,13 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *670 + default: *673 '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98949,7 +99195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *161 + - *164 requestBody: required: true content: @@ -98981,7 +99227,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99003,7 +99249,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *161 + - *164 - name: repository_id in: path required: true @@ -99015,7 +99261,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99036,7 +99282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *161 + - *164 - name: repository_id in: path required: true @@ -99048,7 +99294,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99068,17 +99314,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99102,7 +99348,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 requestBody: required: false content: @@ -99132,9 +99378,9 @@ paths: description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 @@ -99156,11 +99402,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '202': *39 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99185,13 +99431,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '202': description: Response content: application/json: - schema: &671 + schema: &674 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -99232,7 +99478,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &672 + default: &675 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -99240,7 +99486,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99264,7 +99510,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *239 + - *242 - name: export_id in: path required: true @@ -99277,9 +99523,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *674 examples: - default: *672 + default: *675 '404': *6 x-github: githubCloudOnly: false @@ -99300,7 +99546,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *239 + - *242 responses: '200': description: Response @@ -99316,11 +99562,11 @@ paths: type: integer machines: type: array - items: *673 + items: *676 examples: - default: *674 + default: *677 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99347,7 +99593,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *239 + - *242 requestBody: required: true content: @@ -99397,13 +99643,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *335 + repository: *338 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *454 - required: *455 + properties: *457 + required: *458 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -100177,17 +100423,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '304': *37 - '500': *113 + '500': *115 '400': *14 '401': *25 '402': @@ -100197,7 +100443,7 @@ paths: schema: *3 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100217,16 +100463,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 - '500': *113 + default: *456 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -100255,9 +100501,9 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: &685 + default: &688 value: - id: 197 name: hello_docker @@ -100358,7 +100604,7 @@ paths: application/json: schema: type: array - items: &675 + items: &678 title: Email description: Email type: object @@ -100423,16 +100669,16 @@ paths: application/json: schema: type: array - items: *675 + items: *678 examples: - default: &687 + default: &690 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -100500,7 +100746,7 @@ paths: application/json: schema: type: array - items: *675 + items: *678 examples: default: value: @@ -100610,9 +100856,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -100643,9 +100889,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -100665,7 +100911,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *63 + - *65 responses: '204': description: if the person is followed by the authenticated user @@ -100695,7 +100941,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -100720,7 +100966,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -100756,7 +101002,7 @@ paths: application/json: schema: type: array - items: &676 + items: &679 title: GPG Key description: A unique encryption key type: object @@ -100887,7 +101133,7 @@ paths: - subkeys - revoked examples: - default: &703 + default: &706 value: - id: 3 name: Octocat's GPG Key @@ -100919,7 +101165,7 @@ paths: revoked: false raw_key: string headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -100972,9 +101218,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *679 examples: - default: &677 + default: &680 value: id: 3 name: Octocat's GPG Key @@ -101031,7 +101277,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &678 + - &681 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -101043,9 +101289,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *679 examples: - default: *677 + default: *680 '404': *6 '304': *37 '403': *29 @@ -101068,7 +101314,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *678 + - *681 responses: '204': description: Response @@ -101211,7 +101457,7 @@ paths: suspended_at: suspended_by: headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -101259,11 +101505,11 @@ paths: type: array items: allOf: - - *71 + - *73 examples: - default: *145 + default: *148 headers: - Link: *59 + Link: *61 '404': *6 '403': *29 '304': *37 @@ -101286,7 +101532,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *142 + - *145 responses: '204': description: Response @@ -101312,7 +101558,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *142 + - *145 responses: '204': description: Response @@ -101346,12 +101592,12 @@ paths: application/json: schema: anyOf: - - *224 + - *227 - type: object properties: {} additionalProperties: false examples: - default: *225 + default: *228 '204': description: Response when there are no restrictions x-github: @@ -101375,7 +101621,7 @@ paths: required: true content: application/json: - schema: *529 + schema: *532 examples: default: value: @@ -101386,7 +101632,7 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: default: value: @@ -101467,7 +101713,7 @@ paths: - closed - all default: open - - *235 + - *238 - name: sort description: What to sort results by. in: query @@ -101479,8 +101725,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -101490,11 +101736,11 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *236 + default: *239 headers: - Link: *59 + Link: *61 '404': *6 '304': *37 x-github: @@ -101525,7 +101771,7 @@ paths: application/json: schema: type: array - items: &679 + items: &682 title: Key description: Key type: object @@ -101576,7 +101822,7 @@ paths: verified: false read_only: false headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -101626,9 +101872,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *682 examples: - default: &680 + default: &683 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -101661,15 +101907,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *566 responses: '200': description: Response content: application/json: - schema: *679 + schema: *682 examples: - default: *680 + default: *683 '404': *6 '304': *37 '403': *29 @@ -101692,7 +101938,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *566 responses: '204': description: Response @@ -101725,7 +101971,7 @@ paths: application/json: schema: type: array - items: &681 + items: &684 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -101782,7 +102028,7 @@ paths: - id - type - login - plan: *95 + plan: *97 required: - billing_cycle - next_billing_date @@ -101793,7 +102039,7 @@ paths: - account - plan examples: - default: &682 + default: &685 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -101826,7 +102072,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '304': *37 '401': *25 '404': *6 @@ -101855,11 +102101,11 @@ paths: application/json: schema: type: array - items: *681 + items: *684 examples: - default: *682 + default: *685 headers: - Link: *59 + Link: *61 '304': *37 '401': *25 x-github: @@ -101897,7 +102143,7 @@ paths: application/json: schema: type: array - items: *241 + items: *244 examples: default: value: @@ -101980,7 +102226,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102005,13 +102251,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -102073,7 +102319,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *67 + - *69 requestBody: required: true content: @@ -102098,7 +102344,7 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -102170,7 +102416,7 @@ paths: application/json: schema: type: array - items: *243 + items: *246 examples: default: value: @@ -102323,7 +102569,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102423,7 +102669,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -102603,7 +102849,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *244 + - *247 - name: exclude in: query required: false @@ -102616,7 +102862,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -102810,7 +103056,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *244 + - *247 responses: '302': description: Response @@ -102836,7 +103082,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *244 + - *247 responses: '204': description: Response @@ -102865,8 +103111,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *244 - - *683 + - *247 + - *686 responses: '204': description: Response @@ -102890,7 +103136,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *244 + - *247 - *17 - *19 responses: @@ -102900,11 +103146,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -102937,11 +103183,11 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102981,7 +103227,7 @@ paths: - docker - nuget - container - - *684 + - *687 - *19 - *17 responses: @@ -102991,10 +103237,10 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *685 - '400': *686 + default: *688 + '400': *689 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103014,16 +103260,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: - default: &704 + default: &707 value: id: 40201 name: octo-name @@ -103136,8 +103382,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 responses: '204': description: Response @@ -103167,8 +103413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 - name: token description: package token schema: @@ -103200,8 +103446,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: - - *252 - - *253 + - *255 + - *256 - *19 - *17 - name: state @@ -103221,7 +103467,7 @@ paths: application/json: schema: type: array - items: *254 + items: *257 examples: default: value: @@ -103270,15 +103516,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '200': description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -103314,9 +103560,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '204': description: Response @@ -103346,9 +103592,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '204': description: Response @@ -103385,11 +103631,11 @@ paths: application/json: schema: type: array - items: *675 + items: *678 examples: - default: *687 + default: *690 headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103498,9 +103744,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: &694 + default: &697 summary: Default response value: - id: 1296269 @@ -103621,7 +103867,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '403': *29 @@ -103804,9 +104050,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -103844,11 +104090,11 @@ paths: application/json: schema: type: array - items: *531 + items: *534 examples: - default: *688 + default: *691 headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103869,12 +104115,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *228 + - *231 responses: '204': description: Response '403': *29 - '409': *52 + '409': *54 '404': *6 '304': *37 x-github: @@ -103892,11 +104138,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *228 + - *231 responses: '204': description: Response - '409': *52 + '409': *54 '304': *37 '404': *6 '403': *29 @@ -103925,7 +104171,7 @@ paths: application/json: schema: type: array - items: &689 + items: &692 title: Social account description: Social media account type: object @@ -103940,12 +104186,12 @@ paths: - provider - url examples: - default: &690 + default: &693 value: - provider: twitter url: https://twitter.com/github headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104002,9 +104248,9 @@ paths: application/json: schema: type: array - items: *689 + items: *692 examples: - default: *690 + default: *693 '422': *15 '304': *37 '404': *6 @@ -104091,7 +104337,7 @@ paths: application/json: schema: type: array - items: &691 + items: &694 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -104111,7 +104357,7 @@ paths: - title - created_at examples: - default: &722 + default: &725 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104122,7 +104368,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104175,9 +104421,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *694 examples: - default: &692 + default: &695 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104207,7 +104453,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: - - &693 + - &696 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -104219,9 +104465,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *694 examples: - default: *692 + default: *695 '404': *6 '304': *37 '403': *29 @@ -104244,7 +104490,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: - - *693 + - *696 responses: '204': description: Response @@ -104273,7 +104519,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &723 + - &726 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 @@ -104286,7 +104532,7 @@ paths: - created - updated default: created - - *53 + - *55 - *17 - *19 responses: @@ -104296,13 +104542,13 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default-response: *694 + default-response: *697 application/vnd.github.v3.star+json: schema: type: array - items: &724 + items: &727 title: Starred Repository description: Starred Repository type: object @@ -104310,7 +104556,7 @@ paths: starred_at: type: string format: date-time - repo: *71 + repo: *73 required: - starred_at - repo @@ -104438,7 +104684,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -104458,8 +104704,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: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response if this repository is starred by you @@ -104487,8 +104733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -104512,8 +104758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -104546,11 +104792,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -104585,7 +104831,7 @@ paths: application/json: schema: type: array - items: *328 + items: *331 examples: default: value: @@ -104636,7 +104882,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104663,7 +104909,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *97 + - *99 responses: '200': description: Response @@ -104671,10 +104917,10 @@ paths: application/json: schema: oneOf: - - *668 - - *667 + - *671 + - *670 examples: - default-response: &698 + default-response: &701 summary: Default response value: login: octocat @@ -104709,7 +104955,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &699 + response-with-git-hub-plan-information: &702 summary: Response with GitHub plan information value: login: octocat @@ -104766,14 +105012,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &696 + - &699 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *268 + - *271 requestBody: required: true description: Details of the draft item to create in the project. @@ -104807,9 +105053,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: - draft_issue: *275 + draft_issue: *278 '304': *37 '403': *29 '401': *25 @@ -104832,7 +105078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *695 + - *698 - *17 responses: '200': @@ -104843,7 +105089,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: Link: example: ; rel="next" @@ -104867,8 +105113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *696 - - *268 + - *699 + - *271 requestBody: required: true content: @@ -104939,17 +105185,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *697 + schema: *700 examples: table_view: summary: Response for creating a table view - value: *279 + value: *282 board_view: summary: Response for creating a board view with filter - value: *279 + value: *282 roadmap_view: summary: Response for creating a roadmap view - value: *279 + value: *282 '304': *37 '403': *29 '401': *25 @@ -104983,7 +105229,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *63 + - *65 responses: '200': description: Response @@ -104991,11 +105237,11 @@ paths: application/json: schema: oneOf: - - *668 - - *667 + - *671 + - *670 examples: - default-response: *698 - response-with-git-hub-plan-information: *699 + default-response: *701 + response-with-git-hub-plan-information: *702 '404': *6 x-github: githubCloudOnly: false @@ -105019,9 +105265,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *45 - - *46 - - *63 + - *47 + - *48 + - *65 requestBody: required: true content: @@ -105045,8 +105291,8 @@ paths: required: - subject_digests examples: - default: *700 - withPredicateType: *701 + default: *703 + withPredicateType: *704 responses: '200': description: Response @@ -105099,7 +105345,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *702 + default: *705 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105117,7 +105363,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *63 + - *65 requestBody: required: true content: @@ -105182,7 +105428,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *63 + - *65 - name: subject_digest description: Subject Digest in: path @@ -105213,7 +105459,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *63 + - *65 - name: attestation_id description: Attestation ID in: path @@ -105249,9 +105495,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations parameters: - *17 - - *45 - - *46 - - *63 + - *47 + - *48 + - *65 - name: subject_digest description: Subject Digest in: path @@ -105304,12 +105550,12 @@ paths: initiator: type: string examples: - default: *393 + default: *396 '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -105335,7 +105581,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *63 + - *65 responses: '200': description: Response @@ -105343,9 +105589,9 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *685 + default: *688 '403': *29 '401': *25 x-github: @@ -105368,7 +105614,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105378,7 +105624,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105440,8 +105686,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *63 - - *67 + - *65 + - *69 - *17 - *19 responses: @@ -105451,7 +105697,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105528,7 +105774,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105538,7 +105784,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105596,7 +105842,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105608,9 +105854,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105627,7 +105873,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105639,9 +105885,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105658,7 +105904,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *63 + - *65 - name: target_user in: path required: true @@ -105685,8 +105931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *63 - - *84 + - *65 + - *86 - *17 - *19 responses: @@ -105696,11 +105942,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -105719,7 +105965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105729,11 +105975,11 @@ paths: application/json: schema: type: array - items: *676 + items: *679 examples: - default: *703 + default: *706 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105755,7 +106001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *63 + - *65 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -105827,7 +106073,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *63 + - *65 responses: '200': description: Response @@ -105835,7 +106081,7 @@ paths: application/json: schema: *22 examples: - default: *528 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105853,7 +106099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105888,7 +106134,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105908,7 +106154,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105918,11 +106164,11 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105959,8 +106205,8 @@ paths: - docker - nuget - container - - *684 - - *63 + - *687 + - *65 - *19 - *17 responses: @@ -105970,12 +106216,12 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *685 + default: *688 '403': *29 '401': *25 - '400': *686 + '400': *689 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105995,17 +106241,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: - default: *704 + default: *707 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106026,9 +106272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '204': description: Response @@ -106060,9 +106306,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 - name: token description: package token schema: @@ -106094,9 +106340,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '200': description: Response @@ -106104,7 +106350,7 @@ paths: application/json: schema: type: array - items: *254 + items: *257 examples: default: value: @@ -106162,16 +106408,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *252 - - *253 - *255 - - *63 + - *256 + - *258 + - *65 responses: '200': description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -106206,10 +106452,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *252 - - *253 - - *63 - *255 + - *256 + - *65 + - *258 responses: '204': description: Response @@ -106241,10 +106487,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *252 - - *253 - - *63 - *255 + - *256 + - *65 + - *258 responses: '204': description: Response @@ -106268,15 +106514,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *63 + - *65 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -106285,11 +106531,11 @@ paths: application/json: schema: type: array - items: *266 + items: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106309,18 +106555,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *268 - - *63 + - *271 + - *65 responses: '200': description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106340,11 +106586,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *268 - - *63 + - *271 + - *65 - *17 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -106352,11 +106598,11 @@ paths: application/json: schema: type: array - items: *272 + items: *275 examples: - default: *705 + default: *708 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106375,8 +106621,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *63 - - *268 + - *65 + - *271 requestBody: required: true content: @@ -106414,7 +106660,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *706 + items: *709 required: - name - data_type @@ -106430,7 +106676,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *707 + iteration_configuration: *710 required: - name - data_type @@ -106452,20 +106698,20 @@ paths: value: name: Due date data_type: date - single_select_field: *708 - iteration_field: *709 + single_select_field: *711 + iteration_field: *712 responses: '201': description: Response content: application/json: - schema: *272 + schema: *275 examples: - text_field: *710 - number_field: *711 - date_field: *712 - single_select_field: *713 - iteration_field: *714 + text_field: *713 + number_field: *714 + date_field: *715 + single_select_field: *716 + iteration_field: *717 '304': *37 '403': *29 '401': *25 @@ -106486,19 +106732,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *268 - - *715 - - *63 + - *271 + - *718 + - *65 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: *716 + default: *719 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106519,10 +106765,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *268 - - *63 - - *45 - - *46 + - *271 + - *65 + - *47 + - *48 - *17 - 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) @@ -106552,11 +106798,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106575,8 +106821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *63 - - *268 + - *65 + - *271 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -106646,22 +106892,22 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *275 + value: *278 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *275 + value: *278 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *275 + value: *278 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *275 + value: *278 '304': *37 '403': *29 '401': *25 @@ -106681,9 +106927,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -106703,11 +106949,11 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106726,9 +106972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -106798,13 +107044,13 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - text_field: *277 - number_field: *277 - date_field: *277 - single_select_field: *277 - iteration_field: *277 + text_field: *280 + number_field: *280 + date_field: *280 + single_select_field: *280 + iteration_field: *280 '401': *25 '403': *29 '404': *6 @@ -106824,9 +107070,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 responses: '204': description: Response @@ -106848,9 +107094,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *268 - - *63 - - *717 + - *271 + - *65 + - *720 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -106866,8 +107112,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -106876,11 +107122,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106906,7 +107152,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106916,7 +107162,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -106981,7 +107227,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106991,7 +107237,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -107054,7 +107300,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *63 + - *65 - name: type description: Limit results to repositories of the specified type. in: query @@ -107097,11 +107343,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107121,12 +107367,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *63 - - *116 + - *65 - *118 - - *117 - - *718 + - *120 - *119 + - *721 + - *121 responses: '200': description: Response when getting a billing premium request usage report @@ -107233,8 +107479,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107254,10 +107500,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *63 - - *116 - - *719 - - *117 + - *65 + - *118 + - *722 + - *119 responses: '200': description: Response when getting a billing usage report @@ -107327,8 +107573,8 @@ paths: repositoryName: user/example '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107351,13 +107597,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *63 - - *116 + - *65 - *118 - - *117 - - *720 + - *120 - *119 - - *721 + - *723 + - *121 + - *724 responses: '200': description: Response when getting a billing usage summary @@ -107462,8 +107708,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107481,7 +107727,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107491,11 +107737,11 @@ paths: application/json: schema: type: array - items: *689 + items: *692 examples: - default: *690 + default: *693 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107513,7 +107759,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107523,11 +107769,11 @@ paths: application/json: schema: type: array - items: *691 + items: *694 examples: - default: *722 + default: *725 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107549,9 +107795,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *63 - - *723 - - *53 + - *65 + - *726 + - *55 - *17 - *19 responses: @@ -107562,13 +107808,13 @@ paths: schema: anyOf: - type: array - items: *724 + items: *727 - type: array - items: *71 + items: *73 examples: - default-response: *694 + default-response: *697 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107585,7 +107831,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107595,11 +107841,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107725,7 +107971,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &725 + enterprise: &728 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -107783,7 +108029,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &726 + installation: &729 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -107802,7 +108048,7 @@ x-webhooks: required: - id - node_id - organization: &727 + organization: &730 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -107862,13 +108108,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &728 + repository: &731 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &760 + properties: &763 id: description: Unique identifier of the repository example: 42 @@ -107888,8 +108134,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true organization: title: Simple User @@ -108568,7 +108814,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &761 + required: &764 - archive_url - assignees_url - blobs_url @@ -108719,10 +108965,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -108798,11 +109044,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: &729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: &732 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) @@ -109025,11 +109271,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: *729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: *732 sender: *4 required: - action @@ -109212,11 +109458,11 @@ x-webhooks: - everyone required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: *729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: *732 sender: *4 required: - action @@ -109300,7 +109546,7 @@ x-webhooks: type: string enum: - completed - check_run: &731 + check_run: &734 title: CheckRun description: A check performed on the code of a given code change type: object @@ -109353,8 +109599,8 @@ x-webhooks: type: string pull_requests: type: array - items: *82 - repository: *153 + items: *84 + repository: *156 status: example: completed type: string @@ -109391,7 +109637,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *730 + deployment: *733 details_url: example: https://example.com type: string @@ -109441,7 +109687,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *82 + items: *84 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -109476,10 +109722,10 @@ x-webhooks: - output - app - pull_requests - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -109870,11 +110116,11 @@ x-webhooks: type: string enum: - created - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -110268,11 +110514,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 requested_action: description: The action requested by the user. type: object @@ -110675,11 +110921,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -111649,10 +111895,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -112341,10 +112587,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -113027,10 +113273,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -113196,7 +113442,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -113341,20 +113587,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &732 + commit_oid: &735 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: *725 - installation: *726 - organization: *727 - ref: &733 + enterprise: *728 + installation: *729 + organization: *730 + ref: &736 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: *728 + repository: *731 sender: *4 required: - action @@ -113519,7 +113765,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -113749,12 +113995,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -113849,7 +114095,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114020,12 +114266,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -114191,7 +114437,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -114357,12 +114603,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -114461,7 +114707,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114636,16 +114882,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *728 + repository: *731 sender: *4 required: - action @@ -114742,7 +114988,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114882,12 +115128,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -115053,7 +115299,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -115198,10 +115444,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -115456,10 +115702,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -115539,18 +115785,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *727 - pusher_type: &734 + organization: *730 + pusher_type: &737 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &735 + ref: &738 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -115560,7 +115806,7 @@ x-webhooks: enum: - tag - branch - repository: *728 + repository: *731 sender: *4 required: - ref @@ -115642,10 +115888,10 @@ x-webhooks: type: string enum: - created - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115730,9 +115976,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115809,10 +116055,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115889,10 +116135,10 @@ x-webhooks: type: string enum: - updated - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115969,19 +116215,19 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - repository: *728 - organization: *727 + enterprise: *728 + installation: *729 + repository: *731 + organization: *730 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *284 + items: *287 old_property_values: type: array description: The old custom property values for the repository. - items: *284 + items: *287 required: - action - repository @@ -116057,18 +116303,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - pusher_type: *734 - ref: *735 + enterprise: *728 + installation: *729 + organization: *730 + pusher_type: *737 + ref: *738 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *728 + repository: *731 sender: *4 required: - ref @@ -116148,11 +116394,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116232,11 +116478,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116317,11 +116563,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116402,11 +116648,11 @@ x-webhooks: type: string enum: - created - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116485,11 +116731,11 @@ x-webhooks: type: string enum: - dismissed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116568,11 +116814,11 @@ x-webhooks: type: string enum: - fixed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116652,11 +116898,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116735,11 +116981,11 @@ x-webhooks: type: string enum: - reopened - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116816,9 +117062,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - key: &736 + enterprise: *728 + installation: *729 + key: &739 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -116854,8 +117100,8 @@ x-webhooks: - verified - created_at - read_only - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -116932,11 +117178,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - key: *736 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + key: *739 + organization: *730 + repository: *731 sender: *4 required: - action @@ -117492,12 +117738,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: &742 + workflow: &745 title: Workflow type: object nullable: true @@ -118238,15 +118484,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *737 - required: *738 + properties: *740 + required: *741 nullable: true pull_requests: type: array - items: *582 - repository: *728 - organization: *727 - installation: *726 + items: *585 + repository: *731 + organization: *730 + installation: *729 sender: *4 responses: '200': @@ -118317,7 +118563,7 @@ x-webhooks: type: string enum: - approved - approver: &739 + approver: &742 type: object properties: avatar_url: @@ -118360,11 +118606,11 @@ x-webhooks: type: string comment: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - reviewers: &740 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + reviewers: &743 type: array items: type: object @@ -118443,7 +118689,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &741 + workflow_job_run: &744 type: object properties: conclusion: @@ -119174,18 +119420,18 @@ x-webhooks: type: string enum: - rejected - approver: *739 + approver: *742 comment: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - reviewers: *740 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + reviewers: *743 sender: *4 since: type: string - workflow_job_run: *741 + workflow_job_run: *744 workflow_job_runs: type: array items: @@ -119889,13 +120135,13 @@ x-webhooks: type: string enum: - requested - enterprise: *725 + enterprise: *728 environment: type: string - installation: *726 - organization: *727 - repository: *728 - requestor: &747 + installation: *729 + organization: *730 + repository: *731 + requestor: &750 title: User type: object nullable: true @@ -121784,12 +122030,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Deployment Workflow Run type: object @@ -122469,7 +122715,7 @@ x-webhooks: type: string enum: - answered - answer: &745 + answer: &748 type: object properties: author_association: @@ -122626,11 +122872,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122757,11 +123003,11 @@ x-webhooks: - from required: - category - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122844,11 +123090,11 @@ x-webhooks: type: string enum: - closed - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122930,7 +123176,7 @@ x-webhooks: type: string enum: - created - comment: &744 + comment: &747 type: object properties: author_association: @@ -123087,11 +123333,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123174,12 +123420,12 @@ x-webhooks: type: string enum: - deleted - comment: *744 - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + comment: *747 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123274,12 +123520,12 @@ x-webhooks: - from required: - body - comment: *744 - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + comment: *747 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123363,11 +123609,11 @@ x-webhooks: type: string enum: - created - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123449,11 +123695,11 @@ x-webhooks: type: string enum: - deleted - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123553,11 +123799,11 @@ x-webhooks: type: string required: - from - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123639,10 +123885,10 @@ x-webhooks: type: string enum: - labeled - discussion: *743 - enterprise: *725 - installation: *726 - label: &746 + discussion: *746 + enterprise: *728 + installation: *729 + label: &749 title: Label type: object properties: @@ -123674,8 +123920,8 @@ x-webhooks: - color - default - description - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123758,11 +124004,11 @@ x-webhooks: type: string enum: - locked - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123844,11 +124090,11 @@ x-webhooks: type: string enum: - pinned - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123930,11 +124176,11 @@ x-webhooks: type: string enum: - reopened - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124019,16 +124265,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *743 - new_repository: *728 + new_discussion: *746 + new_repository: *731 required: - new_discussion - new_repository - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124111,10 +124357,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *743 - old_answer: *745 - organization: *727 - repository: *728 + discussion: *746 + old_answer: *748 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124196,12 +124442,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *743 - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124284,11 +124530,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124370,11 +124616,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124447,7 +124693,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *725 + enterprise: *728 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -125107,9 +125353,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *726 - organization: *727 - repository: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - forkee @@ -125255,9 +125501,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pages: description: The pages that were updated. type: array @@ -125294,7 +125540,7 @@ x-webhooks: - action - sha - html_url - repository: *728 + repository: *731 sender: *4 required: - pages @@ -125370,10 +125616,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: &748 + organization: *730 + repositories: &751 description: An array of repository objects that the installation can access. type: array @@ -125399,8 +125645,8 @@ x-webhooks: - name - full_name - private - repository: *728 - requester: *747 + repository: *731 + requester: *750 sender: *4 required: - action @@ -125475,11 +125721,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125555,11 +125801,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125635,10 +125881,10 @@ x-webhooks: type: string enum: - added - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories_added: &749 + organization: *730 + repositories_added: &752 description: An array of repository objects, which were added to the installation. type: array @@ -125684,15 +125930,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *728 - repository_selection: &750 + repository: *731 + repository_selection: &753 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *747 + requester: *750 sender: *4 required: - action @@ -125771,10 +126017,10 @@ x-webhooks: type: string enum: - removed - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories_added: *749 + organization: *730 + repositories_added: *752 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -125801,9 +126047,9 @@ x-webhooks: - name - full_name - private - repository: *728 - repository_selection: *750 - requester: *747 + repository: *731 + repository_selection: *753 + requester: *750 sender: *4 required: - action @@ -125882,11 +126128,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -126064,10 +126310,10 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 target_type: type: string @@ -126146,11 +126392,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -126274,8 +126520,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 reactions: title: Reactions type: object @@ -126324,8 +126570,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true user: title: User @@ -126410,8 +126656,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -127200,8 +127446,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -127217,7 +127463,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -127550,8 +127796,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -127631,7 +127877,7 @@ x-webhooks: type: string enum: - deleted - comment: &751 + comment: &754 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -127788,8 +128034,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true required: - url @@ -127804,8 +128050,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128590,8 +128836,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128607,7 +128853,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -128942,8 +129188,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -129023,7 +129269,7 @@ x-webhooks: type: string enum: - edited - changes: &780 + changes: &783 description: The changes to the comment. type: object properties: @@ -129035,9 +129281,9 @@ x-webhooks: type: string required: - from - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129825,8 +130071,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129842,7 +130088,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -130175,8 +130421,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -130257,9 +130503,9 @@ x-webhooks: type: string enum: - pinned - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131049,8 +131295,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131066,7 +131312,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -131401,8 +131647,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -131482,9 +131728,9 @@ x-webhooks: type: string enum: - unpinned - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132274,8 +132520,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132291,7 +132537,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -132626,8 +132872,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132710,15 +132956,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 + blocked_issue: *79 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - blocking_issue_repo: *71 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + blocking_issue_repo: *73 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132801,15 +133047,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 + blocked_issue: *79 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - blocking_issue_repo: *71 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + blocking_issue_repo: *73 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132891,15 +133137,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 - blocked_issue_repo: *71 + blocked_issue: *79 + blocked_issue_repo: *73 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132982,15 +133228,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 - blocked_issue_repo: *71 + blocked_issue: *79 + blocked_issue_repo: *73 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -133070,10 +133316,10 @@ x-webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *725 - installation: *726 - issue: &754 + assignee: *750 + enterprise: *728 + installation: *729 + issue: &757 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133862,14 +134108,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133885,7 +134131,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -133986,8 +134232,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -134067,8 +134313,8 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -134862,14 +135108,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134885,7 +135131,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -135121,8 +135367,8 @@ x-webhooks: required: - state - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -135201,8 +135447,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135987,14 +136233,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136010,7 +136256,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -136110,8 +136356,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -136190,8 +136436,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136998,14 +137244,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137021,7 +137267,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -137100,7 +137346,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &752 + milestone: &755 title: Milestone description: A collection of related issues and pull requests. type: object @@ -137238,8 +137484,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -137338,8 +137584,8 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138128,14 +138374,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138148,7 +138394,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -138252,9 +138498,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *727 - repository: *728 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -138334,8 +138580,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139123,14 +139369,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139143,7 +139389,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -139247,9 +139493,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *727 - repository: *728 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -139329,8 +139575,8 @@ x-webhooks: type: string enum: - locked - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140142,14 +140388,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140162,7 +140408,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -140243,8 +140489,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -140323,8 +140569,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141130,14 +141376,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141153,7 +141399,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -141231,9 +141477,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *752 - organization: *727 - repository: *728 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -142096,11 +142342,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142128,8 +142374,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true user: title: User @@ -142201,7 +142447,7 @@ x-webhooks: required: - login - id - type: *232 + type: *235 required: - id - number @@ -142685,8 +142931,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143470,11 +143716,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143490,7 +143736,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -143503,8 +143749,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true user: title: User @@ -143598,8 +143844,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -143679,9 +143925,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *725 - installation: *726 - issue: &753 + enterprise: *728 + installation: *729 + issue: &756 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144464,14 +144710,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144487,7 +144733,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -144587,8 +144833,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -144667,8 +144913,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145478,14 +145724,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145579,9 +145825,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *232 - organization: *727 - repository: *728 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -146447,14 +146693,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146470,7 +146716,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -147053,11 +147299,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *725 - installation: *726 - issue: *753 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *756 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147137,12 +147383,12 @@ x-webhooks: type: string enum: - typed - enterprise: *725 - installation: *726 - issue: *754 - type: *232 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147223,7 +147469,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &783 + assignee: &786 title: User type: object nullable: true @@ -147293,11 +147539,11 @@ x-webhooks: required: - login - id - enterprise: *725 - installation: *726 - issue: *754 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147376,12 +147622,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *725 - installation: *726 - issue: *754 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147461,8 +147707,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148272,14 +148518,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148295,7 +148541,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -148373,8 +148619,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148454,11 +148700,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *725 - installation: *726 - issue: *753 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *756 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148537,12 +148783,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *725 - installation: *726 - issue: *754 - type: *232 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148622,11 +148868,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148704,11 +148950,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148818,11 +149064,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148904,9 +149150,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: &755 + enterprise: *728 + installation: *729 + marketplace_purchase: &758 title: Marketplace Purchase type: object required: @@ -148989,8 +149235,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *727 - previous_marketplace_purchase: &756 + organization: *730 + previous_marketplace_purchase: &759 title: Marketplace Purchase type: object properties: @@ -149070,7 +149316,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -149150,10 +149396,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -149236,7 +149482,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -149318,10 +149564,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -149403,7 +149649,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -149484,8 +149730,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 marketplace_purchase: title: Marketplace Purchase type: object @@ -149567,9 +149813,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *727 - previous_marketplace_purchase: *756 - repository: *728 + organization: *730 + previous_marketplace_purchase: *759 + repository: *731 sender: *4 required: - action @@ -149649,12 +149895,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 - previous_marketplace_purchase: *756 - repository: *728 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 + previous_marketplace_purchase: *759 + repository: *731 sender: *4 required: - action @@ -149756,11 +150002,11 @@ x-webhooks: type: string required: - to - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -149860,11 +150106,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -149943,11 +150189,11 @@ x-webhooks: type: string enum: - removed - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150025,11 +150271,11 @@ x-webhooks: type: string enum: - added - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150105,7 +150351,7 @@ x-webhooks: required: - login - id - team: &757 + team: &760 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -150328,11 +150574,11 @@ x-webhooks: type: string enum: - removed - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150409,7 +150655,7 @@ x-webhooks: required: - login - id - team: *757 + team: *760 required: - action - scope @@ -150491,8 +150737,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *726 - merge_group: &759 + installation: *729 + merge_group: &762 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -150511,15 +150757,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *758 + head_commit: *761 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150605,10 +150851,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *726 - merge_group: *759 - organization: *727 - repository: *728 + installation: *729 + merge_group: *762 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150681,7 +150927,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 + enterprise: *728 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -150790,16 +151036,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *726 - organization: *727 + installation: *729 + organization: *730 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -150880,11 +151126,11 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150963,9 +151209,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - milestone: &762 + enterprise: *728 + installation: *729 + milestone: &765 title: Milestone description: A collection of related issues and pull requests. type: object @@ -151102,8 +151348,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151182,11 +151428,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151296,11 +151542,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151380,11 +151626,11 @@ x-webhooks: type: string enum: - opened - enterprise: *725 - installation: *726 - milestone: *762 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *765 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151463,11 +151709,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *747 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + blocked_user: *750 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151546,11 +151792,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *747 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + blocked_user: *750 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151629,9 +151875,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - membership: &763 + enterprise: *728 + installation: *729 + membership: &766 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -151738,8 +151984,8 @@ x-webhooks: - role - organization_url - user - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151817,11 +152063,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151900,8 +152146,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -152017,10 +152263,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 - user: *747 + user: *750 required: - action - invitation @@ -152098,11 +152344,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -152189,11 +152435,11 @@ x-webhooks: properties: from: type: string - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -152270,9 +152516,9 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 package: description: Information about the package. type: object @@ -152771,7 +153017,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &764 + items: &767 title: Ruby Gems metadata type: object properties: @@ -152866,7 +153112,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -152942,9 +153188,9 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 package: description: Information about the package. type: object @@ -153297,7 +153543,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *767 source_url: type: string format: uri @@ -153367,7 +153613,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -153543,12 +153789,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *725 + enterprise: *728 id: type: integer - installation: *726 - organization: *727 - repository: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - id @@ -153625,7 +153871,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &765 + personal_access_token_request: &768 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -153771,10 +154017,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *725 - organization: *727 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153851,11 +154097,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *765 - enterprise: *725 - organization: *727 + personal_access_token_request: *768 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153931,11 +154177,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *765 - enterprise: *725 - organization: *727 + personal_access_token_request: *768 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -154010,11 +154256,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *765 - organization: *727 - enterprise: *725 + personal_access_token_request: *768 + organization: *730 + enterprise: *728 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -154119,7 +154365,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *766 + last_response: *769 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -154151,8 +154397,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 zen: description: Random string of GitHub zen. @@ -154397,10 +154643,10 @@ x-webhooks: - from required: - note - enterprise: *725 - installation: *726 - organization: *727 - project_card: &767 + enterprise: *728 + installation: *729 + organization: *730 + project_card: &770 title: Project Card type: object properties: @@ -154519,7 +154765,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -154600,11 +154846,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project_card: *767 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_card: *770 + repository: *731 sender: *4 required: - action @@ -154684,9 +154930,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 project_card: title: Project Card type: object @@ -154814,8 +155060,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -154909,11 +155155,11 @@ x-webhooks: - from required: - note - enterprise: *725 - installation: *726 - organization: *727 - project_card: *767 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_card: *770 + repository: *731 sender: *4 required: - action @@ -155007,9 +155253,9 @@ x-webhooks: - from required: - column_id - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 project_card: allOf: - title: Project Card @@ -155199,7 +155445,7 @@ x-webhooks: type: string required: - after_id - repository: *728 + repository: *731 sender: *4 required: - action @@ -155279,10 +155525,10 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - organization: *727 - project: &769 + enterprise: *728 + installation: *729 + organization: *730 + project: &772 title: Project type: object properties: @@ -155406,7 +155652,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -155486,10 +155732,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project_column: &768 + enterprise: *728 + installation: *729 + organization: *730 + project_column: &771 title: Project Column type: object properties: @@ -155528,7 +155774,7 @@ x-webhooks: - name - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -155607,18 +155853,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -155708,11 +155954,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 + repository: *731 sender: *4 required: - action @@ -155792,11 +156038,11 @@ x-webhooks: type: string enum: - moved - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 + repository: *731 sender: *4 required: - action @@ -155876,11 +156122,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -155960,18 +156206,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - project: *769 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -156073,11 +156319,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -156156,11 +156402,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -156241,9 +156487,9 @@ x-webhooks: type: string enum: - closed - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156324,9 +156570,9 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156407,9 +156653,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156526,9 +156772,9 @@ x-webhooks: type: string to: type: string - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156611,7 +156857,7 @@ x-webhooks: type: string enum: - archived - changes: &773 + changes: &776 type: object properties: archived_at: @@ -156625,9 +156871,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *726 - organization: *727 - projects_v2_item: &770 + installation: *729 + organization: *730 + projects_v2_item: &773 title: Projects v2 Item description: An item belonging to a project type: object @@ -156645,7 +156891,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *273 + content_type: *276 creator: *4 created_at: type: string @@ -156762,9 +157008,9 @@ x-webhooks: nullable: true to: type: string - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156846,9 +157092,9 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156929,9 +157175,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -157037,7 +157283,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &771 + - &774 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -157059,7 +157305,7 @@ x-webhooks: required: - id - name - - &772 + - &775 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -157093,8 +157339,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *771 - - *772 + - *774 + - *775 required: - field_value - type: object @@ -157110,9 +157356,9 @@ x-webhooks: nullable: true required: - body - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -157207,9 +157453,9 @@ x-webhooks: to: type: string nullable: true - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -157292,10 +157538,10 @@ x-webhooks: type: string enum: - restored - changes: *773 - installation: *726 - organization: *727 - projects_v2_item: *770 + changes: *776 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -157377,9 +157623,9 @@ x-webhooks: type: string enum: - reopened - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -157460,14 +157706,14 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2_status_update: &776 + installation: *729 + organization: *730 + projects_v2_status_update: &779 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *774 - required: *775 + properties: *777 + required: *778 sender: *4 required: - action @@ -157548,9 +157794,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2_status_update: *776 + installation: *729 + organization: *730 + projects_v2_status_update: *779 sender: *4 required: - action @@ -157686,9 +157932,9 @@ x-webhooks: type: string format: date nullable: true - installation: *726 - organization: *727 - projects_v2_status_update: *776 + installation: *729 + organization: *730 + projects_v2_status_update: *779 sender: *4 required: - action @@ -157759,10 +158005,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - repository @@ -157839,13 +158085,13 @@ x-webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *725 - installation: *726 - number: &777 + assignee: *750 + enterprise: *728 + installation: *729 + number: &780 description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -160158,7 +160404,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -160240,11 +160486,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -162552,7 +162798,7 @@ x-webhooks: - draft reason: type: string - repository: *728 + repository: *731 sender: *4 required: - action @@ -162634,11 +162880,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -164946,7 +165192,7 @@ x-webhooks: - draft reason: type: string - repository: *728 + repository: *731 sender: *4 required: - action @@ -165028,13 +165274,13 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: &778 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: &781 allOf: - - *582 + - *585 - type: object properties: allow_auto_merge: @@ -165096,7 +165342,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *728 + repository: *731 sender: *4 required: - action @@ -165177,12 +165423,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -165262,11 +165508,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *725 - milestone: *566 - number: *777 - organization: *727 - pull_request: &779 + enterprise: *728 + milestone: *569 + number: *780 + organization: *730 + pull_request: &782 title: Pull Request type: object properties: @@ -167559,7 +167805,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -167638,11 +167884,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -169954,7 +170200,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *728 + repository: *731 sender: *4 required: - action @@ -170078,12 +170324,12 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -170163,11 +170409,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -172464,7 +172710,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -172544,11 +172790,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *725 - installation: *726 - label: *746 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + label: *749 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -174860,7 +175106,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -174941,10 +175187,10 @@ x-webhooks: type: string enum: - locked - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -177254,7 +177500,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -177334,12 +177580,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *725 - milestone: *566 - number: *777 - organization: *727 - pull_request: *779 - repository: *728 + enterprise: *728 + milestone: *569 + number: *780 + organization: *730 + pull_request: *782 + repository: *731 sender: *4 required: - action @@ -177418,12 +177664,12 @@ x-webhooks: type: string enum: - opened - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177504,12 +177750,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177589,12 +177835,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177960,9 +178206,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -180162,7 +180408,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -180242,7 +180488,7 @@ x-webhooks: type: string enum: - deleted - comment: &781 + comment: &784 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -180527,9 +180773,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -182717,7 +182963,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -182797,11 +183043,11 @@ x-webhooks: type: string enum: - edited - changes: *780 - comment: *781 - enterprise: *725 - installation: *726 - organization: *727 + changes: *783 + comment: *784 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -184992,7 +185238,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -185073,9 +185319,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -187278,7 +187524,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 review: description: The review that was affected. type: object @@ -187525,9 +187771,9 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -189581,8 +189827,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 - review: &782 + repository: *731 + review: &785 description: The review that was affected. type: object properties: @@ -189815,12 +190061,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -192133,7 +192379,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_reviewer: title: User type: object @@ -192217,12 +192463,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -194542,7 +194788,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194734,12 +194980,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -197054,7 +197300,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_reviewer: title: User type: object @@ -197139,12 +197385,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -199450,7 +199696,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199631,9 +199877,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -201838,8 +202084,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 - review: *782 + repository: *731 + review: *785 sender: *4 required: - action @@ -201919,9 +202165,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -204021,7 +204267,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 sender: *4 thread: type: object @@ -204408,9 +204654,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -206496,7 +206742,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 sender: *4 thread: type: object @@ -206886,10 +207132,10 @@ x-webhooks: type: string before: type: string - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -209190,7 +209436,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -209272,11 +209518,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *783 - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + assignee: *786 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -211589,7 +211835,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -211668,11 +211914,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *725 - installation: *726 - label: *746 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + label: *749 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -213975,7 +214221,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -214056,10 +214302,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -216354,7 +216600,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -216554,7 +216800,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *725 + enterprise: *728 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -216646,8 +216892,8 @@ x-webhooks: - url - author - committer - installation: *726 - organization: *727 + installation: *729 + organization: *730 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -217237,9 +217483,9 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 registry_package: type: object properties: @@ -217685,7 +217931,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *764 + items: *767 summary: type: string tag_name: @@ -217739,7 +217985,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -217817,9 +218063,9 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 registry_package: type: object properties: @@ -218127,7 +218373,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *767 summary: type: string tag_name: @@ -218176,7 +218422,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -218253,10 +218499,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - release: &784 + enterprise: *728 + installation: *729 + organization: *730 + release: &787 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218574,7 +218820,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *728 + repository: *731 sender: *4 required: - action @@ -218651,11 +218897,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -218772,11 +219018,11 @@ x-webhooks: type: boolean required: - to - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -218854,9 +219100,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -219178,7 +219424,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *728 + repository: *731 sender: *4 required: - action @@ -219254,10 +219500,10 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - release: &785 + enterprise: *728 + installation: *729 + organization: *730 + release: &788 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219576,7 +219822,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *728 + repository: *731 sender: *4 required: - action @@ -219652,11 +219898,11 @@ x-webhooks: type: string enum: - released - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -219732,11 +219978,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *725 - installation: *726 - organization: *727 - release: *785 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *788 + repository: *731 sender: *4 required: - action @@ -219812,11 +220058,11 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_advisory: *646 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_advisory: *649 sender: *4 required: - action @@ -219892,11 +220138,11 @@ x-webhooks: type: string enum: - reported - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_advisory: *646 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_advisory: *649 sender: *4 required: - action @@ -219972,10 +220218,10 @@ x-webhooks: type: string enum: - archived - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220052,10 +220298,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220133,10 +220379,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220220,10 +220466,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220335,10 +220581,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220410,10 +220656,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 status: type: string @@ -220494,10 +220740,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220574,10 +220820,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220671,10 +220917,10 @@ x-webhooks: - name required: - repository - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220754,11 +221000,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 sender: *4 required: - action @@ -220836,11 +221082,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 sender: *4 required: - action @@ -220918,11 +221164,11 @@ x-webhooks: type: string enum: - edited - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 changes: type: object properties: @@ -220941,16 +221187,16 @@ x-webhooks: properties: added: type: array - items: *288 + items: *291 deleted: type: array - items: *288 + items: *291 updated: type: array items: type: object properties: - condition: *288 + condition: *291 changes: type: object properties: @@ -220983,16 +221229,16 @@ x-webhooks: properties: added: type: array - items: *602 + items: *605 deleted: type: array - items: *602 + items: *605 updated: type: array items: type: object properties: - rule: *602 + rule: *605 changes: type: object properties: @@ -221226,10 +221472,10 @@ x-webhooks: - from required: - owner - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221307,10 +221553,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221388,7 +221634,7 @@ x-webhooks: type: string enum: - create - alert: &786 + alert: &789 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -221510,10 +221756,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221719,10 +221965,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221800,11 +222046,11 @@ x-webhooks: type: string enum: - reopen - alert: *786 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222003,10 +222249,10 @@ x-webhooks: enum: - fixed - open - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222084,11 +222330,11 @@ x-webhooks: type: string enum: - assigned - alert: &787 + alert: &790 type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -222096,8 +222342,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri @@ -222203,10 +222449,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222284,11 +222530,11 @@ x-webhooks: type: string enum: - created - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222369,11 +222615,11 @@ x-webhooks: type: string enum: - created - alert: *787 - installation: *726 - location: *788 - organization: *727 - repository: *728 + alert: *790 + installation: *729 + location: *791 + organization: *730 + repository: *731 sender: *4 required: - location @@ -222611,11 +222857,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222693,11 +222939,11 @@ x-webhooks: type: string enum: - reopened - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222775,11 +223021,11 @@ x-webhooks: type: string enum: - resolved - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222857,12 +223103,12 @@ x-webhooks: type: string enum: - unassigned - alert: *787 + alert: *790 assignee: *4 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222940,11 +223186,11 @@ x-webhooks: type: string enum: - validated - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -223070,10 +223316,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *728 - enterprise: *725 - installation: *726 - organization: *727 + repository: *731 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -223151,11 +223397,11 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - security_advisory: &789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + security_advisory: &792 description: The details of the security advisory, including summary, description, and severity. type: object @@ -223171,7 +223417,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *55 + cvss_severities: *57 cwes: type: array items: @@ -223338,11 +223584,11 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - security_advisory: *789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + security_advisory: *792 sender: *4 required: - action @@ -223415,10 +223661,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -223435,7 +223681,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *55 + cvss_severities: *57 cwes: type: array items: @@ -223602,11 +223848,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *287 - enterprise: *725 - installation: *726 - organization: *727 - repository: *335 + security_and_analysis: *290 + enterprise: *728 + installation: *729 + organization: *730 + repository: *338 sender: *4 required: - changes @@ -223684,12 +223930,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: &790 + sponsorship: &793 type: object properties: created_at: @@ -223990,12 +224236,12 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -224083,12 +224329,12 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -224165,17 +224411,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &791 + effective_date: &794 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: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -224249,7 +224495,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &792 + changes: &795 type: object properties: tier: @@ -224293,13 +224539,13 @@ x-webhooks: - from required: - tier - effective_date: *791 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + effective_date: *794 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -224376,13 +224622,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *792 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + changes: *795 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -224456,10 +224702,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224542,10 +224788,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224965,15 +225211,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *725 + enterprise: *728 id: description: The unique identifier of the status. type: integer - installation: *726 + installation: *729 name: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 sha: description: The Commit SHA. @@ -225082,15 +225328,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - parent_issue_repo: *71 + parent_issue: *79 + parent_issue_repo: *73 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - installation: *726 - organization: *727 - repository: *728 + sub_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -225174,15 +225420,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - parent_issue_repo: *71 + parent_issue: *79 + parent_issue_repo: *73 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - installation: *726 - organization: *727 - repository: *728 + sub_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -225266,15 +225512,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - sub_issue_repo: *71 + sub_issue: *79 + sub_issue_repo: *73 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - installation: *726 - organization: *727 - repository: *728 + parent_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -225358,15 +225604,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - sub_issue_repo: *71 + sub_issue: *79 + sub_issue_repo: *73 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - installation: *726 - organization: *727 - repository: *728 + parent_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -225443,12 +225689,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - team: &793 + team: &796 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -225671,9 +225917,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -226131,7 +226377,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -226207,9 +226453,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -226667,7 +226913,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -226744,9 +226990,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -227204,7 +227450,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -227348,9 +227594,9 @@ x-webhooks: - from required: - permissions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -227808,7 +228054,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - changes @@ -227886,9 +228132,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -228346,7 +228592,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -228422,10 +228668,10 @@ x-webhooks: type: string enum: - started - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -228498,16 +228744,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *725 + enterprise: *728 inputs: type: object nullable: true additionalProperties: true - installation: *726 - organization: *727 + installation: *729 + organization: *730 ref: type: string - repository: *728 + repository: *731 sender: *4 workflow: type: string @@ -228589,10 +228835,10 @@ x-webhooks: type: string enum: - completed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: allOf: @@ -228829,7 +229075,7 @@ x-webhooks: type: string required: - conclusion - deployment: *493 + deployment: *496 required: - action - repository @@ -228908,10 +229154,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: allOf: @@ -229171,7 +229417,7 @@ x-webhooks: required: - status - steps - deployment: *493 + deployment: *496 required: - action - repository @@ -229250,10 +229496,10 @@ x-webhooks: type: string enum: - queued - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: type: object @@ -229388,7 +229634,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *493 + deployment: *496 required: - action - repository @@ -229467,10 +229713,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: type: object @@ -229606,7 +229852,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *493 + deployment: *496 required: - action - repository @@ -229686,12 +229932,12 @@ x-webhooks: type: string enum: - completed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object @@ -230690,12 +230936,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object @@ -231679,12 +231925,12 @@ x-webhooks: type: string enum: - requested - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 90e86ca985..52f06435cf 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -17111,6 +17111,345 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -73294,6 +73633,340 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 07266e45ae..93038a9de6 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -428,7 +428,7 @@ paths: The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs. schema: type: string - - &45 + - &47 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 results before this cursor. For @@ -437,7 +437,7 @@ paths: required: false schema: type: string - - &46 + - &48 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 results after this cursor. For @@ -446,7 +446,7 @@ paths: required: false schema: type: string - - &53 + - &55 name: direction description: The direction to sort the results by. in: query @@ -649,7 +649,7 @@ paths: - vulnerable_version_range - first_patched_version - vulnerable_functions - cvss_severities: &55 + cvss_severities: &57 type: object nullable: true properties: @@ -689,7 +689,7 @@ paths: required: - vector_string - score - epss: &56 + epss: &58 type: object nullable: true readOnly: true @@ -827,7 +827,7 @@ paths: - subscriptions_url - type - url - type: &320 + type: &323 type: string description: The type of credit the user is receiving. enum: @@ -959,7 +959,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &123 + schema: &125 title: Validation Error Simple description: Validation Error Simple type: object @@ -992,7 +992,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &648 + - &651 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1110,7 +1110,7 @@ paths: GitHub. type: object nullable: true - properties: &72 + properties: &74 id: description: Unique identifier of the GitHub app example: 37 @@ -1243,7 +1243,7 @@ paths: about itself. example: 5 type: integer - required: &73 + required: &75 - id - node_id - owner @@ -1548,7 +1548,7 @@ paths: schema: type: integer default: 30 - - &207 + - &210 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 @@ -1564,7 +1564,7 @@ paths: application/json: schema: type: array - items: &208 + items: &211 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1644,7 +1644,7 @@ paths: - installation_id - repository_id examples: - default: &209 + default: &212 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1703,7 +1703,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &122 + schema: &124 title: Validation Error description: Validation Error type: object @@ -1772,7 +1772,7 @@ paths: description: Response content: application/json: - schema: &210 + schema: &213 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1886,7 +1886,7 @@ paths: - request - response examples: - default: &211 + default: &214 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2087,7 +2087,7 @@ paths: parameters: - *17 - *19 - - &84 + - &86 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2662,7 +2662,7 @@ paths: suspended_at: suspended_by: headers: - Link: &59 + Link: &61 example: ; rel="next", ; rel="last" schema: @@ -2851,11 +2851,11 @@ paths: - selected repositories: type: array - items: &71 + items: &73 title: Repository description: A repository on GitHub. type: object - properties: &285 + properties: &288 id: description: Unique identifier of the repository example: 42 @@ -2875,7 +2875,7 @@ paths: title: License Simple description: License Simple type: object - properties: &80 + properties: &82 key: type: string example: mit @@ -2897,7 +2897,7 @@ paths: html_url: type: string format: uri - required: &81 + required: &83 - key - name - url @@ -3296,7 +3296,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &286 + required: &289 - archive_url - assignees_url - blobs_url @@ -5082,7 +5082,7 @@ paths: responses: '202': *39 '422': *7 - '500': &113 + '500': &115 description: Internal Error content: application/json: @@ -7155,6 +7155,147 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - *40 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &45 + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included + in the OIDC token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization + or enterprise level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: &137 + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC + token + required: + - custom_property_name + examples: + default: &46 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *45 + examples: + default: *46 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *40 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7180,8 +7321,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -7189,7 +7330,7 @@ paths: application/json: schema: type: array - items: &47 + items: &49 type: object description: A code security configuration properties: @@ -7579,7 +7720,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &51 + code_scanning_options: &53 type: object description: Security Configuration feature options for code scanning nullable: true @@ -7596,7 +7737,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &50 + code_scanning_default_setup_options: &52 type: object description: Feature options for code scanning default setup nullable: true @@ -7721,9 +7862,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *47 + schema: *49 examples: - default: &48 + default: &50 value: id: 1325 target_type: enterprise @@ -7781,7 +7922,7 @@ paths: description: Response content: application/json: - schema: &182 + schema: &185 type: array description: A list of default code security configurations items: @@ -7795,9 +7936,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *47 + configuration: *49 examples: - default: &183 + default: &186 value: - default_for_new_repos: public configuration: @@ -7886,7 +8027,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *40 - - &49 + - &51 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -7898,9 +8039,9 @@ paths: description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *48 + default: *50 '304': *37 '403': *29 '404': *6 @@ -7925,7 +8066,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8004,8 +8145,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *50 - code_scanning_options: *51 + code_scanning_default_setup_options: *52 + code_scanning_options: *53 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -8101,13 +8242,13 @@ paths: description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *48 + default: *50 '304': *37 '403': *29 '404': *6 - '409': &52 + '409': &54 description: Conflict content: application/json: @@ -8135,14 +8276,14 @@ paths: url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *40 - - *49 + - *51 responses: - '204': &184 + '204': &187 description: A header with no content is returned. '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -8167,7 +8308,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8194,7 +8335,7 @@ paths: '202': *39 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -8219,7 +8360,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8259,12 +8400,12 @@ paths: - none - private_and_internal - public - configuration: *47 + configuration: *49 examples: default: value: default_for_new_repos: all - configuration: &181 + configuration: &184 value: id: 1325 target_type: organization @@ -8321,7 +8462,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *40 - - *49 + - *51 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -8330,8 +8471,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -8349,7 +8490,7 @@ paths: application/json: schema: type: array - items: &185 + items: &188 type: object description: Repositories associated with a code security configuration and attachment status @@ -8367,11 +8508,11 @@ paths: - failed - updating - removed_by_enterprise - repository: &58 + repository: &60 title: Simple Repository description: A GitHub repository. type: object - properties: &111 + properties: &113 id: type: integer format: int64 @@ -8598,7 +8739,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &112 + required: &114 - archive_url - assignees_url - blobs_url @@ -8650,7 +8791,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &186 + repository: &189 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8744,7 +8885,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &191 + - &194 name: state in: query description: |- @@ -8753,7 +8894,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &192 + - &195 name: severity in: query description: |- @@ -8762,7 +8903,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &193 + - &196 name: ecosystem in: query description: |- @@ -8771,14 +8912,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &194 + - &197 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &195 + - &198 name: epss_percentage in: query description: |- @@ -8790,7 +8931,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 - - &483 + - &486 name: has in: query description: |- @@ -8804,7 +8945,7 @@ paths: type: string enum: - patch - - &196 + - &199 name: assignee in: query description: |- @@ -8813,7 +8954,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &197 + - &200 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8823,7 +8964,7 @@ paths: enum: - development - runtime - - &198 + - &201 name: sort in: query description: |- @@ -8838,9 +8979,9 @@ paths: - updated - epss_percentage default: created - - *53 - - *45 - - *46 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -8849,11 +8990,11 @@ paths: application/json: schema: type: array - items: &199 + items: &202 type: object description: A Dependabot alert. properties: - number: &171 + number: &174 type: integer description: The security alert number. readOnly: true @@ -8871,7 +9012,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &54 + package: &56 type: object description: Details for the vulnerable package. readOnly: true @@ -8915,7 +9056,7 @@ paths: - unknown - direct - transitive - security_advisory: &484 + security_advisory: &487 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -8945,13 +9086,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &57 + items: &59 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *54 + package: *56 severity: type: string description: The severity of the vulnerability. @@ -8996,8 +9137,8 @@ paths: - medium - high - critical - cvss_severities: *55 - epss: *56 + cvss_severities: *57 + epss: *58 cwes: type: array description: Details for the advisory pertaining to Common @@ -9095,30 +9236,30 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *57 - url: &174 + security_vulnerability: *59 + url: &177 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &175 + html_url: &178 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &172 + created_at: &175 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &173 + updated_at: &176 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &177 + dismissed_at: &180 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9148,21 +9289,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &176 + fixed_at: &179 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - auto_dismissed_at: &485 + auto_dismissed_at: &488 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &486 + dismissal_request: &489 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -9205,7 +9346,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *58 + repository: *60 required: - number - state @@ -9224,7 +9365,7 @@ paths: - repository additionalProperties: false examples: - default: &200 + default: &203 value: - number: 2 state: dismissed @@ -9593,7 +9734,7 @@ paths: application/json: schema: type: array - items: &60 + items: &62 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -9664,7 +9805,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -9737,9 +9878,9 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: &68 + default: &70 value: id: 1 name: Justice League @@ -9768,7 +9909,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *40 - - &61 + - &63 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -9787,7 +9928,7 @@ paths: type: array items: *4 examples: - default: &62 + default: &64 value: - login: octocat id: 1 @@ -9808,7 +9949,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9826,7 +9967,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -9857,7 +9998,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9875,7 +10016,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -9906,7 +10047,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9924,8 +10065,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *40 - - *61 - - &63 + - *63 + - &65 name: username description: The handle for the GitHub user account. in: path @@ -9939,7 +10080,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &64 + exampleKey1: &66 value: login: octocat id: 1 @@ -9975,8 +10116,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *40 - - *61 - *63 + - *65 responses: '201': description: Successfully added team member @@ -9984,7 +10125,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *64 + exampleKey1: *66 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10002,8 +10143,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *40 - - *61 - *63 + - *65 responses: '204': description: Response @@ -10025,7 +10166,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *40 - - *61 + - *63 - *17 - *19 responses: @@ -10035,11 +10176,11 @@ paths: application/json: schema: type: array - items: &65 + items: &67 title: Organization Simple description: A GitHub organization. type: object - properties: &188 + properties: &191 login: type: string example: github @@ -10080,7 +10221,7 @@ paths: type: string example: A great organization nullable: true - required: &189 + required: &192 - login - url - id @@ -10094,7 +10235,7 @@ paths: - avatar_url - description examples: - default: &66 + default: &68 value: login: github id: 1 @@ -10125,7 +10266,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10153,9 +10294,9 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: &108 + default: &110 value: - login: github id: 1 @@ -10186,7 +10327,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10227,8 +10368,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *40 - - *61 - - &67 + - *63 + - &69 name: org description: The organization name. The name is not case sensitive. in: path @@ -10240,9 +10381,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 '404': description: The team is not assigned to the organization x-github: @@ -10261,16 +10402,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *40 - - *61 - - *67 + - *63 + - *69 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10287,8 +10428,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *40 - - *61 - - *67 + - *63 + - *69 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -10312,7 +10453,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *40 - - &69 + - &71 name: team_slug description: The slug of the team name. in: path @@ -10324,11 +10465,11 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *68 + default: *70 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -10346,7 +10487,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *40 - - *69 + - *71 requestBody: required: true content: @@ -10401,11 +10542,11 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *68 + default: *70 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -10426,7 +10567,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *40 - - *69 + - *71 responses: '204': description: Response @@ -10464,7 +10605,7 @@ paths: application/json: schema: type: array - items: &103 + items: &105 title: Event description: Event type: object @@ -10474,7 +10615,7 @@ paths: type: type: string nullable: true - actor: &70 + actor: &72 title: Actor description: Actor type: object @@ -10514,7 +10655,7 @@ paths: - id - name - url - org: *70 + org: *72 payload: oneOf: - title: CreateEvent @@ -10560,7 +10701,7 @@ paths: properties: action: type: string - discussion: &743 + discussion: &746 title: Discussion description: A Discussion in a repository. type: object @@ -10847,7 +10988,7 @@ paths: - id labels: type: array - items: &76 + items: &78 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -10922,12 +11063,12 @@ paths: properties: action: type: string - issue: &77 + issue: &79 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &537 + properties: &540 id: type: integer format: int64 @@ -11033,7 +11174,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &269 + properties: &272 url: type: string format: uri @@ -11103,7 +11244,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &270 + required: &273 - closed_issues - creator - description @@ -11182,7 +11323,7 @@ paths: timeline_url: type: string format: uri - type: &232 + type: &235 title: Issue Type description: The type of issue. type: object @@ -11232,7 +11373,7 @@ paths: - node_id - name - description - repository: *71 + repository: *73 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -11243,9 +11384,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - author_association: &74 + properties: *74 + required: *75 + author_association: &76 title: author_association type: string example: OWNER @@ -11260,7 +11401,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &75 + reactions: &77 title: Reaction Rollup type: object properties: @@ -11296,7 +11437,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &660 + sub_issues_summary: &663 title: Sub-issues Summary type: object properties: @@ -11321,7 +11462,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &78 + properties: &80 id: description: Unique identifier of the issue comment example: 42 @@ -11364,7 +11505,7 @@ paths: issue_url: type: string format: uri - author_association: *74 + author_association: *76 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -11375,15 +11516,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - reactions: *75 + properties: *74 + required: *75 + reactions: *77 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &559 + properties: &562 pinned_at: type: string format: date-time @@ -11395,11 +11536,11 @@ paths: properties: *20 required: *21 nullable: true - required: &560 + required: &563 - pinned_at - pinned_by nullable: true - required: &79 + required: &81 - id - node_id - html_url @@ -11409,7 +11550,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &661 + issue_dependencies_summary: &664 title: Issue Dependencies Summary type: object properties: @@ -11428,7 +11569,7 @@ paths: - total_blocking issue_field_values: type: array - items: &544 + items: &547 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11489,7 +11630,7 @@ paths: - node_id - data_type - value - required: &538 + required: &541 - closed_at - comments - comments_url @@ -11513,10 +11654,10 @@ paths: assignees: type: array items: *4 - label: *76 + label: *78 labels: type: array - items: *76 + items: *78 required: - action - issue @@ -11525,14 +11666,14 @@ paths: properties: action: type: string - issue: *77 - comment: &533 + issue: *79 + comment: &536 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 required: - action - issue @@ -11707,8 +11848,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true allow_forking: type: boolean @@ -11797,7 +11938,7 @@ paths: type: string number: type: integer - pull_request: &82 + pull_request: &84 title: Pull Request Minimal type: object properties: @@ -11868,10 +12009,10 @@ paths: assignees: type: array items: *4 - label: *76 + label: *78 labels: type: array - items: *76 + items: *78 required: - action - number @@ -11881,7 +12022,7 @@ paths: properties: action: type: string - pull_request: *82 + pull_request: *84 comment: type: object properties: @@ -12132,7 +12273,7 @@ paths: - pull_request updated_at: type: string - pull_request: *82 + pull_request: *84 required: - action - review @@ -12181,7 +12322,7 @@ paths: updated_at: type: string format: date-time - reactions: *75 + reactions: *77 required: - action - comment @@ -12192,7 +12333,7 @@ paths: type: string release: allOf: - - &593 + - &596 title: Release description: A release. type: object @@ -12263,7 +12404,7 @@ paths: author: *4 assets: type: array - items: &594 + items: &597 title: Release Asset description: Data related to a release. type: object @@ -12338,7 +12479,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *75 + reactions: *77 required: - assets_url - upload_url @@ -12430,7 +12571,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': &114 + '503': &116 description: Service unavailable content: application/json: @@ -12523,7 +12664,7 @@ paths: _links: type: object properties: - timeline: &83 + timeline: &85 title: Link With Type description: Hypermedia Link with Type type: object @@ -12535,17 +12676,17 @@ paths: required: - href - type - user: *83 - security_advisories: *83 - current_user: *83 - current_user_public: *83 - current_user_actor: *83 - current_user_organization: *83 + user: *85 + security_advisories: *85 + current_user: *85 + current_user_public: *85 + current_user_actor: *85 + current_user_organization: *85 current_user_organizations: type: array - items: *83 - repository_discussions: *83 - repository_discussions_category: *83 + items: *85 + repository_discussions: *85 + repository_discussions_category: *85 required: - timeline - user @@ -12607,7 +12748,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *84 + - *86 - *17 - *19 responses: @@ -12617,7 +12758,7 @@ paths: application/json: schema: type: array - items: &85 + items: &87 title: Base Gist description: Base Gist type: object @@ -12702,7 +12843,7 @@ paths: - created_at - updated_at examples: - default: &86 + default: &88 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -12747,7 +12888,7 @@ paths: site_admin: false truncated: false headers: - Link: *59 + Link: *61 '304': *37 '403': *29 x-github: @@ -12823,7 +12964,7 @@ paths: description: Response content: application/json: - schema: &87 + schema: &89 title: Gist Simple description: Gist Simple type: object @@ -12991,7 +13132,7 @@ paths: truncated: type: boolean examples: - default: &88 + default: &90 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -13095,7 +13236,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *84 + - *86 - *17 - *19 responses: @@ -13105,11 +13246,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '403': *29 @@ -13129,7 +13270,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *84 + - *86 - *17 - *19 responses: @@ -13139,11 +13280,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '401': *25 '304': *37 '403': *29 @@ -13169,7 +13310,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &89 + - &91 name: gist_id description: The unique identifier of the gist. in: path @@ -13181,10 +13322,10 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - default: *88 - '403': &92 + default: *90 + '403': &94 description: Forbidden Gist content: application/json: @@ -13232,7 +13373,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *89 + - *91 requestBody: required: true content: @@ -13292,9 +13433,9 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - updateGist: *88 + updateGist: *90 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -13452,7 +13593,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -13481,7 +13622,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *89 + - *91 - *17 - *19 responses: @@ -13491,7 +13632,7 @@ paths: application/json: schema: type: array - items: &90 + items: &92 title: Gist Comment description: A comment made to a gist. type: object @@ -13526,7 +13667,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *74 + author_association: *76 required: - url - id @@ -13566,7 +13707,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -13591,7 +13732,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *89 + - *91 requestBody: required: true content: @@ -13616,9 +13757,9 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: &91 + default: &93 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -13676,8 +13817,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *89 - - &93 + - *91 + - &95 name: comment_id description: The unique identifier of the comment. in: path @@ -13690,12 +13831,12 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '304': *37 '404': *6 - '403': *92 + '403': *94 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -13717,8 +13858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *89 - - *93 + - *91 + - *95 requestBody: required: true content: @@ -13743,9 +13884,9 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '404': *6 x-github: githubCloudOnly: false @@ -13762,8 +13903,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *89 - - *93 + - *91 + - *95 responses: '204': description: Response @@ -13786,7 +13927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *89 + - *91 - *17 - *19 responses: @@ -13887,7 +14028,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *89 + - *91 - *17 - *19 responses: @@ -13897,7 +14038,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -13943,7 +14084,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 '304': *37 '403': *29 @@ -13962,13 +14103,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *89 + - *91 responses: '201': description: Response content: application/json: - schema: *85 + schema: *87 examples: default: value: @@ -14039,7 +14180,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *89 + - *91 responses: '204': description: Response if gist is starred @@ -14069,7 +14210,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14091,7 +14232,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14120,7 +14261,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *89 + - *91 - name: sha in: path required: true @@ -14131,9 +14272,9 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - default: *88 + default: *90 '422': *15 '404': *6 '403': *29 @@ -14294,7 +14435,7 @@ paths: type: array items: allOf: - - *71 + - *73 repository_selection: type: string example: selected @@ -14417,7 +14558,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '403': *29 '304': *37 '401': *25 @@ -14501,7 +14642,7 @@ paths: - closed - all default: open - - &235 + - &238 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -14519,8 +14660,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - name: collab in: query required: false @@ -14550,9 +14691,9 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: &236 + default: &239 value: - id: 1 node_id: MDU6SXNzdWUx @@ -14797,7 +14938,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '404': *6 @@ -14836,8 +14977,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 examples: default: value: @@ -15122,7 +15263,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &94 + X-CommonMarker-Version: &96 example: 0.17.4 schema: type: string @@ -15177,7 +15318,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *94 + X-CommonMarker-Version: *96 content: text/html: schema: @@ -15206,7 +15347,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &97 + - &99 name: account_id description: account_id parameter in: path @@ -15218,7 +15359,7 @@ paths: description: Response content: application/json: - schema: &96 + schema: &98 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -15248,7 +15389,7 @@ paths: nullable: true id: type: integer - plan: &95 + plan: &97 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -15337,7 +15478,7 @@ paths: nullable: true updated_at: type: string - plan: *95 + plan: *97 required: - url - id @@ -15345,7 +15486,7 @@ paths: - login - marketplace_purchase examples: - default: &98 + default: &100 value: url: https://api.github.com/orgs/github type: Organization @@ -15430,9 +15571,9 @@ paths: application/json: schema: type: array - items: *95 + items: *97 examples: - default: &99 + default: &101 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -15450,7 +15591,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '404': *6 '401': *25 x-github: @@ -15472,14 +15613,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &100 + - &102 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &101 + - &103 name: sort description: The property to sort the results by. in: query @@ -15509,9 +15650,9 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: - default: &102 + default: &104 value: - url: https://api.github.com/orgs/github type: Organization @@ -15562,7 +15703,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '404': *6 '422': *15 '401': *25 @@ -15585,15 +15726,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *97 + - *99 responses: '200': description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *98 + default: *100 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -15625,11 +15766,11 @@ paths: application/json: schema: type: array - items: *95 + items: *97 examples: - default: *99 + default: *101 headers: - Link: *59 + Link: *61 '401': *25 x-github: githubCloudOnly: false @@ -15650,8 +15791,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *100 - - *101 + - *102 + - *103 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -15671,11 +15812,11 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: - default: *102 + default: *104 headers: - Link: *59 + Link: *61 '401': *25 x-github: githubCloudOnly: false @@ -15937,14 +16078,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &332 + - &335 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &333 + - &336 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -15961,7 +16102,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -16006,7 +16147,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &336 + '301': &339 description: Moved permanently content: application/json: @@ -16028,7 +16169,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &569 + - &572 name: all description: If `true`, show notifications marked as read. in: query @@ -16036,7 +16177,7 @@ paths: schema: type: boolean default: false - - &570 + - &573 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16045,8 +16186,8 @@ paths: schema: type: boolean default: false - - *84 - - &571 + - *86 + - &574 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: @@ -16071,18 +16212,18 @@ paths: application/json: schema: type: array - items: &104 + items: &106 title: Thread description: Thread type: object properties: id: type: string - repository: &153 + repository: &156 title: Minimal Repository description: Minimal Repository type: object - properties: &202 + properties: &205 id: type: integer format: int64 @@ -16368,7 +16509,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &287 + security_and_analysis: &290 nullable: true type: object properties: @@ -16481,7 +16622,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &203 + required: &206 - archive_url - assignees_url - blobs_url @@ -16569,7 +16710,7 @@ paths: - url - subscription_url examples: - default: &572 + default: &575 value: - id: '1' repository: @@ -16651,7 +16792,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -16735,7 +16876,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &105 + - &107 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -16749,7 +16890,7 @@ paths: description: Response content: application/json: - schema: *104 + schema: *106 examples: default: value: @@ -16851,7 +16992,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *105 + - *107 responses: '205': description: Reset Content @@ -16873,7 +17014,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *105 + - *107 responses: '204': description: No content @@ -16896,13 +17037,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *105 + - *107 responses: '200': description: Response content: application/json: - schema: &106 + schema: &108 title: Thread Subscription description: Thread Subscription type: object @@ -16939,7 +17080,7 @@ paths: - url - subscribed examples: - default: &107 + default: &109 value: subscribed: true ignored: false @@ -16970,7 +17111,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *105 + - *107 requestBody: required: false content: @@ -16991,9 +17132,9 @@ paths: description: Response content: application/json: - schema: *106 + schema: *108 examples: - default: *107 + default: *109 '304': *37 '403': *29 '401': *25 @@ -17016,7 +17157,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *105 + - *107 responses: '204': description: Response @@ -17111,9 +17252,9 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: Link: example: ; rel="next" @@ -17140,13 +17281,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &109 + schema: &111 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -17179,12 +17320,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *109 + schema: *111 examples: selected_actions: *42 responses: @@ -17213,13 +17354,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &110 + schema: &112 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -17252,12 +17393,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *110 + schema: *112 examples: selected_actions: *44 responses: @@ -17286,7 +17427,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-organization parameters: - - *67 + - *69 - name: page in: query description: The page number of results to fetch. @@ -17330,8 +17471,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *111 - required: *112 + properties: *113 + required: *114 nullable: true additionalProperties: false examples: @@ -17437,7 +17578,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -17503,7 +17644,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *67 + - *69 requestBody: required: true content: @@ -17552,7 +17693,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *67 + - *69 - name: page description: The page number of the results to fetch. in: query @@ -17703,7 +17844,7 @@ paths: total_count: 3 '404': *6 '403': *29 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -17724,8 +17865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *67 - - &115 + - *69 + - &117 name: budget_id description: The ID corresponding to the budget. in: path @@ -17821,8 +17962,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -17842,8 +17983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *67 - - *115 + - *69 + - *117 requestBody: required: true content: @@ -18034,8 +18175,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *67 - - *115 + - *69 + - *117 responses: '200': description: Response when deleting a budget @@ -18061,8 +18202,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18082,8 +18223,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *67 - - &116 + - *69 + - &118 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -18092,7 +18233,7 @@ paths: required: false schema: type: integer - - &118 + - &120 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current @@ -18101,7 +18242,7 @@ paths: required: false schema: type: integer - - &117 + - &119 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -18116,14 +18257,14 @@ paths: required: false schema: type: string - - &718 + - &721 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &119 + - &121 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18239,8 +18380,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18260,9 +18401,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *67 - - *116 - - &719 + - *69 + - *118 + - &722 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 @@ -18271,7 +18412,7 @@ paths: required: false schema: type: integer - - *117 + - *119 responses: '200': description: Billing usage report response for an organization @@ -18346,8 +18487,8 @@ paths: repositoryName: github/example '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18370,19 +18511,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *67 - - *116 + - *69 - *118 - - *117 - - &720 + - *120 + - *119 + - &723 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *119 - - &721 + - *121 + - &724 name: sku description: The SKU to query for usage. in: query @@ -18492,8 +18633,8 @@ paths: netAmount: 8.0 '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18519,13 +18660,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &120 + schema: &122 title: Organization Full description: Organization Full type: object @@ -18839,7 +18980,7 @@ paths: - updated_at - archived_at examples: - default-response: &121 + default-response: &123 value: login: github id: 1 @@ -18938,7 +19079,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *67 + - *69 requestBody: required: false content: @@ -19150,18 +19291,18 @@ paths: description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '422': description: Validation failed content: application/json: schema: oneOf: - - *122 - - *123 - '409': *52 + - *124 + - *125 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19184,7 +19325,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *67 + - *69 responses: '202': *39 '404': *6 @@ -19210,7 +19351,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -19236,7 +19377,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19257,7 +19398,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -19275,7 +19416,7 @@ paths: type: integer repository_cache_usages: type: array - items: &343 + items: &346 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19310,7 +19451,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19330,7 +19471,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -19348,7 +19489,7 @@ paths: type: integer runners: type: array - items: &124 + items: &126 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -19402,7 +19543,7 @@ paths: - display_name - source nullable: true - machine_size_details: &132 + machine_size_details: &134 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -19498,7 +19639,7 @@ paths: - public_ip_enabled - platform examples: - default: &152 + default: &155 value: total_count: 2 runners: @@ -19540,7 +19681,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19558,7 +19699,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -19635,9 +19776,9 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: &133 + default: &135 value: id: 5 name: My hosted ubuntu runner @@ -19678,7 +19819,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -19694,7 +19835,7 @@ paths: type: integer images: type: array - items: &125 + items: &127 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -19745,7 +19886,7 @@ paths: - latest_version - state examples: - default: &127 + default: &129 value: total_count: 2 image_versions: @@ -19776,8 +19917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - - *67 - - &126 + - *69 + - &128 name: image_definition_id description: Image definition ID of custom image in: path @@ -19789,7 +19930,7 @@ paths: description: Response content: application/json: - schema: *125 + schema: *127 examples: default: value: @@ -19819,8 +19960,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *67 - - *126 + - *69 + - *128 responses: '204': description: Response @@ -19843,8 +19984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - - *126 - - *67 + - *128 + - *69 responses: '200': description: Response @@ -19860,7 +20001,7 @@ paths: type: integer image_versions: type: array - items: &128 + items: &130 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -19893,7 +20034,7 @@ paths: - created_on - state_details examples: - default: *127 + default: *129 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19913,9 +20054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - - *67 - - *126 - - &129 + - *69 + - *128 + - &131 name: version description: Version of a custom image in: path @@ -19928,7 +20069,7 @@ paths: description: Response content: application/json: - schema: *128 + schema: *130 examples: default: value: @@ -19954,9 +20095,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - - *67 - - *126 - - *129 + - *69 + - *128 + - *131 responses: '204': description: Response @@ -19977,7 +20118,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -19993,7 +20134,7 @@ paths: type: integer images: type: array - items: &130 + items: &132 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20029,7 +20170,7 @@ paths: - display_name - source examples: - default: &131 + default: &133 value: id: ubuntu-20.04 platform: linux-x64 @@ -20053,7 +20194,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20069,9 +20210,9 @@ paths: type: integer images: type: array - items: *130 + items: *132 examples: - default: *131 + default: *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20088,7 +20229,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20141,7 +20282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20157,7 +20298,7 @@ paths: type: integer machine_specs: type: array - items: *132 + items: *134 examples: default: value: @@ -20182,7 +20323,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20226,8 +20367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *67 - - &134 + - *69 + - &136 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -20239,11 +20380,11 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20261,8 +20402,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *67 - - *134 + - *69 + - *136 requestBody: required: true content: @@ -20314,9 +20455,9 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -20332,21 +20473,126 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *67 - - *134 + - *69 + - *136 responses: '202': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - *69 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *45 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *69 + requestBody: + required: true + content: + application/json: + schema: *137 + examples: + default: *46 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *45 + examples: + default: *46 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *69 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -20361,13 +20607,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *67 + - *69 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &135 + schema: &138 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -20381,7 +20627,7 @@ paths: required: - include_claim_keys examples: - default: &136 + default: &139 value: include_claim_keys: - repo @@ -20403,20 +20649,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *135 + schema: *138 examples: - default: *136 + default: *139 responses: '201': description: Empty response content: application/json: - schema: &162 + schema: &165 title: Empty Object description: An object without any properties. type: object @@ -20446,7 +20692,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20455,7 +20701,7 @@ paths: schema: type: object properties: - enabled_repositories: &137 + enabled_repositories: &140 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -20468,7 +20714,7 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: &138 + allowed_actions: &141 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -20476,12 +20722,12 @@ paths: - all - local_only - selected - selected_actions_url: &349 + selected_actions_url: &352 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` is set to `selected`. - sha_pinning_required: &139 + sha_pinning_required: &142 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -20512,7 +20758,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -20523,9 +20769,9 @@ paths: schema: type: object properties: - enabled_repositories: *137 - allowed_actions: *138 - sha_pinning_required: *139 + enabled_repositories: *140 + allowed_actions: *141 + sha_pinning_required: *142 required: - enabled_repositories examples: @@ -20553,13 +20799,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &353 + schema: &356 type: object properties: days: @@ -20596,12 +20842,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &354 + schema: &357 type: object properties: days: @@ -20618,7 +20864,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -20638,13 +20884,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &140 + schema: &143 type: object properties: approval_policy: @@ -20658,7 +20904,7 @@ paths: required: - approval_policy examples: - default: &355 + default: &358 value: approval_policy: first_time_contributors '404': *6 @@ -20679,7 +20925,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -20689,7 +20935,7 @@ paths: required: true content: application/json: - schema: *140 + schema: *143 examples: default: summary: Set approval policy to first time contributors @@ -20711,13 +20957,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &356 + schema: &359 type: object required: - run_workflows_from_fork_pull_requests @@ -20743,7 +20989,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &141 + default: &144 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -20766,12 +21012,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &357 + schema: &360 type: object required: - run_workflows_from_fork_pull_requests @@ -20794,7 +21040,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *141 + default: *144 responses: '204': description: Empty response for successful settings update @@ -20824,7 +21070,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -20842,9 +21088,9 @@ paths: type: number repositories: type: array - items: *71 + items: *73 examples: - default: &145 + default: &148 value: total_count: 1 repositories: @@ -20984,7 +21230,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21028,8 +21274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *67 - - &142 + - *69 + - &145 name: repository_id description: The unique identifier of the repository. in: path @@ -21057,8 +21303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -21081,13 +21327,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &143 + schema: &146 type: object properties: github_owned_allowed: @@ -21109,7 +21355,7 @@ paths: items: type: string examples: - default: &144 + default: &147 value: github_owned_allowed: true verified_allowed: false @@ -21134,7 +21380,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21142,9 +21388,9 @@ paths: required: false content: application/json: - schema: *143 + schema: *146 examples: - selected_actions: *144 + selected_actions: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21164,7 +21410,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -21212,7 +21458,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21239,7 +21485,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21259,7 +21505,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#list-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -21274,9 +21520,9 @@ paths: type: integer repositories: type: array - items: *71 + items: *73 examples: - default: *145 + default: *148 '403': *29 '404': *6 x-github: @@ -21296,7 +21542,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21344,14 +21590,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21371,14 +21617,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21400,23 +21646,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &358 + schema: &361 type: object properties: - default_workflow_permissions: &146 + default_workflow_permissions: &149 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &147 + can_approve_pull_request_reviews: &150 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -21424,7 +21670,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &148 + default: &151 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -21449,7 +21695,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Success response @@ -21457,13 +21703,13 @@ paths: required: false content: application/json: - schema: &359 + schema: &362 type: object properties: - default_workflow_permissions: *146 - can_approve_pull_request_reviews: *147 + default_workflow_permissions: *149 + can_approve_pull_request_reviews: *150 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21483,7 +21729,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *67 + - *69 - *17 - *19 - name: visible_to_repository @@ -21508,7 +21754,7 @@ paths: type: number runner_groups: type: array - items: &149 + items: &152 type: object properties: id: @@ -21624,7 +21870,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21696,9 +21942,9 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: &151 + default: &154 value: id: 2 name: octo-runner-group @@ -21733,8 +21979,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *67 - - &150 + - *69 + - &153 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -21746,7 +21992,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: default: value: @@ -21782,8 +22028,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -21837,9 +22083,9 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *151 + default: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21858,8 +22104,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *67 - - *150 + - *69 + - *153 responses: '204': description: Response @@ -21882,8 +22128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *17 - *19 responses: @@ -21901,11 +22147,11 @@ paths: type: number runners: type: array - items: *124 + items: *126 examples: - default: *152 + default: *155 headers: - Link: *59 + Link: *61 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21925,8 +22171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *19 - *17 responses: @@ -21944,9 +22190,9 @@ paths: type: number repositories: type: array - items: *153 + items: *156 examples: - default: &669 + default: &672 value: total_count: 1 repositories: @@ -22198,8 +22444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22243,9 +22489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 - - *142 + - *69 + - *153 + - *145 responses: '204': description: Response @@ -22267,9 +22513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 - - *142 + - *69 + - *153 + - *145 responses: '204': description: Response @@ -22292,8 +22538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *17 - *19 responses: @@ -22311,7 +22557,7 @@ paths: type: number runners: type: array - items: &155 + items: &158 title: Self hosted runners description: A self hosted runner type: object @@ -22340,7 +22586,7 @@ paths: type: boolean labels: type: array - items: &158 + items: &161 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -22370,7 +22616,7 @@ paths: - busy - labels examples: - default: &156 + default: &159 value: total_count: 2 runners: @@ -22410,7 +22656,7 @@ paths: name: no-gpu type: custom headers: - Link: *59 + Link: *61 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22429,8 +22675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22474,9 +22720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *67 - - *150 - - &154 + - *69 + - *153 + - &157 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -22504,9 +22750,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *67 - - *150 - - *154 + - *69 + - *153 + - *157 responses: '204': description: Response @@ -22536,7 +22782,7 @@ paths: in: query schema: type: string - - *67 + - *69 - *17 - *19 responses: @@ -22554,11 +22800,11 @@ paths: type: integer runners: type: array - items: *155 + items: *158 examples: - default: *156 + default: *159 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22580,7 +22826,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -22588,7 +22834,7 @@ paths: application/json: schema: type: array - items: &360 + items: &363 title: Runner Application description: Runner Application type: object @@ -22613,7 +22859,7 @@ paths: - download_url - filename examples: - default: &361 + default: &364 value: - os: osx architecture: x64 @@ -22656,7 +22902,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -22699,7 +22945,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &362 + '201': &365 description: Response content: application/json: @@ -22709,7 +22955,7 @@ paths: - runner - encoded_jit_config properties: - runner: *155 + runner: *158 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -22738,7 +22984,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22766,13 +23012,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *67 + - *69 responses: '201': description: Response content: application/json: - schema: &157 + schema: &160 title: Authentication Token description: Authentication Token type: object @@ -22794,7 +23040,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *71 + items: *73 single_file: type: string example: config.yaml @@ -22810,7 +23056,7 @@ paths: - token - expires_at examples: - default: &363 + default: &366 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -22841,15 +23087,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *67 + - *69 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: &364 + default: &367 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -22874,16 +23120,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: '200': description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: &365 + default: &368 value: id: 23 name: MBP @@ -22924,8 +23170,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: '204': description: Response @@ -22951,10 +23197,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: - '200': &159 + '200': &162 description: Response content: application/json: @@ -22968,7 +23214,7 @@ paths: type: integer labels: type: array - items: *158 + items: *161 examples: default: value: @@ -23007,8 +23253,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-an-organization parameters: - - *67 - - *154 + - *69 + - *157 requestBody: required: true content: @@ -23032,7 +23278,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23056,8 +23302,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-an-organization parameters: - - *67 - - *154 + - *69 + - *157 requestBody: required: true content: @@ -23082,7 +23328,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23106,10 +23352,10 @@ 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-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: - '200': &366 + '200': &369 description: Response content: application/json: @@ -23123,7 +23369,7 @@ paths: type: integer labels: type: array - items: *158 + items: *161 examples: default: value: @@ -23164,9 +23410,9 @@ 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-an-organization parameters: - - *67 - - *154 - - &367 + - *69 + - *157 + - &370 name: name description: The name of a self-hosted runner's custom label. in: path @@ -23174,7 +23420,7 @@ paths: schema: type: string responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23199,7 +23445,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -23217,7 +23463,7 @@ paths: type: integer secrets: type: array - items: &160 + items: &163 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -23267,7 +23513,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23290,13 +23536,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &379 + schema: &382 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -23325,7 +23571,7 @@ paths: - key_id - key examples: - default: &380 + default: &383 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23350,8 +23596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *67 - - &161 + - *69 + - &164 name: secret_name description: The name of the secret. in: path @@ -23363,7 +23609,7 @@ paths: description: Response content: application/json: - schema: *160 + schema: *163 examples: default: value: @@ -23393,8 +23639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -23451,7 +23697,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -23477,8 +23723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -23504,8 +23750,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -23523,9 +23769,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: &165 + default: &168 value: total_count: 1 repositories: @@ -23617,8 +23863,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -23670,8 +23916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -23704,8 +23950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -23737,8 +23983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *67 - - &348 + - *69 + - &351 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -23762,7 +24008,7 @@ paths: type: integer variables: type: array - items: &163 + items: &166 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -23826,7 +24072,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23847,7 +24093,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *67 + - *69 requestBody: required: true content: @@ -23895,7 +24141,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -23920,8 +24166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *67 - - &164 + - *69 + - &167 name: name description: The name of the variable. in: path @@ -23933,7 +24179,7 @@ paths: description: Response content: application/json: - schema: *163 + schema: *166 examples: default: value: @@ -23963,8 +24209,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 requestBody: required: true content: @@ -24026,8 +24272,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 responses: '204': description: Response @@ -24053,8 +24299,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - *19 - *17 responses: @@ -24072,9 +24318,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 '409': description: Response when the visibility of the variable is not set to `selected` @@ -24100,8 +24346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 requestBody: required: true content: @@ -24150,8 +24396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - name: repository_id in: path required: true @@ -24185,8 +24431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - name: repository_id in: path required: true @@ -24227,7 +24473,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *67 + - *69 requestBody: required: true content: @@ -24343,7 +24589,7 @@ paths: type: integer deployment_records: type: array - items: &166 + items: &169 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -24387,7 +24633,7 @@ paths: with the deployment record. nullable: true examples: - default: &167 + default: &170 value: total_count: 1 deployment_records: @@ -24422,7 +24668,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *67 + - *69 - name: cluster in: path description: The cluster name. @@ -24558,9 +24804,9 @@ paths: type: integer deployment_records: type: array - items: *166 + items: *169 examples: - default: *167 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24580,7 +24826,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *67 + - *69 requestBody: required: true content: @@ -24732,7 +24978,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *67 + - *69 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -24757,9 +25003,9 @@ paths: type: integer deployment_records: type: array - items: *166 + items: *169 examples: - default: *167 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24779,7 +25025,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *67 + - *69 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -24862,9 +25108,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 requestBody: required: true content: @@ -24888,12 +25134,12 @@ paths: required: - subject_digests examples: - default: &700 + default: &703 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &701 + withPredicateType: &704 value: subject_digests: - sha256:abc123 @@ -24937,7 +25183,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &702 + default: &705 value: attestations_subject_digests: - sha256:abc: @@ -25046,7 +25292,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *67 + - *69 requestBody: required: true content: @@ -25111,7 +25357,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *67 + - *69 - name: subject_digest description: Subject Digest in: path @@ -25144,9 +25390,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -25194,7 +25440,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *67 + - *69 - name: attestation_id description: Attestation ID in: path @@ -25230,9 +25476,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25270,7 +25516,7 @@ paths: initiator: type: string examples: - default: &393 + default: &396 value: attestations: - bundle: @@ -25377,7 +25623,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -25389,7 +25635,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25408,8 +25654,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: If the user is blocked @@ -25434,8 +25680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -25455,8 +25701,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -25481,15 +25727,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *67 + - *69 - *19 - *17 - - *53 + - *55 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &168 + schema: &171 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -25515,7 +25761,7 @@ paths: application/json: schema: type: array - items: &169 + items: &172 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -25546,7 +25792,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &190 + items: &193 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -25621,7 +25867,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &247 + properties: &250 id: description: Unique identifier of the team type: integer @@ -25693,7 +25939,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &248 + required: &251 - id - node_id - url @@ -25736,7 +25982,7 @@ paths: type: string format: date-time nullable: true - state: *168 + state: *171 contact_link: description: The contact link of the campaign. type: string @@ -25831,9 +26077,9 @@ paths: closed_at: state: open headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25857,7 +26103,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -25956,9 +26202,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: &170 + default: &173 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -26007,7 +26253,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26029,7 +26275,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26041,16 +26287,16 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: *170 + default: *173 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26071,7 +26317,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26120,7 +26366,7 @@ paths: type: string format: uri nullable: true - state: *168 + state: *171 examples: default: value: @@ -26130,9 +26376,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: *170 + default: *173 '400': description: Bad Request content: @@ -26144,7 +26390,7 @@ paths: content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26165,7 +26411,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26176,7 +26422,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26198,18 +26444,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *67 - - &418 + - *69 + - &421 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`, but not both. in: query required: false - schema: &178 + schema: &181 type: string description: The name of the tool used to generate the code scanning analysis. - - &419 + - &422 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 @@ -26217,22 +26463,22 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &179 + schema: &182 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *45 - - *46 + - *47 + - *48 - *19 - *17 - - *53 + - *55 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &421 + schema: &424 type: string description: State of a code scanning alert. enum: @@ -26255,7 +26501,7 @@ paths: be returned. in: query required: false - schema: &422 + schema: &425 type: string description: Severity of a code scanning alert. enum: @@ -26284,18 +26530,18 @@ paths: items: type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: &423 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: &426 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &180 + state: &183 type: string description: State of a code scanning alert. nullable: true @@ -26303,7 +26549,7 @@ paths: - open - dismissed - fixed - fixed_at: *176 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -26311,8 +26557,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: &424 + dismissed_at: *180 + dismissed_reason: &427 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -26321,13 +26567,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &425 + dismissed_comment: &428 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &426 + rule: &429 type: object properties: id: @@ -26380,42 +26626,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &427 + tool: &430 type: object properties: - name: *178 + name: *181 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *179 - most_recent_instance: &428 + guid: *182 + most_recent_instance: &431 type: object properties: - ref: &420 + ref: &423 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &438 + analysis_key: &441 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: &439 + environment: &442 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: &440 + category: &443 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *180 + state: *183 commit_sha: type: string message: @@ -26423,7 +26669,7 @@ paths: properties: text: type: string - location: &441 + location: &444 type: object description: Describe a region within a file for the alert. properties: @@ -26444,7 +26690,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: &442 + items: &445 type: string description: A classification of the file. For example to identify it as generated. @@ -26454,7 +26700,7 @@ paths: - generated - test - library - repository: *58 + repository: *60 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -26709,9 +26955,9 @@ paths: trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26733,7 +26979,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *67 + - *69 - name: target_type in: query description: The target type of the code security configuration @@ -26752,8 +26998,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -26761,7 +27007,7 @@ paths: application/json: schema: type: array - items: *47 + items: *49 examples: default: value: @@ -26844,7 +27090,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *67 + - *69 requestBody: required: true content: @@ -26931,7 +27177,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *51 + code_scanning_options: *53 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -26940,7 +27186,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *50 + code_scanning_default_setup_options: *52 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -27079,9 +27325,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *47 + schema: *49 examples: - default: *181 + default: *184 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27103,15 +27349,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *182 + schema: *185 examples: - default: *183 + default: *186 '304': *37 '403': *29 '404': *6 @@ -27137,7 +27383,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *67 + - *69 requestBody: required: true content: @@ -27163,11 +27409,11 @@ paths: - 32 - 91 responses: - '204': *184 + '204': *187 '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27189,16 +27435,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 responses: '200': description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *181 + default: *184 '304': *37 '403': *29 '404': *6 @@ -27222,8 +27468,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27310,8 +27556,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *50 - code_scanning_options: *51 + code_scanning_default_setup_options: *52 + code_scanning_options: *53 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -27436,7 +27682,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *47 + schema: *49 examples: default: value: @@ -27495,14 +27741,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 responses: - '204': *184 + '204': *187 '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27526,8 +27772,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27590,8 +27836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27631,12 +27877,12 @@ paths: - none - private_and_internal - public - configuration: *47 + configuration: *49 examples: default: value: default_for_new_repos: all - configuration: *181 + configuration: *184 '403': *29 '404': *6 x-github: @@ -27660,8 +27906,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -27670,8 +27916,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -27689,13 +27935,13 @@ paths: application/json: schema: type: array - items: *185 + items: *188 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *186 + repository: *189 '403': *29 '404': *6 x-github: @@ -27719,7 +27965,7 @@ paths: parameters: - *17 - *19 - - *67 + - *69 responses: '200': description: Response @@ -27735,7 +27981,7 @@ paths: type: integer codespaces: type: array - items: &237 + items: &240 type: object title: Codespace description: A codespace. @@ -27760,12 +28006,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *153 + repository: *156 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &454 + properties: &457 name: type: string description: The name of the machine. @@ -27807,7 +28053,7 @@ paths: - ready - in_progress nullable: true - required: &455 + required: &458 - name - display_name - operating_system @@ -28012,7 +28258,7 @@ paths: - pulls_url - recent_folders examples: - default: &238 + default: &241 value: total_count: 3 codespaces: @@ -28422,7 +28668,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -28444,7 +28690,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *67 + - *69 deprecated: true requestBody: required: true @@ -28488,7 +28734,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28511,7 +28757,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *67 + - *69 deprecated: true requestBody: required: true @@ -28543,7 +28789,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28566,7 +28812,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *67 + - *69 requestBody: required: true content: @@ -28597,7 +28843,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28618,7 +28864,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -28636,7 +28882,7 @@ paths: type: integer secrets: type: array - items: &187 + items: &190 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -28675,7 +28921,7 @@ paths: - updated_at - visibility examples: - default: &456 + default: &459 value: total_count: 2 secrets: @@ -28688,7 +28934,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28707,13 +28953,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &457 + schema: &460 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -28742,7 +28988,7 @@ paths: - key_id - key examples: - default: &458 + default: &461 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28765,23 +29011,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: Response content: application/json: - schema: *187 + schema: *190 examples: - default: &460 + default: &463 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28801,8 +29047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -28857,7 +29103,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -28883,8 +29129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -28909,8 +29155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -28928,9 +29174,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 '404': *6 x-github: githubCloudOnly: false @@ -28952,8 +29198,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -29003,8 +29249,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -29037,8 +29283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -29077,7 +29323,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: OK @@ -29186,7 +29432,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29218,7 +29464,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *67 + - *69 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -29241,7 +29487,7 @@ paths: currently being billed. seats: type: array - items: &240 + items: &243 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -29258,15 +29504,15 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *188 - required: *189 + properties: *191 + required: *192 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *190 - - *60 + - *193 + - *62 nullable: true pending_cancellation_date: type: string @@ -29390,8 +29636,8 @@ paths: type: User site_admin: false headers: - Link: *59 - '500': *113 + Link: *61 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29424,7 +29670,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29466,7 +29712,7 @@ paths: default: value: seats_created: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29502,7 +29748,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29544,7 +29790,7 @@ paths: default: value: seats_cancelled: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29582,7 +29828,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29623,7 +29869,7 @@ paths: default: value: seats_created: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29659,7 +29905,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29701,7 +29947,7 @@ paths: default: value: seats_cancelled: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29741,7 +29987,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-content-exclusion-management#get-copilot-content-exclusion-rules-for-an-organization parameters: - - *67 + - *69 responses: '200': description: OK @@ -29761,7 +30007,7 @@ paths: value: octo-repo: - "/src/some-dir/kernel.rs" - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29794,7 +30040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-content-exclusion-management#set-copilot-content-exclusion-rules-for-an-organization parameters: - - *67 + - *69 requestBody: description: The content exclusion rules to set required: true @@ -29846,7 +30092,7 @@ paths: default: value: message: Content exclusion rules updated successfully. - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29885,7 +30131,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *67 + - *69 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -29917,7 +30163,7 @@ paths: application/json: schema: type: array - items: &325 + items: &328 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -30224,7 +30470,7 @@ paths: - date additionalProperties: true examples: - default: &326 + default: &329 value: - date: '2024-06-24' total_active_users: 24 @@ -30323,10 +30569,10 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *113 + '500': *115 '403': *29 '404': *6 - '422': &327 + '422': &330 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -30353,12 +30599,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *67 - - *191 - - *192 - - *193 + - *69 - *194 - *195 + - *196 + - *197 + - *198 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -30388,7 +30634,7 @@ paths: enum: - patch - deployment - - *196 + - *199 - name: runtime_risk in: query description: |- @@ -30397,11 +30643,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *197 - - *198 - - *53 - - *45 - - *46 + - *200 + - *201 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -30410,9 +30656,9 @@ paths: application/json: schema: type: array - items: *199 + items: *202 examples: - default: *200 + default: *203 '304': *37 '400': *14 '403': *29 @@ -30438,7 +30684,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -30456,7 +30702,7 @@ paths: type: integer secrets: type: array - items: &201 + items: &204 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -30506,7 +30752,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30527,13 +30773,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &489 + schema: &492 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -30550,7 +30796,7 @@ paths: - key_id - key examples: - default: &490 + default: &493 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -30573,14 +30819,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -30608,8 +30854,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -30664,7 +30910,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -30688,8 +30934,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -30713,8 +30959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -30732,9 +30978,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30755,8 +31001,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -30806,8 +31052,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -30838,8 +31084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -30869,7 +31115,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -30877,7 +31123,7 @@ paths: application/json: schema: type: array - items: &250 + items: &253 title: Package description: A software package type: object @@ -30927,8 +31173,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *202 - required: *203 + properties: *205 + required: *206 nullable: true created_at: type: string @@ -30947,7 +31193,7 @@ paths: - created_at - updated_at examples: - default: &251 + default: &254 value: - id: 197 name: hello_docker @@ -31025,7 +31271,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31035,7 +31281,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: 200-response: value: @@ -31107,7 +31353,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31117,7 +31363,7 @@ paths: application/json: schema: type: array - items: &226 + items: &229 title: Organization Invitation description: Organization Invitation type: object @@ -31164,7 +31410,7 @@ paths: - invitation_teams_url - node_id examples: - default: &227 + default: &230 value: - id: 1 login: monalisa @@ -31197,7 +31443,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -31221,7 +31467,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31231,7 +31477,7 @@ paths: application/json: schema: type: array - items: &204 + items: &207 title: Org Hook description: Org Hook type: object @@ -31319,7 +31565,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -31342,7 +31588,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *67 + - *69 requestBody: required: true content: @@ -31402,9 +31648,9 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: - default: &205 + default: &208 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -31451,8 +31697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *67 - - &206 + - *69 + - &209 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. @@ -31465,9 +31711,9 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: - default: *205 + default: *208 '404': *6 x-github: githubCloudOnly: false @@ -31494,8 +31740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 requestBody: required: false content: @@ -31540,7 +31786,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: default: value: @@ -31581,8 +31827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 responses: '204': description: Response @@ -31609,8 +31855,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *67 - - *206 + - *69 + - *209 responses: '200': description: Response @@ -31640,8 +31886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *67 - - *206 + - *69 + - *209 requestBody: required: false content: @@ -31691,10 +31937,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *17 - - *207 + - *210 responses: '200': description: Response @@ -31702,9 +31948,9 @@ paths: application/json: schema: type: array - items: *208 + items: *211 examples: - default: *209 + default: *212 '400': *14 '422': *15 x-github: @@ -31729,17 +31975,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *16 responses: '200': description: Response content: application/json: - schema: *210 + schema: *213 examples: - default: *211 + default: *214 '400': *14 '422': *15 x-github: @@ -31764,8 +32010,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *16 responses: '202': *39 @@ -31794,8 +32040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 responses: '204': description: Response @@ -31817,8 +32063,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *67 - - &216 + - *69 + - &219 name: actor_type in: path description: The type of the actor @@ -31831,14 +32077,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &217 + - &220 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &212 + - &215 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`.' @@ -31846,7 +32092,7 @@ paths: required: true schema: type: string - - &213 + - &216 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) @@ -31857,7 +32103,7 @@ paths: type: string - *19 - *17 - - *53 + - *55 - name: sort description: The property to sort the results by. in: query @@ -31939,13 +32185,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *67 - - *212 - - *213 + - *69 + - *215 + - *216 - *19 - *17 - - *53 - - &222 + - *55 + - &225 name: sort description: The property to sort the results by. in: query @@ -32022,15 +32268,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *67 - - *212 - - *213 + - *69 + - *215 + - *216 responses: '200': description: Response content: application/json: - schema: &214 + schema: &217 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -32046,7 +32292,7 @@ paths: type: integer format: int64 examples: - default: &215 + default: &218 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -32066,24 +32312,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *67 - - &218 + - *69 + - &221 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *212 - - *213 + - *215 + - *216 responses: '200': description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: *215 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32101,19 +32347,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *67 - - *212 - - *213 + - *69 + - *215 - *216 - - *217 + - *219 + - *220 responses: '200': description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: *215 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32130,10 +32376,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *67 - - *212 - - *213 - - &219 + - *69 + - *215 + - *216 + - &222 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -32146,7 +32392,7 @@ paths: description: Response content: application/json: - schema: &220 + schema: &223 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -32162,7 +32408,7 @@ paths: type: integer format: int64 examples: - default: &221 + default: &224 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -32198,19 +32444,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *67 - - *218 - - *212 - - *213 - - *219 + - *69 + - *221 + - *215 + - *216 + - *222 responses: '200': description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 x-github: enabledForGitHubApps: true category: orgs @@ -32227,20 +32473,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *67 - - *216 - - *217 - - *212 - - *213 + - *69 - *219 + - *220 + - *215 + - *216 + - *222 responses: '200': description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 x-github: enabledForGitHubApps: true category: orgs @@ -32257,14 +32503,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *67 - - *218 - - *212 - - *213 + - *69 + - *221 + - *215 + - *216 - *19 - *17 - - *53 - - *222 + - *55 + - *225 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -32337,7 +32583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *67 + - *69 responses: '200': description: Response @@ -32345,7 +32591,7 @@ paths: application/json: schema: *22 examples: - default: &528 + default: &531 value: id: 1 account: @@ -32414,7 +32660,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -32484,7 +32730,7 @@ paths: suspended_at: suspended_by: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32503,7 +32749,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -32511,12 +32757,12 @@ paths: application/json: schema: anyOf: - - &224 + - &227 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &223 + limit: &226 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -32541,7 +32787,7 @@ paths: properties: {} additionalProperties: false examples: - default: &225 + default: &228 value: limit: collaborators_only origin: organization @@ -32565,18 +32811,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &529 + schema: &532 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *223 + limit: *226 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -32600,9 +32846,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: *225 + default: *228 '422': *15 x-github: githubCloudOnly: false @@ -32620,7 +32866,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -32644,7 +32890,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *67 + - *69 - *17 - *19 - name: role @@ -32678,11 +32924,11 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -32703,7 +32949,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *67 + - *69 requestBody: required: false content: @@ -32757,7 +33003,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: default: value: @@ -32811,8 +33057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *67 - - &228 + - *69 + - &231 name: invitation_id description: The unique identifier of the invitation. in: path @@ -32842,8 +33088,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *67 - - *228 + - *69 + - *231 - *17 - *19 responses: @@ -32853,9 +33099,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: &249 + default: &252 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -32871,7 +33117,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -32890,7 +33136,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -32898,7 +33144,7 @@ paths: application/json: schema: type: array - items: &229 + items: &232 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -33041,7 +33287,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -33131,9 +33377,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - default: &230 + default: &233 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -33188,8 +33434,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *67 - - &231 + - *69 + - &234 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -33288,9 +33534,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - default: *230 + default: *233 '404': *6 '422': *7 x-github: @@ -33314,10 +33560,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *67 - - *231 + - *69 + - *234 responses: - '204': *184 + '204': *187 '404': *6 '422': *7 x-github: @@ -33337,7 +33583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -33345,7 +33591,7 @@ paths: application/json: schema: type: array - items: *232 + items: *235 examples: default: value: @@ -33383,7 +33629,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -33430,9 +33676,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *235 examples: - default: &233 + default: &236 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -33464,8 +33710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *67 - - &234 + - *69 + - &237 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -33518,9 +33764,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *235 examples: - default: *233 + default: *236 '404': *6 '422': *7 x-github: @@ -33544,8 +33790,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *67 - - *234 + - *69 + - *237 responses: '204': description: Response @@ -33578,7 +33824,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *67 + - *69 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -33608,7 +33854,7 @@ paths: - closed - all default: open - - *235 + - *238 - name: type description: Can be the name of an issue type. in: query @@ -33626,8 +33872,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -33637,11 +33883,11 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *236 + default: *239 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -33661,7 +33907,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *67 + - *69 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -33699,9 +33945,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -33719,8 +33965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response if requester is an organization member and user is @@ -33754,8 +34000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -33782,8 +34028,8 @@ paths: parameters: - *17 - *19 - - *67 - - *63 + - *69 + - *65 responses: '200': description: Response @@ -33799,11 +34045,11 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -33826,9 +34072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *67 - - *63 - - &239 + - *69 + - *65 + - &242 name: codespace_name in: path required: true @@ -33838,7 +34084,7 @@ paths: responses: '202': *39 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -33861,17 +34107,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *67 - - *63 - - *239 + - *69 + - *65 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: &453 + default: &456 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -34013,7 +34259,7 @@ paths: recent_folders: [] template: '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34044,14 +34290,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *240 + schema: *243 examples: default: value: @@ -34095,7 +34341,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34120,14 +34366,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '200': description: Response content: application/json: - schema: &241 + schema: &244 title: Org Membership description: Org Membership type: object @@ -34171,7 +34417,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *65 + organization: *67 user: title: Simple User description: A GitHub user. @@ -34194,7 +34440,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &242 + response-if-user-has-an-active-admin-membership-with-organization: &245 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -34266,8 +34512,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 requestBody: required: false content: @@ -34295,9 +34541,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: - response-if-user-already-had-membership-with-organization: *242 + response-if-user-already-had-membership-with-organization: *245 '422': *15 '403': *29 '451': *15 @@ -34322,8 +34568,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -34348,7 +34594,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *67 + - *69 - *17 - *19 - name: exclude @@ -34369,7 +34615,7 @@ paths: application/json: schema: type: array - items: &243 + items: &246 title: Migration description: A migration. type: object @@ -34410,7 +34656,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *58 + items: *60 url: type: string format: uri @@ -34606,7 +34852,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -34622,7 +34868,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *67 + - *69 requestBody: required: true content: @@ -34698,7 +34944,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -34876,8 +35122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *67 - - &244 + - *69 + - &247 name: migration_id description: The unique identifier of the migration. in: path @@ -34904,7 +35150,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -35073,8 +35319,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *67 - - *244 + - *69 + - *247 responses: '302': description: Response @@ -35095,8 +35341,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *67 - - *244 + - *69 + - *247 responses: '204': description: Response @@ -35119,9 +35365,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *67 - - *244 - - &682 + - *69 + - *247 + - &685 name: repo_name description: repo_name parameter in: path @@ -35148,8 +35394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *67 - - *244 + - *69 + - *247 - *17 - *19 responses: @@ -35159,9 +35405,9 @@ paths: application/json: schema: type: array - items: *58 + items: *60 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -35187,7 +35433,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response - list of organization roles @@ -35203,7 +35449,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &246 + items: &249 title: Organization Role description: Organization roles type: object @@ -35350,8 +35596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -35376,9 +35622,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *67 - *69 - - &245 + - *71 + - &248 name: role_id description: The unique identifier of the role. in: path @@ -35413,9 +35659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *67 - *69 - - *245 + - *71 + - *248 responses: '204': description: Response @@ -35440,8 +35686,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -35466,9 +35712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *67 - - *63 - - *245 + - *69 + - *65 + - *248 responses: '204': description: Response @@ -35498,9 +35744,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *67 - - *63 - - *245 + - *69 + - *65 + - *248 responses: '204': description: Response @@ -35528,14 +35774,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 responses: '200': description: Response content: application/json: - schema: *246 + schema: *249 examples: default: value: @@ -35585,8 +35831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 - *17 - *19 responses: @@ -35664,8 +35910,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 nullable: true type: description: The ownership type of the team @@ -35697,9 +35943,9 @@ paths: - type - parent examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '404': description: Response if the organization or role does not exist. '422': @@ -35726,8 +35972,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 - *17 - *19 responses: @@ -35755,13 +36001,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &321 + items: &324 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 name: nullable: true type: string @@ -35856,9 +36102,9 @@ paths: - type - url examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': description: Response if the organization or role does not exist. '422': @@ -35880,7 +36126,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *67 + - *69 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -35907,9 +36153,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35932,8 +36178,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *67 - - *63 + - *69 + - *65 requestBody: required: false content: @@ -35990,8 +36236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -36048,8 +36294,8 @@ paths: - docker - nuget - container - - *67 - - &683 + - *69 + - &686 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -36085,12 +36331,12 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *251 + default: *254 '403': *29 '401': *25 - '400': &685 + '400': &688 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -36112,7 +36358,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &252 + - &255 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 @@ -36130,20 +36376,20 @@ paths: - docker - nuget - container - - &253 + - &256 name: package_name description: The name of the package. in: path required: true schema: type: string - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: default: value: @@ -36195,9 +36441,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 responses: '204': description: Response @@ -36229,9 +36475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 - name: token description: package token schema: @@ -36263,9 +36509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 - *19 - *17 - name: state @@ -36285,7 +36531,7 @@ paths: application/json: schema: type: array - items: &254 + items: &257 title: Package Version description: A version of a software package type: object @@ -36410,10 +36656,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - - &255 + - *255 + - *256 + - *69 + - &258 name: package_version_id description: Unique identifier of the package version. in: path @@ -36425,7 +36671,7 @@ paths: description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -36461,10 +36707,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - *255 + - *256 + - *69 + - *258 responses: '204': description: Response @@ -36496,10 +36742,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - *255 + - *256 + - *69 + - *258 responses: '204': description: Response @@ -36526,10 +36772,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *67 + - *69 - *17 - *19 - - &256 + - &259 name: sort description: The property by which to sort the results. in: query @@ -36539,8 +36785,8 @@ paths: enum: - created_at default: created_at - - *53 - - &257 + - *55 + - &260 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -36551,7 +36797,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &258 + - &261 name: repository description: The name of the repository to use to filter the results. in: query @@ -36559,7 +36805,7 @@ paths: schema: type: string example: Hello-World - - &259 + - &262 name: permission description: The permission to use to filter the results. in: query @@ -36567,7 +36813,7 @@ paths: schema: type: string example: issues_read - - &260 + - &263 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) @@ -36577,7 +36823,7 @@ paths: schema: type: string format: date-time - - &261 + - &264 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) @@ -36587,7 +36833,7 @@ paths: schema: type: string format: date-time - - &262 + - &265 name: token_id description: The ID of the token in: query @@ -36599,7 +36845,7 @@ paths: type: string example: token_id[]=1,token_id[]=2 responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -36731,7 +36977,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36751,7 +36997,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *67 + - *69 requestBody: required: true content: @@ -36792,7 +37038,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -36817,7 +37063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *67 + - *69 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -36853,11 +37099,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36878,7 +37124,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *67 + - *69 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -36889,7 +37135,7 @@ paths: - *17 - *19 responses: - '500': *113 + '500': *115 '404': *6 '403': *29 '200': @@ -36898,9 +37144,9 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: &263 + default: &266 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -37013,7 +37259,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37034,19 +37280,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *67 + - *69 - *17 - *19 - - *256 - - *53 - - *257 - - *258 - *259 + - *55 - *260 - *261 - *262 + - *263 + - *264 + - *265 responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37173,7 +37419,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37193,7 +37439,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *67 + - *69 requestBody: required: true content: @@ -37228,7 +37474,7 @@ paths: - 1296269 - 1296280 responses: - '500': *113 + '500': *115 '404': *6 '202': *39 '403': *29 @@ -37253,7 +37499,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *67 + - *69 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -37281,9 +37527,9 @@ paths: value: action: revoke responses: - '500': *113 + '500': *115 '404': *6 - '204': *184 + '204': *187 '403': *29 '422': *15 x-github: @@ -37305,7 +37551,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *67 + - *69 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -37315,7 +37561,7 @@ paths: - *17 - *19 responses: - '500': *113 + '500': *115 '404': *6 '403': *29 '200': @@ -37324,11 +37570,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37350,7 +37596,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -37368,7 +37614,7 @@ paths: type: integer configurations: type: array - items: &264 + items: &267 title: Organization private registry description: Private registry configuration for an organization type: object @@ -37448,7 +37694,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *59 + Link: *61 '400': *14 '404': *6 x-github: @@ -37470,7 +37716,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -37658,7 +37904,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &265 + org-private-registry-with-selected-visibility: &268 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -37699,7 +37945,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -37725,7 +37971,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -37747,16 +37993,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *264 + schema: *267 examples: - default: *265 + default: *268 '404': *6 x-github: githubCloudOnly: false @@ -37777,8 +38023,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -37882,8 +38128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -37906,15 +38152,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *67 + - *69 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -37923,7 +38169,7 @@ paths: application/json: schema: type: array - items: &266 + items: &269 title: Projects v2 Project description: A projects v2 project type: object @@ -37993,7 +38239,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &774 + properties: &777 id: type: number description: The unique identifier of the status update. @@ -38041,7 +38287,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &775 + required: &778 - id - node_id - created_at @@ -38066,7 +38312,7 @@ paths: - deleted_at - deleted_by examples: - default: &267 + default: &270 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -38149,7 +38395,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38169,24 +38415,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &268 + - &271 name: project_number description: The project's number. in: path required: true schema: type: integer - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38206,8 +38452,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true description: Details of the draft item to create in the project. @@ -38241,7 +38487,7 @@ paths: description: Response content: application/json: - schema: &274 + schema: &277 title: Projects v2 Item description: An item belonging to a project type: object @@ -38254,8 +38500,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *77 - - &470 + - *79 + - &473 title: Pull Request Simple description: Pull Request Simple type: object @@ -38361,8 +38607,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true active_lock_reason: type: string @@ -38394,7 +38640,7 @@ paths: items: *4 requested_teams: type: array - items: *190 + items: *193 head: type: object properties: @@ -38402,7 +38648,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: @@ -38425,7 +38671,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: @@ -38444,7 +38690,7 @@ paths: _links: type: object properties: - comments: &271 + comments: &274 title: Link description: Hypermedia Link type: object @@ -38453,13 +38699,13 @@ paths: type: string required: - href - commits: *271 - statuses: *271 - html: *271 - issue: *271 - review_comments: *271 - review_comment: *271 - self: *271 + commits: *274 + statuses: *274 + html: *274 + issue: *274 + review_comments: *274 + review_comment: *274 + self: *274 required: - comments - commits @@ -38469,8 +38715,8 @@ paths: - review_comments - review_comment - self - author_association: *74 - auto_merge: &579 + author_association: *76 + auto_merge: &582 title: Auto merge description: The status of auto merging a pull request. type: object @@ -38570,7 +38816,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &273 + content_type: &276 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -38610,7 +38856,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &275 + draft_issue: &278 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -38684,11 +38930,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *268 - - *67 + - *271 + - *69 - *17 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -38696,7 +38942,7 @@ paths: application/json: schema: type: array - items: &272 + items: &275 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -38846,7 +39092,7 @@ paths: - updated_at - project_url examples: - default: &705 + default: &708 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38957,7 +39203,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38976,8 +39222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *268 - - *67 + - *271 + - *69 requestBody: required: true content: @@ -39023,7 +39269,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &706 + items: &709 type: object properties: name: @@ -39060,7 +39306,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &707 + iteration_configuration: &710 type: object description: The configuration for iteration fields. properties: @@ -39110,7 +39356,7 @@ paths: value: name: Due date data_type: date - single_select_field: &708 + single_select_field: &711 summary: Create a single select field value: name: Priority @@ -39137,7 +39383,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &709 + iteration_field: &712 summary: Create an iteration field value: name: Sprint @@ -39161,9 +39407,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *272 + schema: *275 examples: - text_field: &710 + text_field: &713 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -39172,7 +39418,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: &711 + number_field: &714 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -39181,7 +39427,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: &712 + date_field: &715 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -39190,7 +39436,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: &713 + single_select_field: &716 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39224,7 +39470,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &714 + iteration_field: &717 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -39269,23 +39515,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *268 - - &715 + - *271 + - &718 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: &716 + default: &719 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39320,7 +39566,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -39341,8 +39587,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *268 - - *67 + - *271 + - *69 - 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) for more information. @@ -39364,8 +39610,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -39374,7 +39620,7 @@ paths: application/json: schema: type: array - items: &276 + items: &279 title: Projects v2 Item description: An item belonging to a project type: object @@ -39390,7 +39636,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *273 + content_type: *276 content: type: object additionalProperties: true @@ -39433,7 +39679,7 @@ paths: - updated_at - archived_at examples: - default: &277 + default: &280 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -40110,7 +40356,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40130,8 +40376,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -40201,22 +40447,22 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *275 + value: *278 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *275 + value: *278 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *275 + value: *278 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *275 + value: *278 '304': *37 '403': *29 '401': *25 @@ -40236,9 +40482,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *268 - - *67 - - &278 + - *271 + - *69 + - &281 name: item_id description: The unique identifier of the project item. in: path @@ -40264,11 +40510,11 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40287,9 +40533,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *268 - - *67 - - *278 + - *271 + - *69 + - *281 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -40359,13 +40605,13 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - text_field: *277 - number_field: *277 - date_field: *277 - single_select_field: *277 - iteration_field: *277 + text_field: *280 + number_field: *280 + date_field: *280 + single_select_field: *280 + iteration_field: *280 '401': *25 '403': *29 '404': *6 @@ -40385,9 +40631,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *268 - - *67 - - *278 + - *271 + - *69 + - *281 responses: '204': description: Response @@ -40410,8 +40656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true content: @@ -40482,7 +40728,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &697 + schema: &700 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -40580,7 +40826,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &279 + value: &282 value: id: 1 number: 1 @@ -40626,10 +40872,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *279 + value: *282 roadmap_view: summary: Response for creating a roadmap view - value: *279 + value: *282 '304': *37 '403': *29 '401': *25 @@ -40657,9 +40903,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *268 - - *67 - - &717 + - *271 + - *69 + - &720 name: view_number description: The number that identifies the project view. in: path @@ -40681,8 +40927,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -40691,11 +40937,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40718,7 +40964,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -40726,7 +40972,7 @@ paths: application/json: schema: type: array - items: &280 + items: &283 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -40794,7 +41040,7 @@ paths: - property_name - value_type examples: - default: &281 + default: &284 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -40843,7 +41089,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -40854,7 +41100,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *280 + items: *283 minItems: 1 maxItems: 100 required: @@ -40884,9 +41130,9 @@ paths: application/json: schema: type: array - items: *280 + items: *283 examples: - default: *281 + default: *284 '403': *29 '404': *6 x-github: @@ -40907,8 +41153,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *67 - - &282 + - *69 + - &285 name: custom_property_name description: The custom property name in: path @@ -40920,9 +41166,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: &283 + default: &286 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -40956,8 +41202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *67 - - *282 + - *69 + - *285 requestBody: required: true content: @@ -41028,9 +41274,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: *283 + default: *286 '403': *29 '404': *6 x-github: @@ -41053,10 +41299,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *67 - - *282 + - *69 + - *285 responses: - '204': *184 + '204': *187 '403': *29 '404': *6 x-github: @@ -41077,7 +41323,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *67 + - *69 - *17 - *19 - name: repository_query @@ -41115,7 +41361,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &284 + items: &287 title: Custom Property Value description: Custom property name and associated value type: object @@ -41154,7 +41400,7 @@ paths: - property_name: team value: octocat headers: - Link: *59 + Link: *61 '403': *29 '404': *6 x-github: @@ -41182,7 +41428,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *67 + - *69 requestBody: required: true content: @@ -41202,7 +41448,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *284 + items: *287 required: - repository_names - properties @@ -41243,7 +41489,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *67 + - *69 - *17 - *19 responses: @@ -41255,9 +41501,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41274,8 +41520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response if user is a public member @@ -41299,8 +41545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -41321,8 +41567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -41346,7 +41592,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *67 + - *69 - name: type description: Specifies the types of repositories you want returned. in: query @@ -41392,11 +41638,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41415,7 +41661,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *67 + - *69 requestBody: required: true content: @@ -41596,7 +41842,7 @@ paths: description: Response content: application/json: - schema: &335 + schema: &338 title: Full Repository description: Full Repository type: object @@ -41884,8 +42130,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *285 - required: *286 + properties: *288 + required: *289 nullable: true temp_clone_token: type: string @@ -41969,8 +42215,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true organization: title: Simple User @@ -41979,8 +42225,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *71 - source: *71 + parent: *73 + source: *73 forks: type: integer master_branch: @@ -41997,7 +42243,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &475 + properties: &478 url: type: string format: uri @@ -42013,12 +42259,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &476 + required: &479 - url - key - name - html_url - security_and_analysis: *287 + security_and_analysis: *290 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42102,7 +42348,7 @@ paths: - network_count - subscribers_count examples: - default: &337 + default: &340 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42621,10 +42867,10 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - *17 - *19 - - &601 + - &604 name: targets description: | A comma-separated list of rule targets to filter by. @@ -42642,7 +42888,7 @@ paths: application/json: schema: type: array - items: &314 + items: &317 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -42677,7 +42923,7 @@ paths: source: type: string description: The name of the source - enforcement: &290 + enforcement: &293 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -42690,7 +42936,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &291 + items: &294 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -42760,7 +43006,7 @@ paths: conditions: nullable: true anyOf: - - &288 + - &291 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -42784,7 +43030,7 @@ paths: match. items: type: string - - &292 + - &295 title: Organization ruleset conditions type: object description: |- @@ -42798,7 +43044,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -42832,7 +43078,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -42854,7 +43100,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -42867,7 +43113,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &289 + items: &292 title: Repository ruleset property targeting definition type: object @@ -42900,17 +43146,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *289 + items: *292 required: - repository_property rules: type: array - items: &602 + items: &605 title: Repository Rule type: object description: A repository rule. oneOf: - - &293 + - &296 title: creation description: Only allow users with bypass permission to create matching refs. @@ -42922,7 +43168,7 @@ paths: type: string enum: - creation - - &294 + - &297 title: update description: Only allow users with bypass permission to update matching refs. @@ -42943,7 +43189,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &295 + - &298 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -42955,7 +43201,7 @@ paths: type: string enum: - deletion - - &296 + - &299 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -42967,7 +43213,7 @@ paths: type: string enum: - required_linear_history - - &600 + - &603 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -43045,7 +43291,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &297 + - &300 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -43069,7 +43315,7 @@ paths: type: string required: - required_deployment_environments - - &298 + - &301 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -43081,7 +43327,7 @@ paths: type: string enum: - required_signatures - - &299 + - &302 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -43187,7 +43433,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &300 + - &303 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -43235,7 +43481,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &301 + - &304 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -43247,7 +43493,7 @@ paths: type: string enum: - non_fast_forward - - &302 + - &305 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -43284,7 +43530,7 @@ paths: required: - operator - pattern - - &303 + - &306 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -43321,7 +43567,7 @@ paths: required: - operator - pattern - - &304 + - &307 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -43358,7 +43604,7 @@ paths: required: - operator - pattern - - &305 + - &308 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -43395,7 +43641,7 @@ paths: required: - operator - pattern - - &306 + - &309 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -43432,7 +43678,7 @@ paths: required: - operator - pattern - - &307 + - &310 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -43457,7 +43703,7 @@ paths: type: string required: - restricted_file_paths - - &308 + - &311 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -43481,7 +43727,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &309 + - &312 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -43504,7 +43750,7 @@ paths: type: string required: - restricted_file_extensions - - &310 + - &313 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -43529,7 +43775,7 @@ paths: maximum: 100 required: - max_file_size - - &311 + - &314 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -43579,7 +43825,7 @@ paths: - repository_id required: - workflows - - &312 + - &315 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -43640,7 +43886,7 @@ paths: - tool required: - code_scanning_tools - - &313 + - &316 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -43702,7 +43948,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -43718,7 +43964,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 requestBody: description: Request body required: true @@ -43739,23 +43985,20 @@ paths: - push - repository default: branch - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *292 + items: *294 + conditions: *295 rules: type: array description: An array of rules within the ruleset. - items: &316 + items: &319 title: Repository Rule type: object description: A repository rule. oneOf: - - *293 - - *294 - - *295 - *296 - *297 - *298 @@ -43774,6 +44017,9 @@ paths: - *311 - *312 - *313 + - *314 + - *315 + - *316 required: - name - enforcement @@ -43811,9 +44057,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: &315 + default: &318 value: id: 21 name: super cool ruleset @@ -43854,7 +44100,7 @@ paths: updated_at: '2023-09-23T16:29:47Z' '404': *6 '422': *15 - '500': *113 + '500': *115 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -43868,8 +44114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *67 - - &603 + - *69 + - &606 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 @@ -43884,7 +44130,7 @@ paths: in: query schema: type: string - - &604 + - &607 name: time_period description: |- The time period to filter by. @@ -43900,14 +44146,14 @@ paths: - week - month default: day - - &605 + - &608 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 - - &606 + - &609 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -43927,7 +44173,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &610 title: Rule Suites description: Response type: array @@ -43982,7 +44228,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &608 + default: &611 value: - id: 21 actor_id: 12 @@ -44006,7 +44252,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44025,8 +44271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *67 - - &609 + - *69 + - &612 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44042,7 +44288,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &613 title: Rule Suite description: Response type: object @@ -44141,7 +44387,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &611 + default: &614 value: id: 21 actor_id: 12 @@ -44176,7 +44422,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44202,7 +44448,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44214,11 +44460,11 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *315 + default: *318 '404': *6 - '500': *113 + '500': *115 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -44234,7 +44480,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44260,16 +44506,16 @@ paths: - tag - push - repository - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *292 + items: *294 + conditions: *295 rules: description: An array of rules within the ruleset. type: array - items: *316 + items: *319 examples: default: value: @@ -44304,12 +44550,12 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *315 + default: *318 '404': *6 '422': *15 - '500': *113 + '500': *115 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -44325,7 +44571,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44336,7 +44582,7 @@ paths: '204': description: Response '404': *6 - '500': *113 + '500': *115 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -44348,7 +44594,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *67 + - *69 - *17 - *19 - name: ruleset_id @@ -44364,7 +44610,7 @@ paths: application/json: schema: type: array - items: &317 + items: &320 title: Ruleset version type: object description: The historical version of a ruleset @@ -44388,7 +44634,7 @@ paths: type: string format: date-time examples: - default: &613 + default: &616 value: - version_id: 3 actor: @@ -44406,7 +44652,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44423,7 +44669,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44441,9 +44687,9 @@ paths: description: Response content: application/json: - schema: &614 + schema: &617 allOf: - - *317 + - *320 - type: object required: - state @@ -44490,7 +44736,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44512,8 +44758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *67 - - &615 + - *69 + - &618 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -44524,7 +44770,7 @@ paths: enum: - open - resolved - - &616 + - &619 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -44534,7 +44780,7 @@ paths: required: false schema: type: string - - &617 + - &620 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -44543,7 +44789,7 @@ paths: required: false schema: type: string - - &618 + - &621 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -44562,7 +44808,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &619 + - &622 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. @@ -44574,10 +44820,10 @@ paths: - created - updated default: created - - *53 + - *55 - *19 - *17 - - &620 + - &623 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 @@ -44587,7 +44833,7 @@ paths: required: false schema: type: string - - &621 + - &624 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 @@ -44597,7 +44843,7 @@ paths: required: false schema: type: string - - &622 + - &625 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -44606,7 +44852,7 @@ paths: required: false schema: type: string - - &623 + - &626 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -44615,7 +44861,7 @@ paths: schema: type: boolean default: false - - &624 + - &627 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -44624,7 +44870,7 @@ paths: schema: type: boolean default: false - - &625 + - &628 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -44643,8 +44889,8 @@ paths: items: type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -44652,21 +44898,21 @@ paths: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &626 + state: &629 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: &627 + resolution: &630 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -44700,7 +44946,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *58 + repository: *60 push_protection_bypassed: type: boolean description: Whether push protection was bypassed for the detected @@ -44773,8 +45019,8 @@ paths: pull request. ' - oneOf: &628 - - &630 + oneOf: &631 + - &633 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -44826,7 +45072,7 @@ paths: - blob_url - commit_sha - commit_url - - &631 + - &634 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. @@ -44881,7 +45127,7 @@ paths: - page_url - commit_sha - commit_url - - &632 + - &635 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -44895,7 +45141,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &633 + - &636 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -44909,7 +45155,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &634 + - &637 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -44923,7 +45169,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &635 + - &638 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -44937,7 +45183,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &636 + - &639 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -44951,7 +45197,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &637 + - &640 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -44965,7 +45211,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &638 + - &641 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. @@ -44979,7 +45225,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &639 + - &642 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. @@ -44993,7 +45239,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &640 + - &643 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. @@ -45007,7 +45253,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &641 + - &644 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. @@ -45021,7 +45267,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &642 + - &645 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -45224,9 +45470,9 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45251,7 +45497,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *67 + - *69 responses: '200': description: Response @@ -45263,7 +45509,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &319 + pattern_config_version: &322 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -45272,7 +45518,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &318 + items: &321 type: object properties: token_type: @@ -45338,7 +45584,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *318 + items: *321 examples: default: value: @@ -45387,7 +45633,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *67 + - *69 requestBody: required: true content: @@ -45395,7 +45641,7 @@ paths: schema: type: object properties: - pattern_config_version: *319 + pattern_config_version: *322 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -45421,7 +45667,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *319 + custom_pattern_version: *322 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -45457,7 +45703,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 "/orgs/{org}/security-advisories": get: @@ -45475,8 +45721,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *67 - - *53 + - *69 + - *55 - name: sort description: The property to sort the results by. in: query @@ -45488,8 +45734,8 @@ paths: - updated - published default: created - - *45 - - *46 + - *47 + - *48 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -45519,7 +45765,7 @@ paths: application/json: schema: type: array - items: &646 + items: &649 description: A repository security advisory. type: object properties: @@ -45688,7 +45934,7 @@ paths: - patched_versions - vulnerable_functions additionalProperties: false - cvss_severities: *55 + cvss_severities: *57 cwes: type: array nullable: true @@ -45721,7 +45967,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 credits_detailed: type: array nullable: true @@ -45731,7 +45977,7 @@ paths: type: object properties: user: *4 - type: *320 + type: *323 state: type: string description: The state of the user's acceptance of the @@ -45755,14 +46001,14 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *190 + items: *193 private_fork: readOnly: true nullable: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *58 + - *60 required: - ghsa_id - cve_id @@ -45791,7 +46037,7 @@ paths: - private_fork additionalProperties: false examples: - default: &647 + default: &650 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -46170,7 +46416,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *67 + - *69 responses: '200': description: Response @@ -46178,7 +46424,7 @@ paths: application/json: schema: type: array - items: *321 + items: *324 examples: default: value: @@ -46218,8 +46464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -46244,8 +46490,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -46272,7 +46518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Immutable releases settings response @@ -46321,7 +46567,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -46378,7 +46624,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *67 + - *69 - *19 - *17 responses: @@ -46396,9 +46642,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46417,7 +46663,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *67 + - *69 requestBody: required: true content: @@ -46466,8 +46712,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -46489,8 +46735,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -46513,7 +46759,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -46531,7 +46777,7 @@ paths: type: integer network_configurations: type: array - items: &322 + items: &325 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -46602,7 +46848,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46621,7 +46867,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -46664,9 +46910,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: &323 + default: &326 value: id: 123456789ABCDEF name: My network configuration @@ -46694,8 +46940,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 - - &324 + - *69 + - &327 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -46707,11 +46953,11 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *323 + default: *326 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46730,8 +46976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 - - *324 + - *69 + - *327 requestBody: required: true content: @@ -46771,9 +47017,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *323 + default: *326 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46792,8 +47038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - - *67 - - *324 + - *69 + - *327 responses: '204': description: Response @@ -46816,7 +47062,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - - *67 + - *69 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -46870,7 +47116,7 @@ paths: subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" region: eastus headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46900,8 +47146,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *67 - *69 + - *71 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -46933,13 +47179,13 @@ paths: application/json: schema: type: array - items: *325 + items: *328 examples: - default: *326 - '500': *113 + default: *329 + '500': *115 '403': *29 '404': *6 - '422': *327 + '422': *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46957,7 +47203,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *67 + - *69 - *17 - *19 - name: team_type @@ -46979,11 +47225,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -47003,7 +47249,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *67 + - *69 requestBody: required: true content: @@ -47067,7 +47313,7 @@ paths: description: Response content: application/json: - schema: &328 + schema: &331 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -47130,8 +47376,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 nullable: true members_count: type: integer @@ -47394,7 +47640,7 @@ paths: - repos_count - organization examples: - default: &329 + default: &332 value: id: 1 node_id: MDQ6VGVhbTE= @@ -47464,16 +47710,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *67 - *69 + - *71 responses: '200': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 x-github: githubCloudOnly: false @@ -47494,8 +47740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *67 - *69 + - *71 requestBody: required: false content: @@ -47557,16 +47803,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '201': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 '422': *15 '403': *29 @@ -47591,12 +47837,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response - '422': &330 + '422': &333 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -47619,8 +47865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -47630,12 +47876,12 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 - '422': *330 + Link: *61 + '422': *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47655,8 +47901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *67 - *69 + - *71 - name: role description: Filters members returned by their role in the team. in: query @@ -47679,9 +47925,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47709,15 +47955,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 responses: '200': description: Response content: application/json: - schema: &331 + schema: &334 title: Team Membership description: Team Membership type: object @@ -47744,7 +47990,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &663 + response-if-user-is-a-team-maintainer: &666 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47780,9 +48026,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 requestBody: required: false content: @@ -47807,9 +48053,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-users-membership-with-team-is-now-pending: &664 + response-if-users-membership-with-team-is-now-pending: &667 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47844,9 +48090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 responses: '204': description: Response @@ -47872,8 +48118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -47883,11 +48129,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47914,16 +48160,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &665 + schema: &668 title: Team Repository description: A team's access to a repository. type: object @@ -47946,8 +48192,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true forks: type: integer @@ -48486,10 +48732,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 requestBody: required: false content: @@ -48534,10 +48780,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 responses: '204': description: Response @@ -48561,8 +48807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -48572,9 +48818,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - response-if-child-teams-exist: &666 + response-if-child-teams-exist: &669 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48602,7 +48848,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48627,7 +48873,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *67 + - *69 - name: security_product in: path description: The security feature to enable or disable. @@ -48728,7 +48974,7 @@ paths: resources: type: object properties: - core: &334 + core: &337 title: Rate Limit type: object properties: @@ -48745,17 +48991,17 @@ paths: - remaining - reset - used - graphql: *334 - search: *334 - code_search: *334 - source_import: *334 - integration_manifest: *334 - code_scanning_upload: *334 - actions_runner_registration: *334 - scim: *334 - dependency_snapshots: *334 - dependency_sbom: *334 - code_scanning_autofix: *334 + graphql: *337 + search: *337 + code_search: *337 + source_import: *337 + integration_manifest: *337 + code_scanning_upload: *337 + actions_runner_registration: *337 + scim: *337 + dependency_snapshots: *337 + dependency_sbom: *337 + code_scanning_autofix: *337 required: - core - search @@ -48862,14 +49108,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *335 + schema: *338 examples: default-response: summary: Default response @@ -49374,7 +49620,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *336 + '301': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49392,8 +49638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -49684,10 +49930,10 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 - '307': &338 + default: *340 + '307': &341 description: Temporary Redirect content: application/json: @@ -49716,8 +49962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -49739,9 +49985,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *338 + '307': *341 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49763,11 +50009,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - - &371 + - &374 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -49790,7 +50036,7 @@ paths: type: integer artifacts: type: array - items: &339 + items: &342 title: Artifact description: An artifact type: object @@ -49868,7 +50114,7 @@ paths: - expires_at - updated_at examples: - default: &372 + default: &375 value: total_count: 2 artifacts: @@ -49907,7 +50153,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49929,9 +50175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *332 - - *333 - - &340 + - *335 + - *336 + - &343 name: artifact_id description: The unique identifier of the artifact. in: path @@ -49943,7 +50189,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *342 examples: default: value: @@ -49981,9 +50227,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *332 - - *333 - - *340 + - *335 + - *336 + - *343 responses: '204': description: Response @@ -50007,9 +50253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *332 - - *333 - - *340 + - *335 + - *336 + - *343 - name: archive_format in: path required: true @@ -50023,7 +50269,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &532 + '410': &535 description: Gone content: application/json: @@ -50048,14 +50294,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &341 + schema: &344 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -50088,13 +50334,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *341 + schema: *344 examples: selected_actions: *42 responses: @@ -50123,14 +50369,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &342 + schema: &345 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -50163,13 +50409,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *342 + schema: *345 examples: selected_actions: *44 responses: @@ -50200,14 +50446,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *343 + schema: *346 examples: default: value: @@ -50233,11 +50479,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - - &344 + - &347 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 @@ -50265,13 +50511,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *53 + - *55 responses: '200': description: Response content: application/json: - schema: &345 + schema: &348 title: Repository actions caches description: Repository actions caches type: object @@ -50313,7 +50559,7 @@ paths: - total_count - actions_caches examples: - default: &346 + default: &349 value: total_count: 1 actions_caches: @@ -50325,7 +50571,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50345,23 +50591,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: - - *332 - - *333 + - *335 + - *336 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *344 + - *347 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50381,8 +50627,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: - - *332 - - *333 + - *335 + - *336 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50413,9 +50659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *332 - - *333 - - &347 + - *335 + - *336 + - &350 name: job_id description: The unique identifier of the job. in: path @@ -50427,7 +50673,7 @@ paths: description: Response content: application/json: - schema: &375 + schema: &378 title: Job description: Information of a job execution in a workflow run type: object @@ -50734,9 +50980,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *332 - - *333 - - *347 + - *335 + - *336 + - *350 responses: '302': description: Response @@ -50764,9 +51010,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *332 - - *333 - - *347 + - *335 + - *336 + - *350 requestBody: required: false content: @@ -50787,7 +51033,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -50811,8 +51057,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Status response @@ -50862,8 +51108,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: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -50897,7 +51143,7 @@ paths: description: Empty response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -50926,8 +51172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -50945,7 +51191,7 @@ paths: type: integer secrets: type: array - items: &377 + items: &380 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -50965,7 +51211,7 @@ paths: - created_at - updated_at examples: - default: &378 + default: &381 value: total_count: 2 secrets: @@ -50976,7 +51222,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50998,9 +51244,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *332 - - *333 - - *348 + - *335 + - *336 + - *351 - *19 responses: '200': @@ -51017,7 +51263,7 @@ paths: type: integer variables: type: array - items: &381 + items: &384 title: Actions Variable type: object properties: @@ -51047,7 +51293,7 @@ paths: - created_at - updated_at examples: - default: &382 + default: &385 value: total_count: 2 variables: @@ -51060,7 +51306,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51080,8 +51326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -51090,12 +51336,12 @@ paths: schema: type: object properties: - enabled: &350 + enabled: &353 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *138 - selected_actions_url: *349 - sha_pinning_required: *139 + allowed_actions: *141 + selected_actions_url: *352 + sha_pinning_required: *142 required: - enabled examples: @@ -51123,8 +51369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51135,9 +51381,9 @@ paths: schema: type: object properties: - enabled: *350 - allowed_actions: *138 - sha_pinning_required: *139 + enabled: *353 + allowed_actions: *141 + sha_pinning_required: *142 required: - enabled examples: @@ -51167,14 +51413,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &351 + schema: &354 type: object properties: access_level: @@ -51191,7 +51437,7 @@ paths: required: - access_level examples: - default: &352 + default: &355 value: access_level: organization x-github: @@ -51215,15 +51461,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: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *351 + schema: *354 examples: - default: *352 + default: *355 responses: '204': description: Response @@ -51247,14 +51493,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *353 + schema: *356 examples: default: value: @@ -51278,8 +51524,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Empty response for successful settings update @@ -51289,7 +51535,7 @@ paths: required: true content: application/json: - schema: *354 + schema: *357 examples: default: summary: Set retention days @@ -51313,16 +51559,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *140 + schema: *143 examples: - default: *355 + default: *358 '404': *6 x-github: enabledForGitHubApps: true @@ -51341,8 +51587,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51352,7 +51598,7 @@ paths: required: true content: application/json: - schema: *140 + schema: *143 examples: default: summary: Set approval policy to first time contributors @@ -51376,16 +51622,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *356 + schema: *359 examples: - default: *141 + default: *144 '403': *29 '404': *6 x-github: @@ -51405,15 +51651,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *357 + schema: *360 examples: - default: *141 + default: *144 responses: '204': description: Empty response for successful settings update @@ -51437,16 +51683,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *143 + schema: *146 examples: - default: *144 + default: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -51465,8 +51711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51474,9 +51720,9 @@ paths: required: false content: application/json: - schema: *143 + schema: *146 examples: - selected_actions: *144 + selected_actions: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -51498,16 +51744,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51528,8 +51774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Success response @@ -51540,9 +51786,9 @@ paths: required: true content: application/json: - schema: *359 + schema: *362 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51569,8 +51815,8 @@ paths: in: query schema: type: string - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -51588,11 +51834,11 @@ paths: type: integer runners: type: array - items: *155 + items: *158 examples: - default: *156 + default: *159 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51614,8 +51860,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -51623,9 +51869,9 @@ paths: application/json: schema: type: array - items: *360 + items: *363 examples: - default: *361 + default: *364 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51647,8 +51893,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: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -51691,10 +51937,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *362 + '201': *365 '404': *6 '422': *7 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51722,16 +51968,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51759,16 +52005,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: *364 + default: *367 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51790,17 +52036,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: '200': description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: *365 + default: *368 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51821,9 +52067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: '204': description: Response @@ -51849,11 +52095,11 @@ 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: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: - '200': *159 + '200': *162 '404': *6 x-github: githubCloudOnly: false @@ -51875,9 +52121,9 @@ 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: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 requestBody: required: true content: @@ -51901,7 +52147,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -51925,9 +52171,9 @@ 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: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 requestBody: required: true content: @@ -51952,7 +52198,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -51976,11 +52222,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: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: - '200': *366 + '200': *369 '404': *6 x-github: githubCloudOnly: false @@ -52007,12 +52253,12 @@ 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: - - *332 - - *333 - - *154 - - *367 + - *335 + - *336 + - *157 + - *370 responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -52038,9 +52284,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *332 - - *333 - - &385 + - *335 + - *336 + - &388 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. @@ -52048,7 +52294,7 @@ paths: required: false schema: type: string - - &386 + - &389 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52056,7 +52302,7 @@ paths: required: false schema: type: string - - &387 + - &390 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52065,7 +52311,7 @@ paths: required: false schema: type: string - - &388 + - &391 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 @@ -52092,7 +52338,7 @@ paths: - pending - *17 - *19 - - &389 + - &392 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)." @@ -52101,7 +52347,7 @@ paths: schema: type: string format: date-time - - &368 + - &371 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52110,13 +52356,13 @@ paths: schema: type: boolean default: false - - &390 + - &393 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &391 + - &394 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52139,7 +52385,7 @@ paths: type: integer workflow_runs: type: array - items: &369 + items: &372 title: Workflow Run description: An invocation of a workflow type: object @@ -52234,7 +52480,7 @@ paths: that triggered the run. type: array nullable: true - items: *82 + items: *84 created_at: type: string format: date-time @@ -52287,7 +52533,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &413 + properties: &416 id: type: string description: SHA for the commit @@ -52338,7 +52584,7 @@ paths: - name - email nullable: true - required: &414 + required: &417 - id - tree_id - message @@ -52346,8 +52592,8 @@ paths: - author - committer nullable: true - repository: *153 - head_repository: *153 + repository: *156 + head_repository: *156 head_repository_id: type: integer example: 5 @@ -52385,7 +52631,7 @@ paths: - workflow_url - pull_requests examples: - default: &392 + default: &395 value: total_count: 1 workflow_runs: @@ -52599,7 +52845,7 @@ paths: releases_url: https://api.github.com/repos/octo-org/octo-repo/releases{/id} deployments_url: https://api.github.com/repos/octo-org/octo-repo/deployments headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52621,24 +52867,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *332 - - *333 - - &370 + - *335 + - *336 + - &373 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *368 + - *371 responses: '200': description: Response content: application/json: - schema: *369 + schema: *372 examples: - default: &373 + default: &376 value: id: 30433642 name: Build @@ -52879,9 +53125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '204': description: Response @@ -52904,9 +53150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -53025,15 +53271,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -53060,13 +53306,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 - *17 - *19 - - *371 - - *53 + - *374 + - *55 responses: '200': description: Response @@ -53082,11 +53328,11 @@ paths: type: integer artifacts: type: array - items: *339 + items: *342 examples: - default: *372 + default: *375 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53108,25 +53354,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *332 - - *333 - - *370 - - &374 + - *335 + - *336 + - *373 + - &377 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *368 + - *371 responses: '200': description: Response content: application/json: - schema: *369 + schema: *372 examples: - default: *373 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53149,10 +53395,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *332 - - *333 - - *370 - - *374 + - *335 + - *336 + - *373 + - *377 - *17 - *19 responses: @@ -53170,9 +53416,9 @@ paths: type: integer jobs: type: array - items: *375 + items: *378 examples: - default: &376 + default: &379 value: total_count: 1 jobs: @@ -53261,7 +53507,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -53285,10 +53531,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *332 - - *333 - - *370 - - *374 + - *335 + - *336 + - *373 + - *377 responses: '302': description: Response @@ -53316,19 +53562,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '202': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53351,9 +53597,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: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: true content: @@ -53420,19 +53666,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '202': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53455,9 +53701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 - 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 @@ -53487,11 +53733,11 @@ paths: type: integer jobs: type: array - items: *375 + items: *378 examples: - default: *376 + default: *379 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53514,9 +53760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '302': description: Response @@ -53543,14 +53789,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '204': description: Response '403': *29 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53572,9 +53818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -53634,7 +53880,7 @@ paths: items: type: object properties: - type: &498 + type: &501 type: string description: The type of reviewer. enum: @@ -53644,7 +53890,7 @@ paths: reviewer: anyOf: - *4 - - *190 + - *193 required: - environment - wait_timer @@ -53719,9 +53965,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: true content: @@ -53768,12 +54014,12 @@ paths: application/json: schema: type: array - items: &493 + items: &496 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &737 + properties: &740 url: type: string format: uri @@ -53856,9 +54102,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - required: &738 + properties: *74 + required: *75 + required: &741 - id - node_id - sha @@ -53874,7 +54120,7 @@ paths: - created_at - updated_at examples: - default: &494 + default: &497 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -53930,9 +54176,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: false content: @@ -53953,7 +54199,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -53976,9 +54222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: false content: @@ -53999,7 +54245,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54031,9 +54277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -54170,8 +54416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -54189,11 +54435,11 @@ paths: type: integer secrets: type: array - items: *377 + items: *380 examples: - default: *378 + default: *381 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54216,16 +54462,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: - default: *380 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54247,17 +54493,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: &511 + default: &514 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54283,9 +54529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -54316,7 +54562,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54342,9 +54588,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -54369,9 +54615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *332 - - *333 - - *348 + - *335 + - *336 + - *351 - *19 responses: '200': @@ -54388,11 +54634,11 @@ paths: type: integer variables: type: array - items: *381 + items: *384 examples: - default: *382 + default: *385 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54413,8 +54659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -54441,7 +54687,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54466,17 +54712,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: &512 + default: &515 value: name: USERNAME value: octocat @@ -54502,9 +54748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 requestBody: required: true content: @@ -54546,9 +54792,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 responses: '204': description: Response @@ -54573,8 +54819,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -54592,7 +54838,7 @@ paths: type: integer workflows: type: array - items: &383 + items: &386 title: Workflow description: A GitHub Actions workflow type: object @@ -54676,7 +54922,7 @@ paths: html_url: https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289 badge_url: https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54699,9 +54945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *332 - - *333 - - &384 + - *335 + - *336 + - &387 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -54716,7 +54962,7 @@ paths: description: Response content: application/json: - schema: *383 + schema: *386 examples: default: value: @@ -54749,9 +54995,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '204': description: Response @@ -54776,9 +55022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '200': description: Response including the workflow run ID and URLs when `return_run_details` @@ -54859,9 +55105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '204': description: Response @@ -54888,19 +55134,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *332 - - *333 - - *384 - - *385 - - *386 + - *335 + - *336 - *387 - *388 - - *17 - - *19 - *389 - - *368 - *390 - *391 + - *17 + - *19 + - *392 + - *371 + - *393 + - *394 responses: '200': description: Response @@ -54916,11 +55162,11 @@ paths: type: integer workflow_runs: type: array - items: *369 + items: *372 examples: - default: *392 + default: *395 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54950,9 +55196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '200': description: Response @@ -55013,12 +55259,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *332 - - *333 - - *53 + - *335 + - *336 + - *55 - *17 - - *45 - - *46 + - *47 + - *48 - name: ref description: |- The Git reference for the activities you want to list. @@ -55159,7 +55405,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '422': *7 x-github: githubCloudOnly: false @@ -55178,8 +55424,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -55191,9 +55437,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -55216,8 +55462,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *332 - - *333 + - *335 + - *336 - name: assignee in: path required: true @@ -55253,8 +55499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -55366,11 +55612,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *332 - - *333 + - *335 + - *336 - *17 - - *45 - - *46 + - *47 + - *48 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -55408,7 +55654,7 @@ paths: initiator: type: string examples: - default: *393 + default: *396 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55428,8 +55674,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -55437,7 +55683,7 @@ paths: application/json: schema: type: array - items: &394 + items: &397 title: Autolink reference description: An autolink reference. type: object @@ -55491,8 +55737,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -55531,9 +55777,9 @@ paths: description: response content: application/json: - schema: *394 + schema: *397 examples: - default: &395 + default: &398 value: id: 1 key_prefix: TICKET- @@ -55564,9 +55810,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *332 - - *333 - - &396 + - *335 + - *336 + - &399 name: autolink_id description: The unique identifier of the autolink. in: path @@ -55578,9 +55824,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *397 examples: - default: *395 + default: *398 '404': *6 x-github: githubCloudOnly: false @@ -55600,9 +55846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *332 - - *333 - - *396 + - *335 + - *336 + - *399 responses: '204': description: Response @@ -55626,8 +55872,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response if Dependabot is enabled @@ -55675,8 +55921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -55697,8 +55943,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -55718,8 +55964,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *332 - - *333 + - *335 + - *336 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -55757,7 +56003,7 @@ paths: - url protected: type: boolean - protection: &398 + protection: &401 title: Branch Protection description: Branch Protection type: object @@ -55799,7 +56045,7 @@ paths: required: - contexts - checks - enforce_admins: &401 + enforce_admins: &404 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -55814,7 +56060,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &403 + required_pull_request_reviews: &406 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -55835,7 +56081,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *190 + items: *193 apps: description: The list of apps with review dismissal access. @@ -55864,7 +56110,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *190 + items: *193 apps: description: The list of apps allowed to bypass pull request requirements. @@ -55890,7 +56136,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &400 + restrictions: &403 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -55953,7 +56199,7 @@ paths: type: string teams: type: array - items: *190 + items: *193 apps: type: array items: @@ -56149,7 +56395,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -56167,9 +56413,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *332 - - *333 - - &399 + - *335 + - *336 + - &402 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). @@ -56183,14 +56429,14 @@ paths: description: Response content: application/json: - schema: &409 + schema: &412 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &466 + commit: &469 title: Commit description: Commit type: object @@ -56224,7 +56470,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &397 + properties: &400 name: type: string example: '"Chris Wanstrath"' @@ -56240,7 +56486,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true message: type: string @@ -56261,7 +56507,7 @@ paths: required: - sha - url - verification: &518 + verification: &521 title: Verification type: object properties: @@ -56295,12 +56541,12 @@ paths: nullable: true oneOf: - *4 - - *162 + - *165 committer: nullable: true oneOf: - *4 - - *162 + - *165 parents: type: array items: @@ -56331,7 +56577,7 @@ paths: type: integer files: type: array - items: &479 + items: &482 title: Diff Entry description: Diff Entry type: object @@ -56415,7 +56661,7 @@ paths: - self protected: type: boolean - protection: *398 + protection: *401 protection_url: type: string format: uri @@ -56522,7 +56768,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *336 + '301': *339 '404': *6 x-github: githubCloudOnly: false @@ -56544,15 +56790,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: default: value: @@ -56746,9 +56992,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -57003,7 +57249,7 @@ paths: url: type: string format: uri - required_status_checks: &406 + required_status_checks: &409 title: Status Check Policy description: Status Check Policy type: object @@ -57079,7 +57325,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 apps: type: array items: *5 @@ -57097,7 +57343,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 apps: type: array items: *5 @@ -57155,7 +57401,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *400 + restrictions: *403 required_conversation_resolution: type: object properties: @@ -57267,9 +57513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57294,17 +57540,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &402 + default: &405 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -57326,17 +57572,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *402 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57355,9 +57601,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57382,17 +57628,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: &404 + default: &407 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -57488,9 +57734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -57588,9 +57834,9 @@ paths: description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: *404 + default: *407 '422': *15 x-github: githubCloudOnly: false @@ -57611,9 +57857,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57640,17 +57886,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &405 + default: &408 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -57673,17 +57919,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *405 + default: *408 '404': *6 x-github: githubCloudOnly: false @@ -57703,9 +57949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57730,17 +57976,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *406 + schema: *409 examples: - default: &407 + default: &410 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -57766,9 +58012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -57820,9 +58066,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *409 examples: - default: *407 + default: *410 '404': *6 '422': *15 x-github: @@ -57844,9 +58090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57870,9 +58116,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -57906,9 +58152,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -57975,9 +58221,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58041,9 +58287,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: content: application/json: @@ -58109,15 +58355,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *400 + schema: *403 examples: default: value: @@ -58208,9 +58454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -58233,9 +58479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58245,7 +58491,7 @@ paths: type: array items: *5 examples: - default: &408 + default: &411 value: - id: 1 slug: octoapp @@ -58302,9 +58548,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58338,7 +58584,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58359,9 +58605,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58395,7 +58641,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58416,9 +58662,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58452,7 +58698,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58474,9 +58720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58484,9 +58730,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '404': *6 x-github: githubCloudOnly: false @@ -58506,9 +58752,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58544,9 +58790,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -58567,9 +58813,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58605,9 +58851,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -58628,9 +58874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: content: application/json: @@ -58665,9 +58911,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -58689,9 +58935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58701,7 +58947,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '404': *6 x-github: githubCloudOnly: false @@ -58725,9 +58971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58760,7 +59006,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -58785,9 +59031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58820,7 +59066,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -58845,9 +59091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58880,7 +59126,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -58907,9 +59153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58931,7 +59177,7 @@ paths: description: Response content: application/json: - schema: *409 + schema: *412 examples: default: value: @@ -59047,8 +59293,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -59327,7 +59573,7 @@ paths: description: Response content: application/json: - schema: &410 + schema: &413 title: CheckRun description: A check performed on the code of a given code change type: object @@ -59438,16 +59684,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *82 - deployment: &730 + items: *84 + deployment: &733 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -59514,8 +59760,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -59727,9 +59973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *332 - - *333 - - &411 + - *335 + - *336 + - &414 name: check_run_id description: The unique identifier of the check run. in: path @@ -59741,9 +59987,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *413 examples: - default: &412 + default: &415 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -59843,9 +60089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 requestBody: required: true content: @@ -60085,9 +60331,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *413 examples: - default: *412 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60107,9 +60353,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 - *17 - *19 responses: @@ -60184,7 +60430,7 @@ paths: raw_details: Do you mean 'bananas' or 'banana'? blob_href: https://api.github.com/repos/github/rest-api-description/git/blobs/abc headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60204,15 +60450,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -60250,8 +60496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -60273,7 +60519,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &415 + schema: &418 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -60337,7 +60583,7 @@ paths: nullable: true pull_requests: type: array - items: *82 + items: *84 nullable: true app: title: GitHub app @@ -60348,9 +60594,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - repository: *153 + properties: *74 + required: *75 + repository: *156 created_at: type: string format: date-time @@ -60359,12 +60605,12 @@ paths: type: string format: date-time nullable: true - head_commit: &758 + head_commit: &761 title: Simple Commit description: A commit. type: object - properties: *413 - required: *414 + properties: *416 + required: *417 latest_check_runs_count: type: integer check_runs_url: @@ -60392,7 +60638,7 @@ paths: - check_runs_url - pull_requests examples: - default: &416 + default: &419 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -60683,9 +60929,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *415 + schema: *418 examples: - default: *416 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60704,8 +60950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -60766,7 +61012,7 @@ paths: required: - app_id - setting - repository: *153 + repository: *156 examples: default: value: @@ -61014,9 +61260,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *332 - - *333 - - &417 + - *335 + - *336 + - &420 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61028,9 +61274,9 @@ paths: description: Response content: application/json: - schema: *415 + schema: *418 examples: - default: *416 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61053,17 +61299,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *332 - - *333 - - *417 - - &472 + - *335 + - *336 + - *420 + - &475 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &473 + - &476 name: status description: Returns check runs with the specified `status`. in: query @@ -61102,9 +61348,9 @@ paths: type: integer check_runs: type: array - items: *410 + items: *413 examples: - default: &474 + default: &477 value: total_count: 1 check_runs: @@ -61186,7 +61432,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61206,15 +61452,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *332 - - *333 - - *417 + - *335 + - *336 + - *420 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -61241,30 +61487,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *332 - - *333 - - *418 - - *419 + - *335 + - *336 + - *421 + - *422 - *19 - *17 - - &436 + - &439 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: *420 - - &437 + schema: *423 + - &440 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *53 - - *45 - - *46 + - *55 + - *47 + - *48 - name: sort description: The property by which to sort the results. in: query @@ -61280,13 +61526,13 @@ paths: be returned. in: query required: false - schema: *421 + schema: *424 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *422 + schema: *425 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -61305,14 +61551,14 @@ paths: items: type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: *423 - state: *180 - fixed_at: *176 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: *426 + state: *183 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -61320,12 +61566,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: *424 - dismissed_comment: *425 - rule: *426 - tool: *427 - most_recent_instance: *428 + dismissed_at: *180 + dismissed_reason: *427 + dismissed_comment: *428 + rule: *429 + tool: *430 + most_recent_instance: *431 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -61451,14 +61697,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &429 + '403': &432 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61478,9 +61724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *332 - - *333 - - &430 + - *335 + - *336 + - &433 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -61488,23 +61734,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *171 + schema: *174 responses: '200': description: Response content: application/json: - schema: &431 + schema: &434 type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: *423 - state: *180 - fixed_at: *176 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: *426 + state: *183 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -61512,9 +61758,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_at: *180 + dismissed_reason: *427 + dismissed_comment: *428 rule: type: object properties: @@ -61568,8 +61814,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *427 - most_recent_instance: *428 + tool: *430 + most_recent_instance: *431 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -61668,9 +61914,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61688,9 +61934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: true content: @@ -61705,8 +61951,8 @@ paths: enum: - open - dismissed - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_reason: *427 + dismissed_comment: *428 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -61734,7 +61980,7 @@ paths: description: Response content: application/json: - schema: *431 + schema: *434 examples: default: value: @@ -61810,14 +62056,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &435 + '403': &438 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61837,15 +62083,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: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 responses: '200': description: Response content: application/json: - schema: &432 + schema: &435 type: object properties: status: @@ -61871,13 +62117,13 @@ paths: - description - started_at examples: - default: &433 + default: &436 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &434 + '400': &437 description: Bad Request content: application/json: @@ -61888,9 +62134,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61913,29 +62159,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: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 responses: '200': description: OK content: application/json: - schema: *432 + schema: *435 examples: - default: *433 + default: *436 '202': description: Accepted content: application/json: - schema: *432 + schema: *435 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *434 + '400': *437 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -61945,7 +62191,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61967,9 +62213,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: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: false content: @@ -62014,12 +62260,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *434 - '403': *435 + '400': *437 + '403': *438 '404': *6 '422': description: Unprocessable Entity - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62039,13 +62285,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 - *19 - *17 - - *436 - - *437 + - *439 + - *440 responses: '200': description: Response @@ -62056,10 +62302,10 @@ paths: items: type: object properties: - ref: *420 - analysis_key: *438 - environment: *439 - category: *440 + ref: *423 + analysis_key: *441 + environment: *442 + category: *443 state: type: string description: State of a code scanning alert instance. @@ -62074,7 +62320,7 @@ paths: properties: text: type: string - location: *441 + location: *444 html_url: type: string classifications: @@ -62082,7 +62328,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: *442 + items: *445 examples: default: value: @@ -62119,9 +62365,9 @@ paths: end_column: 50 classifications: - source - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62153,29 +62399,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *332 - - *333 - - *418 - - *419 + - *335 + - *336 + - *421 + - *422 - *19 - *17 - - *437 + - *440 - 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: *420 + schema: *423 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &443 + schema: &446 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *53 + - *55 - name: sort description: The property by which to sort the results. in: query @@ -62192,23 +62438,23 @@ paths: application/json: schema: type: array - items: &444 + items: &447 type: object properties: - ref: *420 - commit_sha: &452 + ref: *423 + commit_sha: &455 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *438 + analysis_key: *441 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *440 + category: *443 error: type: string example: error reading field xyz @@ -62232,8 +62478,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *443 - tool: *427 + sarif_id: *446 + tool: *430 deletable: type: boolean warning: @@ -62294,9 +62540,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62330,8 +62576,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: - - *332 - - *333 + - *335 + - *336 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62344,7 +62590,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: response: summary: application/json response @@ -62398,14 +62644,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *429 + '403': *432 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62485,8 +62731,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: - - *332 - - *333 + - *335 + - *336 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62539,9 +62785,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *435 + '403': *438 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62561,8 +62807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -62570,7 +62816,7 @@ paths: application/json: schema: type: array - items: &445 + items: &448 title: CodeQL Database description: A CodeQL database. type: object @@ -62681,9 +62927,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62710,8 +62956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: language in: path description: The language of the CodeQL database. @@ -62723,7 +62969,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: default: value: @@ -62755,11 +63001,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &481 + '302': &484 description: Found - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62779,8 +63025,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *332 - - *333 + - *335 + - *336 - name: language in: path description: The language of the CodeQL database. @@ -62790,9 +63036,9 @@ paths: responses: '204': description: Response - '403': *435 + '403': *438 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62818,8 +63064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -62828,7 +63074,7 @@ paths: type: object additionalProperties: false properties: - language: &446 + language: &449 type: string description: The language targeted by the CodeQL query enum: @@ -62908,7 +63154,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &450 + schema: &453 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -62916,9 +63162,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *58 + controller_repo: *60 actor: *4 - query_language: *446 + query_language: *449 query_pack_url: type: string description: The download url for the query pack. @@ -62965,7 +63211,7 @@ paths: items: type: object properties: - repository: &447 + repository: &450 title: Repository Identifier description: Repository Identifier type: object @@ -63001,7 +63247,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &451 + analysis_status: &454 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63033,7 +63279,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &448 + access_mismatch_repos: &451 type: object properties: repository_count: @@ -63047,7 +63293,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: *447 + items: *450 required: - repository_count - repositories @@ -63069,8 +63315,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *448 - over_limit_repos: *448 + no_codeql_db_repos: *451 + over_limit_repos: *451 required: - access_mismatch_repos - not_found_repos @@ -63086,7 +63332,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &449 + value: &452 summary: Default response value: id: 1 @@ -63232,17 +63478,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *449 + value: *452 repository_lists: summary: Response for a successful variant analysis submission - value: *449 + value: *452 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63263,8 +63509,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: - - *332 - - *333 + - *335 + - *336 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -63276,11 +63522,11 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: - default: *449 + default: *452 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63301,7 +63547,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: - - *332 + - *335 - name: repo in: path description: The name of the controller repository. @@ -63335,8 +63581,8 @@ paths: schema: type: object properties: - repository: *58 - analysis_status: *451 + repository: *60 + analysis_status: *454 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -63440,7 +63686,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63461,8 +63707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -63545,9 +63791,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63566,8 +63812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -63634,7 +63880,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -63659,7 +63905,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *435 + '403': *438 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -63673,7 +63919,7 @@ paths: content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63730,8 +63976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -63739,7 +63985,7 @@ paths: schema: type: object properties: - commit_sha: *452 + commit_sha: *455 ref: type: string description: |- @@ -63797,7 +64043,7 @@ paths: schema: type: object properties: - id: *443 + id: *446 url: type: string description: The REST API URL for checking the status of the upload. @@ -63811,11 +64057,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *435 + '403': *438 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63834,8 +64080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *332 - - *333 + - *335 + - *336 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -63881,10 +64127,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *429 + '403': *432 '404': description: Not Found if the sarif id does not match any upload - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63906,8 +64152,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -63931,7 +64177,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *47 + configuration: *49 examples: default: value: @@ -63963,7 +64209,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *184 + '204': *187 '304': *37 '403': *29 '404': *6 @@ -63988,8 +64234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *332 - - *333 + - *335 + - *336 - 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 @@ -64109,8 +64355,8 @@ paths: parameters: - *17 - *19 - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -64126,7 +64372,7 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: default: value: @@ -64402,7 +64648,7 @@ paths: start_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop recent_folders: [] - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -64424,8 +64670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -64488,22 +64734,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -64527,8 +64773,8 @@ paths: parameters: - *17 - *19 - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -64568,7 +64814,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *113 + '500': *115 '400': *14 '401': *25 '403': *29 @@ -64592,8 +64838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -64628,14 +64874,14 @@ paths: type: integer machines: type: array - items: &672 + items: &675 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *454 - required: *455 + properties: *457 + required: *458 examples: - default: &673 + default: &676 value: total_count: 2 machines: @@ -64652,7 +64898,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -64675,8 +64921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -64760,8 +65006,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: - - *332 - - *333 + - *335 + - *336 - 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 @@ -64806,7 +65052,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64827,8 +65073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -64846,7 +65092,7 @@ paths: type: integer secrets: type: array - items: &459 + items: &462 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -64866,9 +65112,9 @@ paths: - created_at - updated_at examples: - default: *456 + default: *459 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64889,16 +65135,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *457 + schema: *460 examples: - default: *458 + default: *461 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -64918,17 +65164,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: *460 + default: *463 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64948,9 +65194,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -64978,7 +65224,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -65002,9 +65248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -65032,8 +65278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *332 - - *333 + - *335 + - *336 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65075,7 +65321,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &461 + properties: &464 login: type: string example: octocat @@ -65168,7 +65414,7 @@ paths: user_view_type: type: string example: public - required: &462 + required: &465 - avatar_url - events_url - followers_url @@ -65217,7 +65463,7 @@ paths: admin: false role_name: write headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -65242,9 +65488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '204': description: Response if user is a collaborator @@ -65290,9 +65536,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 requestBody: required: false content: @@ -65318,7 +65564,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &531 + schema: &534 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -65329,7 +65575,7 @@ paths: example: 42 type: integer format: int64 - repository: *153 + repository: *156 invitee: title: Simple User description: A GitHub user. @@ -65507,7 +65753,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *122 + schema: *124 '403': *29 x-github: triggersNotification: true @@ -65547,9 +65793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '204': description: No Content when collaborator was removed from the repository. @@ -65580,9 +65826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '200': description: if user has admin permissions @@ -65602,8 +65848,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *461 - required: *462 + properties: *464 + required: *465 nullable: true required: - permission @@ -65658,8 +65904,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -65669,7 +65915,7 @@ paths: application/json: schema: type: array - items: &463 + items: &466 title: Commit Comment description: Commit Comment type: object @@ -65710,8 +65956,8 @@ paths: updated_at: type: string format: date-time - author_association: *74 - reactions: *75 + author_association: *76 + reactions: *77 required: - url - html_url @@ -65727,7 +65973,7 @@ paths: - created_at - updated_at examples: - default: &468 + default: &471 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -65761,7 +66007,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65786,17 +66032,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *463 + schema: *466 examples: - default: &469 + default: &472 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -65853,9 +66099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -65877,7 +66123,7 @@ paths: description: Response content: application/json: - schema: *463 + schema: *466 examples: default: value: @@ -65928,9 +66174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -65951,9 +66197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - 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 commit comment. @@ -65979,7 +66225,7 @@ paths: application/json: schema: type: array - items: &464 + items: &467 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -66022,7 +66268,7 @@ paths: - content - created_at examples: - default: &535 + default: &538 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -66048,7 +66294,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -66067,9 +66313,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -66101,9 +66347,9 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: &465 + default: &468 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -66132,9 +66378,9 @@ paths: description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -66156,10 +66402,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *332 - - *333 - - *93 - - &536 + - *335 + - *336 + - *95 + - &539 name: reaction_id description: The unique identifier of the reaction. in: path @@ -66214,8 +66460,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *332 - - *333 + - *335 + - *336 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -66271,9 +66517,9 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: &586 + default: &589 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66343,11 +66589,11 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *59 - '500': *113 + Link: *61 + '500': *115 '400': *14 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66367,9 +66613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *332 - - *333 - - &467 + - *335 + - *336 + - &470 name: commit_sha description: The SHA of the commit. in: path @@ -66416,7 +66662,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66441,9 +66687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 - *17 - *19 responses: @@ -66453,11 +66699,11 @@ paths: application/json: schema: type: array - items: *463 + items: *466 examples: - default: *468 + default: *471 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66483,9 +66729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 requestBody: required: true content: @@ -66520,9 +66766,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *466 examples: - default: *469 + default: *472 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66550,9 +66796,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 - *17 - *19 responses: @@ -66562,9 +66808,9 @@ paths: application/json: schema: type: array - items: *470 + items: *473 examples: - default: &578 + default: &581 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67043,8 +67289,8 @@ paths: auto_merge: draft: false headers: - Link: *59 - '409': *52 + Link: *61 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67101,11 +67347,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 - - &471 + - &474 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)" @@ -67120,9 +67366,9 @@ paths: description: Response content: application/json: - schema: *466 + schema: *469 examples: - default: &565 + default: &568 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67208,9 +67454,9 @@ paths: ..... '422': *15 '404': *6 - '500': *113 - '503': *114 - '409': *52 + '500': *115 + '503': *116 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67235,11 +67481,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *332 - - *333 - - *471 - - *472 - - *473 + - *335 + - *336 + - *474 + - *475 + - *476 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -67273,11 +67519,11 @@ paths: type: integer check_runs: type: array - items: *410 + items: *413 examples: - default: *474 + default: *477 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67300,9 +67546,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -67310,7 +67556,7 @@ paths: schema: type: integer example: 1 - - *472 + - *475 - *17 - *19 responses: @@ -67328,7 +67574,7 @@ paths: type: integer check_suites: type: array - items: *415 + items: *418 examples: default: value: @@ -67503,7 +67749,7 @@ paths: latest_check_runs_count: 1 check_runs_url: https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67528,9 +67774,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - *17 - *19 responses: @@ -67597,7 +67843,7 @@ paths: type: string total_count: type: integer - repository: *153 + repository: *156 commit_url: type: string format: uri @@ -67728,9 +67974,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - *17 - *19 responses: @@ -67740,7 +67986,7 @@ paths: application/json: schema: type: array - items: &651 + items: &654 title: Status description: The status of a commit. type: object @@ -67820,8 +68066,8 @@ paths: type: User site_admin: false headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67849,8 +68095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -67879,20 +68125,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *475 - required: *476 + properties: *478 + required: *479 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &477 + properties: &480 url: type: string format: uri html_url: type: string format: uri - required: &478 + required: &481 - url - html_url nullable: true @@ -67900,32 +68146,32 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true contributing: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true readme: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true issue_template: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true pull_request_template: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true required: - code_of_conduct @@ -68052,8 +68298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 - name: basehead @@ -68096,8 +68342,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *466 - merge_base_commit: *466 + base_commit: *469 + merge_base_commit: *469 status: type: string enum: @@ -68117,10 +68363,10 @@ paths: example: 6 commits: type: array - items: *466 + items: *469 files: type: array - items: *479 + items: *482 required: - url - html_url @@ -68363,8 +68609,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68406,8 +68652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -68567,7 +68813,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &480 + response-if-content-is-a-file-github-object: &483 summary: Response if content is a file value: type: file @@ -68699,7 +68945,7 @@ paths: - size - type - url - - &591 + - &594 title: Content File description: Content File type: object @@ -68900,7 +69146,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *480 + response-if-content-is-a-file: *483 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -68969,7 +69215,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *481 + '302': *484 '304': *37 x-github: githubCloudOnly: false @@ -68992,8 +69238,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -69086,7 +69332,7 @@ paths: description: Response content: application/json: - schema: &482 + schema: &485 title: File Commit description: File Commit type: object @@ -69238,7 +69484,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: example-for-creating-a-file: value: @@ -69292,7 +69538,7 @@ paths: schema: oneOf: - *3 - - &513 + - &516 description: Repository rule violation was detected type: object properties: @@ -69313,7 +69559,7 @@ paths: items: type: object properties: - placeholder_id: &643 + placeholder_id: &646 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -69345,8 +69591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -69407,7 +69653,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: default: value: @@ -69441,8 +69687,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *52 - '503': *114 + '409': *54 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69462,8 +69708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *332 - - *333 + - *335 + - *336 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -69563,7 +69809,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *59 + Link: *61 '204': description: Response if repository is empty '403': *29 @@ -69586,26 +69832,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *332 - - *333 - - *191 - - *192 - - *193 + - *335 + - *336 - *194 + - *195 + - *196 + - *197 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *195 - - *483 - - *196 - - *197 - *198 - - *53 - - *45 - - *46 + - *486 + - *199 + - *200 + - *201 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -69614,11 +69860,11 @@ paths: application/json: schema: type: array - items: &487 + items: &490 type: object description: A Dependabot alert. properties: - number: *171 + number: *174 state: type: string description: The state of the Dependabot alert. @@ -69633,7 +69879,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *54 + package: *56 manifest_path: type: string description: The full path to the dependency manifest file, @@ -69660,13 +69906,13 @@ paths: - unknown - direct - transitive - security_advisory: *484 - security_vulnerability: *57 - url: *174 - html_url: *175 - created_at: *172 - updated_at: *173 - dismissed_at: *177 + security_advisory: *487 + security_vulnerability: *59 + url: *177 + html_url: *178 + created_at: *175 + updated_at: *176 + dismissed_at: *180 dismissed_by: title: Simple User description: A GitHub user. @@ -69690,9 +69936,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *176 - auto_dismissed_at: *485 - dismissal_request: *486 + fixed_at: *179 + auto_dismissed_at: *488 + dismissal_request: *489 assignees: type: array description: The users assigned to this alert. @@ -69947,9 +70193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *332 - - *333 - - &488 + - *335 + - *336 + - &491 name: alert_number in: path description: |- @@ -69958,13 +70204,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *171 + schema: *174 responses: '200': description: Response content: application/json: - schema: *487 + schema: *490 examples: default: value: @@ -70096,9 +70342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *332 - - *333 - - *488 + - *335 + - *336 + - *491 requestBody: required: true content: @@ -70154,7 +70400,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *490 examples: default: value: @@ -70261,7 +70507,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *7 x-github: githubCloudOnly: false @@ -70284,8 +70530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -70303,7 +70549,7 @@ paths: type: integer secrets: type: array - items: &491 + items: &494 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -70334,7 +70580,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70356,16 +70602,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *489 + schema: *492 examples: - default: *490 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70385,15 +70631,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *491 + schema: *494 examples: default: value: @@ -70419,9 +70665,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -70449,7 +70695,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -70473,9 +70719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -70497,8 +70743,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: - - *332 - - *333 + - *335 + - *336 - 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 @@ -70634,7 +70880,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *59 + Link: *61 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -70658,8 +70904,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -70875,7 +71121,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *59 + Link: *61 '404': *6 '403': *29 x-github: @@ -70898,8 +71144,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: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -70974,7 +71220,7 @@ paths: - version - url additionalProperties: false - metadata: &492 + metadata: &495 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71007,7 +71253,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *492 + metadata: *495 resolved: type: object description: A collection of resolved package dependencies. @@ -71020,7 +71266,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *492 + metadata: *495 relationship: type: string description: A notation of whether a dependency is requested @@ -71149,8 +71395,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *332 - - *333 + - *335 + - *336 - name: sha description: The SHA recorded at creation time. in: query @@ -71190,11 +71436,11 @@ paths: application/json: schema: type: array - items: *493 + items: *496 examples: - default: *494 + default: *497 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71258,8 +71504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -71340,7 +71586,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *496 examples: simple-example: summary: Simple example @@ -71413,9 +71659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *332 - - *333 - - &495 + - *335 + - *336 + - &498 name: deployment_id description: deployment_id parameter in: path @@ -71427,7 +71673,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *496 examples: default: value: @@ -71492,9 +71738,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 responses: '204': description: Response @@ -71516,9 +71762,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 - *17 - *19 responses: @@ -71528,7 +71774,7 @@ paths: application/json: schema: type: array - items: &496 + items: &499 title: Deployment Status description: The status of a deployment. type: object @@ -71619,8 +71865,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -71669,7 +71915,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -71689,9 +71935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 requestBody: required: true content: @@ -71766,9 +72012,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: &497 + default: &500 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -71824,9 +72070,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 - name: status_id in: path required: true @@ -71837,9 +72083,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: *497 + default: *500 '404': *6 x-github: githubCloudOnly: false @@ -71864,8 +72110,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -71922,8 +72168,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -71940,7 +72186,7 @@ paths: type: integer environments: type: array - items: &499 + items: &502 title: Environment description: Details of a deployment environment type: object @@ -71992,7 +72238,7 @@ paths: type: type: string example: wait_timer - wait_timer: &501 + wait_timer: &504 type: integer example: 30 description: The amount of time to delay a job after @@ -72029,11 +72275,11 @@ paths: items: type: object properties: - type: *498 + type: *501 reviewer: anyOf: - *4 - - *190 + - *193 required: - id - node_id @@ -72053,7 +72299,7 @@ paths: - id - node_id - type - deployment_branch_policy: &502 + deployment_branch_policy: &505 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -72169,9 +72415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *332 - - *333 - - &500 + - *335 + - *336 + - &503 name: environment_name in: path required: true @@ -72184,9 +72430,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: &503 + default: &506 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -72270,9 +72516,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: false content: @@ -72281,7 +72527,7 @@ paths: type: object nullable: true properties: - wait_timer: *501 + wait_timer: *504 prevent_self_review: type: boolean example: false @@ -72298,13 +72544,13 @@ paths: items: type: object properties: - type: *498 + type: *501 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *502 + deployment_branch_policy: *505 additionalProperties: false examples: default: @@ -72324,9 +72570,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: *503 + default: *506 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -72350,9 +72596,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 responses: '204': description: Default response @@ -72377,9 +72623,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 - *17 - *19 responses: @@ -72397,7 +72643,7 @@ paths: example: 2 branch_policies: type: array - items: &504 + items: &507 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -72454,9 +72700,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: true content: @@ -72502,9 +72748,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - example-wildcard: &505 + example-wildcard: &508 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -72546,10 +72792,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - &506 + - *335 + - *336 + - *503 + - &509 name: branch_policy_id in: path required: true @@ -72561,9 +72807,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72582,10 +72828,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - *506 + - *335 + - *336 + - *503 + - *509 requestBody: required: true content: @@ -72613,9 +72859,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72634,10 +72880,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - *506 + - *335 + - *336 + - *503 + - *509 responses: '204': description: Response @@ -72662,9 +72908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 responses: '200': description: List of deployment protection rules @@ -72680,7 +72926,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &507 + items: &510 title: Deployment protection rule description: Deployment protection rule type: object @@ -72699,7 +72945,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &508 + app: &511 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -72798,9 +73044,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: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 requestBody: content: application/json: @@ -72821,9 +73067,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *507 + schema: *510 examples: - default: &509 + default: &512 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -72858,9 +73104,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: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 - *19 - *17 responses: @@ -72879,7 +73125,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *508 + items: *511 examples: default: value: @@ -72914,10 +73160,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *332 - - *333 - - *500 - - &510 + - *335 + - *336 + - *503 + - &513 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -72929,9 +73175,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *509 + default: *512 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72952,10 +73198,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *500 - - *333 - - *332 - - *510 + - *503 + - *336 + - *335 + - *513 responses: '204': description: Response @@ -72981,9 +73227,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 - *17 - *19 responses: @@ -73001,11 +73247,11 @@ paths: type: integer secrets: type: array - items: *377 + items: *380 examples: - default: *378 + default: *381 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73028,17 +73274,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: - default: *380 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73060,18 +73306,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 responses: '200': description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *511 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73093,10 +73339,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 requestBody: required: true content: @@ -73127,7 +73373,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -73153,10 +73399,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 responses: '204': description: Default response @@ -73181,10 +73427,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *332 - - *333 - - *500 - - *348 + - *335 + - *336 + - *503 + - *351 - *19 responses: '200': @@ -73201,11 +73447,11 @@ paths: type: integer variables: type: array - items: *381 + items: *384 examples: - default: *382 + default: *385 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73226,9 +73472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: true content: @@ -73255,7 +73501,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -73280,18 +73526,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *332 - - *333 - - *500 - - *164 + - *335 + - *336 + - *503 + - *167 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: *512 + default: *515 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73312,10 +73558,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *332 - - *333 - - *164 - - *500 + - *335 + - *336 + - *167 + - *503 requestBody: required: true content: @@ -73357,10 +73603,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *332 - - *333 - - *164 - - *500 + - *335 + - *336 + - *167 + - *503 responses: '204': description: Response @@ -73382,8 +73628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -73393,7 +73639,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: 200-response: value: @@ -73451,8 +73697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *332 - - *333 + - *335 + - *336 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -73474,7 +73720,7 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: default: value: @@ -73587,7 +73833,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *59 + Link: *61 '400': *14 x-github: githubCloudOnly: false @@ -73611,8 +73857,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -73644,9 +73890,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 '400': *14 '422': *15 '403': *29 @@ -73667,8 +73913,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -73719,7 +73965,7 @@ paths: schema: type: string '404': *6 - '409': *52 + '409': *54 '403': *29 '422': description: Validation failed @@ -73727,8 +73973,8 @@ paths: application/json: schema: oneOf: - - *122 - - *513 + - *124 + - *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73753,8 +73999,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *332 - - *333 + - *335 + - *336 - name: file_sha in: path required: true @@ -73805,7 +74051,7 @@ paths: '404': *6 '422': *15 '403': *29 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73853,8 +74099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -73963,7 +74209,7 @@ paths: description: Response content: application/json: - schema: &514 + schema: &517 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -74127,7 +74373,7 @@ paths: type: string '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74177,15 +74423,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 responses: '200': description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -74216,7 +74462,7 @@ paths: payload: verified_at: '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74241,9 +74487,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *332 - - *333 - - &515 + - *335 + - *336 + - &518 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. @@ -74260,7 +74506,7 @@ paths: application/json: schema: type: array - items: &516 + items: &519 title: Git Reference description: Git references within a repository type: object @@ -74313,8 +74559,8 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *59 - '409': *52 + Link: *61 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74335,17 +74581,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 responses: '200': description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: &517 + default: &520 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -74355,7 +74601,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74374,8 +74620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74404,16 +74650,16 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74432,9 +74678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 requestBody: required: true content: @@ -74463,11 +74709,11 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74483,16 +74729,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74540,8 +74786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74608,7 +74854,7 @@ paths: description: Response content: application/json: - schema: &519 + schema: &522 title: Git Tag description: Metadata for a Git tag type: object @@ -74659,7 +74905,7 @@ paths: - sha - type - url - verification: *518 + verification: *521 required: - sha - url @@ -74669,7 +74915,7 @@ paths: - tag - message examples: - default: &520 + default: &523 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -74696,7 +74942,7 @@ paths: schema: type: string '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74742,8 +74988,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *332 - - *333 + - *335 + - *336 - name: tag_sha in: path required: true @@ -74754,11 +75000,11 @@ paths: description: Response content: application/json: - schema: *519 + schema: *522 examples: - default: *520 + default: *523 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74780,8 +75026,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74854,7 +75100,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &524 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -74927,7 +75173,7 @@ paths: '422': *15 '404': *6 '403': *29 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74950,8 +75196,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *332 - - *333 + - *335 + - *336 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -74974,7 +75220,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *524 examples: default-response: summary: Default response @@ -75015,7 +75261,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75033,8 +75279,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -75044,7 +75290,7 @@ paths: application/json: schema: type: array - items: &522 + items: &525 title: Webhook description: Webhooks for repositories. type: object @@ -75098,7 +75344,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &766 + last_response: &769 title: Hook Response type: object properties: @@ -75153,7 +75399,7 @@ paths: status: unused message: headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -75172,8 +75418,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -75225,9 +75471,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: &523 + default: &526 value: type: Repository id: 12345678 @@ -75275,17 +75521,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '200': description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: *523 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -75305,9 +75551,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 requestBody: required: true content: @@ -75352,9 +75598,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: *523 + default: *526 '422': *15 '404': *6 x-github: @@ -75375,9 +75621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -75401,9 +75647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '200': description: Response @@ -75430,9 +75676,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 requestBody: required: false content: @@ -75476,11 +75722,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *17 - - *207 + - *210 responses: '200': description: Response @@ -75488,9 +75734,9 @@ paths: application/json: schema: type: array - items: *208 + items: *211 examples: - default: *209 + default: *212 '400': *14 '422': *15 x-github: @@ -75509,18 +75755,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *16 responses: '200': description: Response content: application/json: - schema: *210 + schema: *213 examples: - default: *211 + default: *214 '400': *14 '422': *15 x-github: @@ -75539,9 +75785,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *16 responses: '202': *39 @@ -75564,9 +75810,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -75591,9 +75837,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -75616,8 +75862,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response if immutable releases are enabled @@ -75663,11 +75909,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 - '409': *52 + '204': *187 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75684,11 +75930,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 - '409': *52 + '204': *187 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75742,14 +75988,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &524 + schema: &527 title: Import description: A repository import from an external source. type: object @@ -75848,7 +76094,7 @@ paths: - html_url - authors_url examples: - default: &527 + default: &530 value: vcs: subversion use_lfs: true @@ -75864,7 +76110,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': &525 + '503': &528 description: Unavailable due to service under maintenance. content: application/json: @@ -75893,8 +76139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -75942,7 +76188,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: default: value: @@ -75967,7 +76213,7 @@ paths: type: string '422': *15 '404': *6 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75995,8 +76241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -76045,7 +76291,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: example-1: summary: Example 1 @@ -76093,7 +76339,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': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76116,12 +76362,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76147,9 +76393,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *332 - - *333 - - &695 + - *335 + - *336 + - &698 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76163,7 +76409,7 @@ paths: application/json: schema: type: array - items: &526 + items: &529 title: Porter Author description: Porter Author type: object @@ -76217,7 +76463,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': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76242,8 +76488,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *332 - - *333 + - *335 + - *336 - name: author_id in: path required: true @@ -76273,7 +76519,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: default: value: @@ -76286,7 +76532,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76310,8 +76556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76352,7 +76598,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76380,8 +76626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -76408,11 +76654,11 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: *527 + default: *530 '422': *15 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76435,8 +76681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76444,8 +76690,8 @@ paths: application/json: schema: *22 examples: - default: *528 - '301': *336 + default: *531 + '301': *339 '404': *6 x-github: githubCloudOnly: false @@ -76465,8 +76711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76474,12 +76720,12 @@ paths: application/json: schema: anyOf: - - *224 + - *227 - type: object properties: {} additionalProperties: false examples: - default: &530 + default: &533 value: limit: collaborators_only origin: repository @@ -76504,13 +76750,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *529 + schema: *532 examples: default: summary: Example request body @@ -76522,9 +76768,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: *530 + default: *533 '409': description: Response x-github: @@ -76546,8 +76792,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -76570,8 +76816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -76581,9 +76827,9 @@ paths: application/json: schema: type: array - items: *531 + items: *534 examples: - default: &687 + default: &690 value: - id: 1 repository: @@ -76697,7 +76943,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76714,9 +76960,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *332 - - *333 - - *228 + - *335 + - *336 + - *231 requestBody: required: false content: @@ -76745,7 +76991,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: default: value: @@ -76876,9 +77122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *332 - - *333 - - *228 + - *335 + - *336 + - *231 responses: '204': description: Response @@ -76909,8 +77155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *332 - - *333 + - *335 + - *336 - 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 @@ -76958,7 +77204,7 @@ paths: required: false schema: type: string - - *235 + - *238 - name: sort description: What to sort results by. in: query @@ -76970,8 +77216,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -76981,9 +77227,9 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: &543 + default: &546 value: - id: 1 node_id: MDU6SXNzdWUx @@ -77131,8 +77377,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '422': *15 '404': *6 x-github: @@ -77161,8 +77407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -77237,9 +77483,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: &540 + default: &543 value: id: 1 node_id: MDU6SXNzdWUx @@ -77394,9 +77640,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *114 + '503': *116 '404': *6 - '410': *532 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -77424,9 +77670,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *332 - - *333 - - *101 + - *335 + - *336 + - *103 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -77436,7 +77682,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -77446,9 +77692,9 @@ paths: application/json: schema: type: array - items: *533 + items: *536 examples: - default: &542 + default: &545 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -77479,7 +77725,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '422': *15 '404': *6 x-github: @@ -77506,17 +77752,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: &534 + default: &537 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -77571,9 +77817,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -77595,9 +77841,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: *534 + default: *537 '422': *15 x-github: githubCloudOnly: false @@ -77615,9 +77861,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -77645,15 +77891,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *533 + schema: *536 examples: default: value: @@ -77709,7 +77955,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -77726,17 +77972,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *532 - '503': *114 + '410': *535 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77753,9 +77999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - 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 comment. @@ -77781,11 +78027,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -77804,9 +78050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -77838,16 +78084,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -77869,10 +78115,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *332 - - *333 - - *93 - - *536 + - *335 + - *336 + - *95 + - *539 responses: '204': description: Response @@ -77892,8 +78138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -77903,7 +78149,7 @@ paths: application/json: schema: type: array - items: &539 + items: &542 title: Issue Event description: Issue Event type: object @@ -77946,8 +78192,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *537 - required: *538 + properties: *540 + required: *541 nullable: true label: title: Issue Event Label @@ -77991,7 +78237,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *190 + requested_team: *193 dismissed_review: title: Issue Event Dismissed Review type: object @@ -78056,7 +78302,7 @@ paths: required: - from - to - author_association: *74 + author_association: *76 lock_reason: type: string nullable: true @@ -78069,8 +78315,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -78237,7 +78483,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -78255,8 +78501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *332 - - *333 + - *335 + - *336 - name: event_id in: path required: true @@ -78267,7 +78513,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *542 examples: default: value: @@ -78460,7 +78706,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *532 + '410': *535 '403': *29 x-github: githubCloudOnly: false @@ -78494,9 +78740,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *332 - - *333 - - &541 + - *335 + - *336 + - &544 name: issue_number description: The number that identifies the issue. in: path @@ -78508,11 +78754,11 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: default: summary: Issue - value: *540 + value: *543 pinned_comment: summary: Issue with pinned comment value: @@ -78711,9 +78957,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 '304': *37 x-github: githubCloudOnly: false @@ -78738,9 +78984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -78859,15 +79105,15 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 '422': *15 - '503': *114 + '503': *116 '403': *29 - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78885,9 +79131,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -78913,9 +79159,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78931,9 +79177,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: content: application/json: @@ -78958,9 +79204,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78982,9 +79228,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: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: assignee in: path required: true @@ -79024,10 +79270,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *332 - - *333 - - *541 - - *84 + - *335 + - *336 + - *544 + - *86 - *17 - *19 responses: @@ -79037,13 +79283,13 @@ paths: application/json: schema: type: array - items: *533 + items: *536 examples: - default: *542 + default: *545 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79072,9 +79318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -79096,16 +79342,16 @@ paths: description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: *534 + default: *537 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -79133,9 +79379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79145,14 +79391,14 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79180,9 +79426,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -79204,17 +79450,17 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *336 + '301': *339 '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -79245,9 +79491,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -79259,15 +79505,15 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 - '301': *336 + default: *543 + '301': *339 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *532 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -79293,9 +79539,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79305,14 +79551,14 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79329,9 +79575,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79345,7 +79591,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &546 + - &549 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79376,8 +79622,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 label: type: object properties: @@ -79399,7 +79645,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &547 + - &550 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -79430,8 +79676,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 label: type: object properties: @@ -79519,8 +79765,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 assigner: *4 required: @@ -79535,7 +79781,7 @@ paths: - performed_via_github_app - assignee - assigner - - &548 + - &551 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -79566,8 +79812,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 milestone: type: object properties: @@ -79586,7 +79832,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &549 + - &552 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -79617,8 +79863,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 milestone: type: object properties: @@ -79637,7 +79883,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &550 + - &553 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -79668,8 +79914,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 rename: type: object properties: @@ -79691,7 +79937,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &551 + - &554 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -79722,10 +79968,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 review_requester: *4 - requested_team: *190 + requested_team: *193 requested_reviewer: *4 required: - review_requester @@ -79738,7 +79984,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &555 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -79769,10 +80015,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 review_requester: *4 - requested_team: *190 + requested_team: *193 requested_reviewer: *4 required: - review_requester @@ -79785,7 +80031,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &556 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -79816,8 +80062,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 dismissed_review: type: object properties: @@ -79845,7 +80091,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &557 title: Locked Issue Event description: Locked Issue Event type: object @@ -79876,8 +80122,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 lock_reason: type: string example: '"off-topic"' @@ -79893,7 +80139,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &558 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -79924,8 +80170,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -79959,7 +80205,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &559 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -79990,8 +80236,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -80025,7 +80271,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &560 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80056,8 +80302,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -80091,7 +80337,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &561 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80181,8 +80427,8 @@ paths: name: label color: red headers: - Link: *59 - '410': *532 + Link: *61 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80199,9 +80445,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -80211,9 +80457,9 @@ paths: application/json: schema: type: array - items: *544 + items: *547 examples: - default: &657 + default: &660 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -80236,10 +80482,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80256,9 +80502,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -80268,9 +80514,9 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: &545 + default: &548 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80287,10 +80533,10 @@ paths: color: a2eeef default: false headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80306,9 +80552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80351,12 +80597,12 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 - '301': *336 + default: *548 + '301': *339 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -80373,9 +80619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80435,12 +80681,12 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 - '301': *336 + default: *548 + '301': *339 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -80457,15 +80703,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '204': description: Response - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80484,9 +80730,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: name in: path required: true @@ -80499,7 +80745,7 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: default: value: @@ -80510,9 +80756,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80532,9 +80778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80562,7 +80808,7 @@ paths: '204': description: Response '403': *29 - '410': *532 + '410': *535 '404': *6 '422': *15 x-github: @@ -80580,9 +80826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '204': description: Response @@ -80612,20 +80858,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '200': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 - '301': *336 + default: *543 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80642,9 +80888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - 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. @@ -80670,13 +80916,13 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80694,9 +80940,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -80728,16 +80974,16 @@ paths: description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -80759,10 +81005,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *332 - - *333 - - *541 - - *536 + - *335 + - *336 + - *544 + - *539 responses: '204': description: Response @@ -80791,9 +81037,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -80815,9 +81061,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -80850,9 +81096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -80862,13 +81108,13 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80896,9 +81142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -80925,16 +81171,16 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -80954,9 +81200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -80987,13 +81233,13 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 '403': *29 '404': *6 '422': *7 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -81011,9 +81257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -81028,9 +81274,6 @@ paths: description: Timeline Event type: object anyOf: - - *546 - - *547 - - *548 - *549 - *550 - *551 @@ -81041,6 +81284,9 @@ paths: - *556 - *557 - *558 + - *559 + - *560 + - *561 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81083,7 +81329,7 @@ paths: issue_url: type: string format: uri - author_association: *74 + author_association: *76 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -81093,16 +81339,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - reactions: *75 + properties: *74 + required: *75 + reactions: *77 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true required: - event @@ -81134,7 +81380,7 @@ paths: properties: type: type: string - issue: *77 + issue: *79 required: - event - created_at @@ -81334,7 +81580,7 @@ paths: type: string body_text: type: string - author_association: *74 + author_association: *76 required: - event - id @@ -81357,7 +81603,7 @@ paths: type: string comments: type: array - items: &580 + items: &583 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81452,7 +81698,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *74 + author_association: *76 _links: type: object properties: @@ -81536,7 +81782,7 @@ paths: enum: - line - file - reactions: *75 + reactions: *77 body_html: type: string example: '"

comment body

"' @@ -81572,7 +81818,7 @@ paths: type: string comments: type: array - items: *463 + items: *466 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -81603,8 +81849,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 required: - id @@ -81647,8 +81893,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 required: - id @@ -81691,8 +81937,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 state_reason: type: string nullable: true @@ -81859,9 +82105,9 @@ paths: type: User site_admin: true headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81878,8 +82124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -81889,7 +82135,7 @@ paths: application/json: schema: type: array - items: &561 + items: &564 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -81939,7 +82185,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81955,8 +82201,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -81992,9 +82238,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: &562 + default: &565 value: id: 1 key: ssh-rsa AAA... @@ -82028,9 +82274,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *332 - - *333 - - &563 + - *335 + - *336 + - &566 name: key_id description: The unique identifier of the key. in: path @@ -82042,9 +82288,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '404': *6 x-github: githubCloudOnly: false @@ -82062,9 +82308,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *332 - - *333 - - *563 + - *335 + - *336 + - *566 responses: '204': description: Response @@ -82084,8 +82330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -82095,11 +82341,11 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 + default: *548 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -82118,8 +82364,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82155,9 +82401,9 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: &564 + default: &567 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82189,8 +82435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82201,9 +82447,9 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: *564 + default: *567 '404': *6 x-github: githubCloudOnly: false @@ -82220,8 +82466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82260,7 +82506,7 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: default: value: @@ -82286,8 +82532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82313,8 +82559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -82353,9 +82599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *332 - - *333 - - *436 + - *335 + - *336 + - *439 responses: '200': description: Response @@ -82417,8 +82663,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true required: - _links @@ -82500,8 +82746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82566,8 +82812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82601,9 +82847,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *466 + schema: *469 examples: - default: *565 + default: *568 '204': description: Response when already merged '404': @@ -82628,8 +82874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *332 - - *333 + - *335 + - *336 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -82670,12 +82916,12 @@ paths: application/json: schema: type: array - items: &566 + items: &569 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 examples: default: value: @@ -82714,7 +82960,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -82731,8 +82977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82772,9 +83018,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: &567 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -82833,9 +83079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *332 - - *333 - - &568 + - *335 + - *336 + - &571 name: milestone_number description: The number that identifies the milestone. in: path @@ -82847,9 +83093,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *567 + default: *570 '404': *6 x-github: githubCloudOnly: false @@ -82866,9 +83112,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 requestBody: required: false content: @@ -82906,9 +83152,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *567 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82924,9 +83170,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 responses: '204': description: Response @@ -82947,9 +83193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 - *17 - *19 responses: @@ -82959,11 +83205,11 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 + default: *548 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82980,12 +83226,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *332 - - *333 - - *569 - - *570 - - *84 - - *571 + - *335 + - *336 + - *572 + - *573 + - *86 + - *574 - *17 - *19 responses: @@ -82995,11 +83241,11 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: *572 + default: *575 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -83021,8 +83267,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -83080,14 +83326,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &573 + schema: &576 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83212,7 +83458,7 @@ paths: - custom_404 - public examples: - default: &574 + default: &577 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83253,8 +83499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83308,11 +83554,11 @@ paths: description: Response content: application/json: - schema: *573 + schema: *576 examples: - default: *574 + default: *577 '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83333,8 +83579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83412,7 +83658,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83433,14 +83679,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83460,8 +83706,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -83471,7 +83717,7 @@ paths: application/json: schema: type: array - items: &575 + items: &578 title: Page Build description: Page Build type: object @@ -83546,7 +83792,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83565,8 +83811,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response @@ -83611,16 +83857,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: &576 + default: &579 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -83668,8 +83914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *332 - - *333 + - *335 + - *336 - name: build_id in: path required: true @@ -83680,9 +83926,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: *576 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83702,8 +83948,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83808,9 +84054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *332 - - *333 - - &577 + - *335 + - *336 + - &580 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -83868,11 +84114,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *332 - - *333 - - *577 + - *335 + - *336 + - *580 responses: - '204': *184 + '204': *187 '404': *6 x-github: githubCloudOnly: false @@ -83897,8 +84143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -84129,7 +84375,7 @@ paths: description: Empty response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -84156,8 +84402,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: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Private vulnerability reporting status @@ -84194,10 +84440,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 + '204': *187 '422': *14 x-github: githubCloudOnly: false @@ -84216,10 +84462,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 + '204': *187 '422': *14 x-github: githubCloudOnly: false @@ -84239,8 +84485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -84248,7 +84494,7 @@ paths: application/json: schema: type: array - items: *284 + items: *287 examples: default: value: @@ -84279,8 +84525,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: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -84292,7 +84538,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *284 + items: *287 required: - properties examples: @@ -84342,8 +84588,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *332 - - *333 + - *335 + - *336 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -84403,11 +84649,11 @@ paths: application/json: schema: type: array - items: *470 + items: *473 examples: - default: *578 + default: *581 headers: - Link: *59 + Link: *61 '304': *37 '422': *15 x-github: @@ -84437,8 +84683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -84503,7 +84749,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &585 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -84614,8 +84860,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true active_lock_reason: type: string @@ -84647,7 +84893,7 @@ paths: items: *4 requested_teams: type: array - items: *321 + items: *324 head: type: object properties: @@ -84655,7 +84901,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: *4 @@ -84672,7 +84918,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: *4 @@ -84685,14 +84931,14 @@ paths: _links: type: object properties: - comments: *271 - commits: *271 - statuses: *271 - html: *271 - issue: *271 - review_comments: *271 - review_comment: *271 - self: *271 + comments: *274 + commits: *274 + statuses: *274 + html: *274 + issue: *274 + review_comments: *274 + review_comment: *274 + self: *274 required: - comments - commits @@ -84702,8 +84948,8 @@ paths: - review_comments - review_comment - self - author_association: *74 - auto_merge: *579 + author_association: *76 + auto_merge: *582 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -84793,7 +85039,7 @@ paths: - merged_by - review_comments examples: - default: &583 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -85320,8 +85566,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: sort in: query required: false @@ -85340,7 +85586,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -85350,9 +85596,9 @@ paths: application/json: schema: type: array - items: *580 + items: *583 examples: - default: &585 + default: &588 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85404,7 +85650,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85429,17 +85675,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: &581 + default: &584 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85514,9 +85760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -85538,9 +85784,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: *581 + default: *584 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85556,9 +85802,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -85579,9 +85825,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - 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 pull request review comment. @@ -85607,11 +85853,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -85630,9 +85876,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -85664,16 +85910,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -85695,10 +85941,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *332 - - *333 - - *93 - - *536 + - *335 + - *336 + - *95 + - *539 responses: '204': description: Response @@ -85741,9 +85987,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *332 - - *333 - - &584 + - *335 + - *336 + - &587 name: pull_number description: The number that identifies the pull request. in: path @@ -85756,9 +86002,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *582 + schema: *585 examples: - default: *583 + default: *586 '304': *37 '404': *6 '406': @@ -85766,8 +86012,8 @@ paths: content: application/json: schema: *3 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85793,9 +86039,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -85837,9 +86083,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: - default: *583 + default: *586 '422': *15 '403': *29 x-github: @@ -85861,9 +86107,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -85923,21 +86169,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -85963,10 +86209,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *332 - - *333 - - *584 - - *101 + - *335 + - *336 + - *587 + - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -85976,7 +86222,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -85986,11 +86232,11 @@ paths: application/json: schema: type: array - items: *580 + items: *583 examples: - default: *585 + default: *588 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86021,9 +86267,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -86128,7 +86374,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: example-for-a-multi-line-comment: value: @@ -86216,10 +86462,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *332 - - *333 - - *584 - - *93 + - *335 + - *336 + - *587 + - *95 requestBody: required: true content: @@ -86241,7 +86487,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: default: value: @@ -86327,9 +86573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -86339,11 +86585,11 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: *586 + default: *589 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86371,9 +86617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -86383,7 +86629,7 @@ paths: application/json: schema: type: array - items: *479 + items: *482 examples: default: value: @@ -86399,10 +86645,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *59 + Link: *61 '422': *15 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86421,9 +86667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 responses: '204': description: Response if pull request has been merged @@ -86446,9 +86692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -86559,9 +86805,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 responses: '200': description: Response @@ -86577,7 +86823,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 required: - users - teams @@ -86618,7 +86864,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86636,9 +86882,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -86675,7 +86921,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -87211,9 +87457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -87247,7 +87493,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -87752,9 +87998,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -87764,7 +88010,7 @@ paths: application/json: schema: type: array - items: &587 + items: &590 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -87833,7 +88079,7 @@ paths: type: string body_text: type: string - author_association: *74 + author_association: *76 required: - id - node_id @@ -87882,7 +88128,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87915,9 +88161,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -88003,9 +88249,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: &589 + default: &592 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88068,10 +88314,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - &588 + - *335 + - *336 + - *587 + - &591 name: review_id description: The unique identifier of the review. in: path @@ -88083,9 +88329,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: &590 + default: &593 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88144,10 +88390,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -88170,7 +88416,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -88232,18 +88478,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 responses: '200': description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: *589 + default: *592 '422': *7 '404': *6 x-github: @@ -88270,10 +88516,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 - *17 - *19 responses: @@ -88352,13 +88598,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *74 + author_association: *76 _links: type: object properties: - self: *271 - html: *271 - pull_request: *271 + self: *274 + html: *274 + pull_request: *274 required: - self - html @@ -88367,7 +88613,7 @@ paths: type: string body_html: type: string - reactions: *75 + reactions: *77 side: description: The side of the first line of the range for a multi-line comment. @@ -88479,7 +88725,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -88508,10 +88754,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -88539,7 +88785,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -88602,10 +88848,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -88640,9 +88886,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: *590 + default: *593 '404': *6 '422': *7 '403': *29 @@ -88664,9 +88910,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -88729,8 +88975,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -88743,9 +88989,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: &592 + default: &595 value: type: file encoding: base64 @@ -88787,8 +89033,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *332 - - *333 + - *335 + - *336 - name: dir description: The alternate path to look for a README file in: path @@ -88808,9 +89054,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: *592 + default: *595 '404': *6 '422': *15 x-github: @@ -88832,8 +89078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -88843,7 +89089,7 @@ paths: application/json: schema: type: array - items: *593 + items: *596 examples: default: value: @@ -88917,7 +89163,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -88937,8 +89183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -89014,9 +89260,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: &597 + default: &600 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89121,9 +89367,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *332 - - *333 - - &595 + - *335 + - *336 + - &598 name: asset_id description: The unique identifier of the asset. in: path @@ -89135,9 +89381,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: &596 + default: &599 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 @@ -89172,7 +89418,7 @@ paths: type: User site_admin: false '404': *6 - '302': *481 + '302': *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89188,9 +89434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *332 - - *333 - - *595 + - *335 + - *336 + - *598 requestBody: required: false content: @@ -89218,9 +89464,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *596 + default: *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89236,9 +89482,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *332 - - *333 - - *595 + - *335 + - *336 + - *598 responses: '204': description: Response @@ -89262,8 +89508,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -89348,16 +89594,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89374,8 +89620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *332 - - *333 + - *335 + - *336 - name: tag description: tag parameter in: path @@ -89388,9 +89634,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 '404': *6 x-github: githubCloudOnly: false @@ -89412,9 +89658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *332 - - *333 - - &598 + - *335 + - *336 + - &601 name: release_id description: The unique identifier of the release. in: path @@ -89428,9 +89674,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: *593 + schema: *596 examples: - default: *597 + default: *600 '401': description: Unauthorized x-github: @@ -89448,9 +89694,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 requestBody: required: false content: @@ -89514,9 +89760,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 '404': description: Not Found if the discussion category name is invalid content: @@ -89537,9 +89783,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 responses: '204': description: Response @@ -89559,9 +89805,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - *17 - *19 responses: @@ -89571,7 +89817,7 @@ paths: application/json: schema: type: array - items: *594 + items: *597 examples: default: value: @@ -89608,7 +89854,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89652,9 +89898,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: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - name: name in: query required: true @@ -89680,7 +89926,7 @@ paths: description: Response for successful upload content: application/json: - schema: *594 + schema: *597 examples: response-for-successful-upload: value: @@ -89735,9 +89981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - 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. @@ -89761,11 +90007,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -89784,9 +90030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 requestBody: required: true content: @@ -89816,16 +90062,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -89847,10 +90093,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *332 - - *333 - - *598 - - *536 + - *335 + - *336 + - *601 + - *539 responses: '204': description: Response @@ -89874,9 +90120,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 - *17 - *19 responses: @@ -89892,8 +90138,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *293 - - &599 + - *296 + - &602 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -89912,69 +90158,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *294 - - *599 - - allOf: - - *295 - - *599 - - allOf: - - *296 - - *599 - - allOf: - - *600 - - *599 - allOf: - *297 - - *599 + - *602 - allOf: - *298 - - *599 + - *602 - allOf: - *299 - - *599 + - *602 + - allOf: + - *603 + - *602 - allOf: - *300 - - *599 + - *602 - allOf: - *301 - - *599 + - *602 - allOf: - *302 - - *599 + - *602 - allOf: - *303 - - *599 + - *602 - allOf: - *304 - - *599 + - *602 - allOf: - *305 - - *599 + - *602 - allOf: - *306 - - *599 + - *602 - allOf: - *307 - - *599 + - *602 - allOf: - *308 - - *599 + - *602 - allOf: - *309 - - *599 + - *602 - allOf: - *310 - - *599 + - *602 - allOf: - *311 - - *599 + - *602 - allOf: - *312 - - *599 + - *602 - allOf: - *313 - - *599 + - *602 + - allOf: + - *314 + - *602 + - allOf: + - *315 + - *602 + - allOf: + - *316 + - *602 examples: default: value: @@ -90013,8 +90259,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - name: includes_parents @@ -90025,7 +90271,7 @@ paths: schema: type: boolean default: true - - *601 + - *604 responses: '200': description: Response @@ -90033,7 +90279,7 @@ paths: application/json: schema: type: array - items: *314 + items: *317 examples: default: value: @@ -90064,7 +90310,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -90080,8 +90326,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 requestBody: description: Request body required: true @@ -90101,16 +90347,16 @@ paths: - tag - push default: branch - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *288 + items: *294 + conditions: *291 rules: type: array description: An array of rules within the ruleset. - items: *602 + items: *605 required: - name - enforcement @@ -90141,9 +90387,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: &612 + default: &615 value: id: 42 name: super cool ruleset @@ -90177,7 +90423,7 @@ paths: updated_at: '2023-08-23T16:29:47Z' '404': *6 '422': *15 - '500': *113 + '500': *115 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -90191,12 +90437,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *332 - - *333 - - *603 - - *604 - - *605 + - *335 + - *336 - *606 + - *607 + - *608 + - *609 - *17 - *19 responses: @@ -90204,11 +90450,11 @@ paths: description: Response content: application/json: - schema: *607 + schema: *610 examples: - default: *608 + default: *611 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90227,19 +90473,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *332 - - *333 - - *609 + - *335 + - *336 + - *612 responses: '200': description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: *611 + default: *614 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90265,8 +90511,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90286,11 +90532,11 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *612 + default: *615 '404': *6 - '500': *113 + '500': *115 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -90306,8 +90552,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90332,16 +90578,16 @@ paths: - branch - tag - push - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *288 + items: *294 + conditions: *291 rules: description: An array of rules within the ruleset. type: array - items: *602 + items: *605 examples: default: value: @@ -90369,12 +90615,12 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *612 + default: *615 '404': *6 '422': *15 - '500': *113 + '500': *115 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -90390,8 +90636,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90402,7 +90648,7 @@ paths: '204': description: Response '404': *6 - '500': *113 + '500': *115 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -90414,8 +90660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - name: ruleset_id @@ -90431,11 +90677,11 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *613 + default: *616 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90452,8 +90698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90471,7 +90717,7 @@ paths: description: Response content: application/json: - schema: *614 + schema: *617 examples: default: value: @@ -90504,7 +90750,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90526,22 +90772,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *332 - - *333 - - *615 - - *616 - - *617 + - *335 + - *336 - *618 - *619 - - *53 - - *19 - - *17 - *620 - *621 - *622 + - *55 + - *19 + - *17 - *623 - *624 - *625 + - *626 + - *627 + - *628 responses: '200': description: Response @@ -90549,11 +90795,11 @@ paths: application/json: schema: type: array - items: &629 + items: &632 type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -90561,15 +90807,15 @@ paths: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *626 - resolution: *627 + state: *629 + resolution: *630 resolved_at: type: string format: date-time @@ -90665,7 +90911,7 @@ paths: pull request. ' - oneOf: *628 + oneOf: *631 nullable: true has_more_locations: type: boolean @@ -90792,7 +91038,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90814,16 +91060,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 - - *625 + - *335 + - *336 + - *433 + - *628 responses: '200': description: Response content: application/json: - schema: *629 + schema: *632 examples: default: value: @@ -90854,7 +91100,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90877,9 +91123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: true content: @@ -90887,8 +91133,8 @@ paths: schema: type: object properties: - state: *626 - resolution: *627 + state: *629 + resolution: *630 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -90922,7 +91168,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *632 examples: default: value: @@ -90995,7 +91241,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91017,9 +91263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 - *19 - *17 responses: @@ -91030,7 +91276,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &788 + items: &791 type: object properties: type: @@ -91056,9 +91302,6 @@ paths: example: commit details: oneOf: - - *630 - - *631 - - *632 - *633 - *634 - *635 @@ -91069,6 +91312,9 @@ paths: - *640 - *641 - *642 + - *643 + - *644 + - *645 examples: default: value: @@ -91128,11 +91374,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *59 + Link: *61 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91154,8 +91400,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -91163,14 +91409,14 @@ paths: schema: type: object properties: - reason: &644 + reason: &647 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *643 + placeholder_id: *646 required: - reason - placeholder_id @@ -91187,7 +91433,7 @@ paths: schema: type: object properties: - reason: *644 + reason: *647 expire_at: type: string format: date-time @@ -91210,7 +91456,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91233,13 +91479,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *114 + '503': *116 '200': description: Response content: @@ -91249,7 +91495,7 @@ paths: properties: incremental_scans: type: array - items: &645 + items: &648 description: Information on a single scan performed by secret scanning on the repository type: object @@ -91275,15 +91521,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *645 + items: *648 backfill_scans: type: array - items: *645 + items: *648 custom_pattern_backfill_scans: type: array items: allOf: - - *645 + - *648 - type: object properties: pattern_name: @@ -91353,9 +91599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *332 - - *333 - - *53 + - *335 + - *336 + - *55 - name: sort description: The property to sort the results by. in: query @@ -91367,8 +91613,8 @@ paths: - updated - published default: created - - *45 - - *46 + - *47 + - *48 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -91398,9 +91644,9 @@ paths: application/json: schema: type: array - items: *646 + items: *649 examples: - default: *647 + default: *650 '400': *14 '404': *6 x-github: @@ -91423,8 +91669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -91497,7 +91743,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 required: - login - type @@ -91584,9 +91830,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: &649 + default: &652 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -91819,8 +92065,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -91924,7 +92170,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: default: value: @@ -92071,17 +92317,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '200': description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: *649 + default: *652 '403': *29 '404': *6 x-github: @@ -92105,9 +92351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 requestBody: required: true content: @@ -92180,7 +92426,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 required: - login - type @@ -92266,17 +92512,17 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: *649 - add_credit: *649 + default: *652 + add_credit: *652 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *122 + schema: *124 examples: invalid_state_transition: value: @@ -92307,9 +92553,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: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '202': *39 '400': *14 @@ -92336,17 +92582,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '202': description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 '400': *14 '422': *15 '403': *29 @@ -92372,8 +92618,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -92450,7 +92696,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -92472,8 +92718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -92482,7 +92728,7 @@ paths: application/json: schema: type: array - items: &650 + items: &653 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -92495,7 +92741,7 @@ paths: - 1124 - -435 '202': *39 - '204': *184 + '204': *187 '422': description: Repository contains more than 10,000 commits x-github: @@ -92515,8 +92761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -92565,7 +92811,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92592,8 +92838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -92667,7 +92913,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92689,8 +92935,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -92844,8 +93090,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -92855,7 +93101,7 @@ paths: application/json: schema: type: array - items: *650 + items: *653 examples: default: value: @@ -92868,7 +93114,7 @@ paths: - - 0 - 2 - 21 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92888,8 +93134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *332 - - *333 + - *335 + - *336 - name: sha in: path required: true @@ -92943,7 +93189,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *654 examples: default: value: @@ -92997,8 +93243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93010,9 +93256,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93030,14 +93276,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &652 + schema: &655 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93105,8 +93351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -93132,7 +93378,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *655 examples: default: value: @@ -93159,8 +93405,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -93180,8 +93426,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93237,7 +93483,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93260,8 +93506,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *332 - - *333 + - *335 + - *336 - name: ref in: path required: true @@ -93297,8 +93543,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93308,11 +93554,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -93330,8 +93576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 responses: @@ -93339,7 +93585,7 @@ paths: description: Response content: application/json: - schema: &653 + schema: &656 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -93351,7 +93597,7 @@ paths: required: - names examples: - default: &654 + default: &657 value: names: - octocat @@ -93374,8 +93620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -93406,9 +93652,9 @@ paths: description: Response content: application/json: - schema: *653 + schema: *656 examples: - default: *654 + default: *657 '404': *6 '422': *7 x-github: @@ -93429,9 +93675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *332 - - *333 - - &655 + - *335 + - *336 + - &658 name: per description: The time frame to display results for. in: query @@ -93460,7 +93706,7 @@ paths: example: 128 clones: type: array - items: &656 + items: &659 title: Traffic type: object properties: @@ -93547,8 +93793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -93638,8 +93884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -93699,9 +93945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *332 - - *333 - - *655 + - *335 + - *336 + - *658 responses: '200': description: Response @@ -93720,7 +93966,7 @@ paths: example: 3782 views: type: array - items: *656 + items: *659 required: - uniques - count @@ -93797,8 +94043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -93834,7 +94080,7 @@ paths: description: Response content: application/json: - schema: *153 + schema: *156 examples: default: value: @@ -94072,8 +94318,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -94096,8 +94342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -94119,8 +94365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -94146,8 +94392,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *332 - - *333 + - *335 + - *336 - name: ref in: path required: true @@ -94239,9 +94485,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -94282,7 +94528,7 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: default: value: @@ -94388,8 +94634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *142 - - *541 + - *145 + - *544 requestBody: required: true content: @@ -94453,14 +94699,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *544 + items: *547 examples: - default: *657 + default: *660 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -94491,8 +94737,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *142 - - *541 + - *145 + - *544 requestBody: required: true content: @@ -94557,14 +94803,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *544 + items: *547 examples: - default: *657 + default: *660 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -94590,16 +94836,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *142 - - *541 - - *231 + - *145 + - *544 + - *234 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -94713,7 +94959,7 @@ paths: html_url: type: string format: uri - repository: *153 + repository: *156 score: type: number file_size: @@ -94731,7 +94977,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &658 + text_matches: &661 title: Search Result Text Matches type: array items: @@ -94845,7 +95091,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *114 + '503': *116 '422': *15 '403': *29 x-github: @@ -94893,7 +95139,7 @@ paths: enum: - author-date - committer-date - - &659 + - &662 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 @@ -94964,7 +95210,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true comment_count: type: integer @@ -94984,7 +95230,7 @@ paths: url: type: string format: uri - verification: *518 + verification: *521 required: - author - committer @@ -95003,7 +95249,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true parents: type: array @@ -95016,12 +95262,12 @@ paths: type: string sha: type: string - repository: *153 + repository: *156 score: type: number node_id: type: string - text_matches: *658 + text_matches: *661 required: - sha - node_id @@ -95213,7 +95459,7 @@ paths: - interactions - created - updated - - *659 + - *662 - *17 - *19 - name: advanced_search @@ -95310,11 +95556,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: type: string state_reason: @@ -95324,8 +95570,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true comments: type: integer @@ -95339,7 +95585,7 @@ paths: type: string format: date-time nullable: true - text_matches: *658 + text_matches: *661 pull_request: type: object properties: @@ -95372,10 +95618,10 @@ paths: type: string score: type: number - author_association: *74 + author_association: *76 draft: type: boolean - repository: *71 + repository: *73 body_html: type: string body_text: @@ -95383,7 +95629,7 @@ paths: timeline_url: type: string format: uri - type: *232 + type: *235 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -95393,17 +95639,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - reactions: *75 + reactions: *77 required: - closed_at - comments @@ -95518,7 +95764,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *114 + '503': *116 '422': *15 '304': *37 '403': *29 @@ -95571,7 +95817,7 @@ paths: enum: - created - updated - - *659 + - *662 - *17 - *19 responses: @@ -95615,7 +95861,7 @@ paths: nullable: true score: type: number - text_matches: *658 + text_matches: *661 required: - id - node_id @@ -95700,7 +95946,7 @@ paths: - forks - help-wanted-issues - updated - - *659 + - *662 - *17 - *19 responses: @@ -95930,8 +96176,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true permissions: type: object @@ -95950,7 +96196,7 @@ paths: - admin - pull - push - text_matches: *658 + text_matches: *661 temp_clone_token: type: string allow_merge_commit: @@ -96152,7 +96398,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *114 + '503': *116 '422': *15 '304': *37 x-github: @@ -96250,7 +96496,7 @@ paths: type: string format: uri nullable: true - text_matches: *658 + text_matches: *661 related: type: array nullable: true @@ -96441,7 +96687,7 @@ paths: - followers - repositories - joined - - *659 + - *662 - *17 - *19 responses: @@ -96545,7 +96791,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *658 + text_matches: *661 blog: type: string nullable: true @@ -96604,7 +96850,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *114 + '503': *116 '422': *15 x-github: githubCloudOnly: false @@ -96624,7 +96870,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &662 + - &665 name: team_id description: The unique identifier of the team. in: path @@ -96636,9 +96882,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 x-github: githubCloudOnly: false @@ -96665,7 +96911,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *662 + - *665 requestBody: required: true content: @@ -96728,16 +96974,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '201': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 '422': *15 '403': *29 @@ -96765,7 +97011,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *662 + - *665 responses: '204': description: Response @@ -96794,7 +97040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -96804,11 +97050,11 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96832,7 +97078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *662 + - *665 - name: role description: Filters members returned by their role in the team. in: query @@ -96855,9 +97101,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -96883,8 +97129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: if user is a member @@ -96920,8 +97166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -96960,8 +97206,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -96997,16 +97243,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '200': description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-user-is-a-team-maintainer: *663 + response-if-user-is-a-team-maintainer: *666 '404': *6 x-github: githubCloudOnly: false @@ -97039,8 +97285,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 requestBody: required: false content: @@ -97065,9 +97311,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-users-membership-with-team-is-now-pending: *664 + response-if-users-membership-with-team-is-now-pending: *667 '403': description: Forbidden if team synchronization is set up '422': @@ -97101,8 +97347,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -97129,7 +97375,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -97139,11 +97385,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -97171,15 +97417,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *665 + schema: *668 examples: alternative-response-with-extra-repository-information: value: @@ -97330,9 +97576,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 requestBody: required: false content: @@ -97382,9 +97628,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 responses: '204': description: Response @@ -97409,7 +97655,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -97419,11 +97665,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - response-if-child-teams-exist: *666 + response-if-child-teams-exist: *669 headers: - Link: *59 + Link: *61 '404': *6 '403': *29 '422': *15 @@ -97454,7 +97700,7 @@ paths: application/json: schema: oneOf: - - &667 + - &670 title: Private User description: Private User type: object @@ -97657,7 +97903,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &694 + - &697 title: Public User description: Public User type: object @@ -97969,7 +98215,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *670 examples: default: value: @@ -98048,7 +98294,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '304': *37 '404': *6 '403': *29 @@ -98071,7 +98317,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *63 + - *65 responses: '204': description: If the user is blocked @@ -98099,7 +98345,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -98123,7 +98369,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -98172,11 +98418,11 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -98313,21 +98559,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98367,7 +98613,7 @@ paths: type: integer secrets: type: array - items: &668 + items: &671 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -98407,9 +98653,9 @@ paths: - visibility - selected_repositories_url examples: - default: *456 + default: *459 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98477,13 +98723,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 responses: '200': description: Response content: application/json: - schema: *668 + schema: *671 examples: default: value: @@ -98513,7 +98759,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 requestBody: required: true content: @@ -98558,7 +98804,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -98586,7 +98832,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 responses: '204': description: Response @@ -98611,7 +98857,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *161 + - *164 responses: '200': description: Response @@ -98627,13 +98873,13 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *669 + default: *672 '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98654,7 +98900,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *161 + - *164 requestBody: required: true content: @@ -98686,7 +98932,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98708,7 +98954,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *161 + - *164 - name: repository_id in: path required: true @@ -98720,7 +98966,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98741,7 +98987,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *161 + - *164 - name: repository_id in: path required: true @@ -98753,7 +98999,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98773,17 +99019,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -98807,7 +99053,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 requestBody: required: false content: @@ -98837,9 +99083,9 @@ paths: description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 @@ -98861,11 +99107,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '202': *39 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -98890,13 +99136,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '202': description: Response content: application/json: - schema: &670 + schema: &673 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -98937,7 +99183,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &671 + default: &674 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -98945,7 +99191,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -98969,7 +99215,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *239 + - *242 - name: export_id in: path required: true @@ -98982,9 +99228,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *673 examples: - default: *671 + default: *674 '404': *6 x-github: githubCloudOnly: false @@ -99005,7 +99251,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *239 + - *242 responses: '200': description: Response @@ -99021,11 +99267,11 @@ paths: type: integer machines: type: array - items: *672 + items: *675 examples: - default: *673 + default: *676 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99052,7 +99298,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *239 + - *242 requestBody: required: true content: @@ -99102,13 +99348,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *335 + repository: *338 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *454 - required: *455 + properties: *457 + required: *458 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -99882,17 +100128,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '304': *37 - '500': *113 + '500': *115 '400': *14 '401': *25 '402': @@ -99902,7 +100148,7 @@ paths: schema: *3 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99922,16 +100168,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 - '500': *113 + default: *456 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99960,9 +100206,9 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: &684 + default: &687 value: - id: 197 name: hello_docker @@ -100063,7 +100309,7 @@ paths: application/json: schema: type: array - items: &674 + items: &677 title: Email description: Email type: object @@ -100128,16 +100374,16 @@ paths: application/json: schema: type: array - items: *674 + items: *677 examples: - default: &686 + default: &689 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -100205,7 +100451,7 @@ paths: application/json: schema: type: array - items: *674 + items: *677 examples: default: value: @@ -100315,9 +100561,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -100348,9 +100594,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -100370,7 +100616,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *63 + - *65 responses: '204': description: if the person is followed by the authenticated user @@ -100400,7 +100646,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -100425,7 +100671,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -100461,7 +100707,7 @@ paths: application/json: schema: type: array - items: &675 + items: &678 title: GPG Key description: A unique encryption key type: object @@ -100592,7 +100838,7 @@ paths: - subkeys - revoked examples: - default: &703 + default: &706 value: - id: 3 name: Octocat's GPG Key @@ -100624,7 +100870,7 @@ paths: revoked: false raw_key: string headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -100677,9 +100923,9 @@ paths: description: Response content: application/json: - schema: *675 + schema: *678 examples: - default: &676 + default: &679 value: id: 3 name: Octocat's GPG Key @@ -100736,7 +100982,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &677 + - &680 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -100748,9 +100994,9 @@ paths: description: Response content: application/json: - schema: *675 + schema: *678 examples: - default: *676 + default: *679 '404': *6 '304': *37 '403': *29 @@ -100773,7 +101019,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *677 + - *680 responses: '204': description: Response @@ -100916,7 +101162,7 @@ paths: suspended_at: suspended_by: headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -100964,11 +101210,11 @@ paths: type: array items: allOf: - - *71 + - *73 examples: - default: *145 + default: *148 headers: - Link: *59 + Link: *61 '404': *6 '403': *29 '304': *37 @@ -100991,7 +101237,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *142 + - *145 responses: '204': description: Response @@ -101017,7 +101263,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *142 + - *145 responses: '204': description: Response @@ -101051,12 +101297,12 @@ paths: application/json: schema: anyOf: - - *224 + - *227 - type: object properties: {} additionalProperties: false examples: - default: *225 + default: *228 '204': description: Response when there are no restrictions x-github: @@ -101080,7 +101326,7 @@ paths: required: true content: application/json: - schema: *529 + schema: *532 examples: default: value: @@ -101091,7 +101337,7 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: default: value: @@ -101172,7 +101418,7 @@ paths: - closed - all default: open - - *235 + - *238 - name: sort description: What to sort results by. in: query @@ -101184,8 +101430,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -101195,11 +101441,11 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *236 + default: *239 headers: - Link: *59 + Link: *61 '404': *6 '304': *37 x-github: @@ -101230,7 +101476,7 @@ paths: application/json: schema: type: array - items: &678 + items: &681 title: Key description: Key type: object @@ -101281,7 +101527,7 @@ paths: verified: false read_only: false headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -101331,9 +101577,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *681 examples: - default: &679 + default: &682 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -101366,15 +101612,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *566 responses: '200': description: Response content: application/json: - schema: *678 + schema: *681 examples: - default: *679 + default: *682 '404': *6 '304': *37 '403': *29 @@ -101397,7 +101643,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *566 responses: '204': description: Response @@ -101430,7 +101676,7 @@ paths: application/json: schema: type: array - items: &680 + items: &683 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -101487,7 +101733,7 @@ paths: - id - type - login - plan: *95 + plan: *97 required: - billing_cycle - next_billing_date @@ -101498,7 +101744,7 @@ paths: - account - plan examples: - default: &681 + default: &684 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -101531,7 +101777,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '304': *37 '401': *25 '404': *6 @@ -101560,11 +101806,11 @@ paths: application/json: schema: type: array - items: *680 + items: *683 examples: - default: *681 + default: *684 headers: - Link: *59 + Link: *61 '304': *37 '401': *25 x-github: @@ -101602,7 +101848,7 @@ paths: application/json: schema: type: array - items: *241 + items: *244 examples: default: value: @@ -101685,7 +101931,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -101710,13 +101956,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -101778,7 +102024,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *67 + - *69 requestBody: required: true content: @@ -101803,7 +102049,7 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -101875,7 +102121,7 @@ paths: application/json: schema: type: array - items: *243 + items: *246 examples: default: value: @@ -102028,7 +102274,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102128,7 +102374,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -102308,7 +102554,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *244 + - *247 - name: exclude in: query required: false @@ -102321,7 +102567,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -102515,7 +102761,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *244 + - *247 responses: '302': description: Response @@ -102541,7 +102787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *244 + - *247 responses: '204': description: Response @@ -102570,8 +102816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *244 - - *682 + - *247 + - *685 responses: '204': description: Response @@ -102595,7 +102841,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *244 + - *247 - *17 - *19 responses: @@ -102605,9 +102851,9 @@ paths: application/json: schema: type: array - items: *58 + items: *60 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -102640,11 +102886,11 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102684,7 +102930,7 @@ paths: - docker - nuget - container - - *683 + - *686 - *19 - *17 responses: @@ -102694,10 +102940,10 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *684 - '400': *685 + default: *687 + '400': *688 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102717,16 +102963,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: - default: &704 + default: &707 value: id: 40201 name: octo-name @@ -102839,8 +103085,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 responses: '204': description: Response @@ -102870,8 +103116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 - name: token description: package token schema: @@ -102903,8 +103149,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: - - *252 - - *253 + - *255 + - *256 - *19 - *17 - name: state @@ -102924,7 +103170,7 @@ paths: application/json: schema: type: array - items: *254 + items: *257 examples: default: value: @@ -102973,15 +103219,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '200': description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -103017,9 +103263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '204': description: Response @@ -103049,9 +103295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '204': description: Response @@ -103088,11 +103334,11 @@ paths: application/json: schema: type: array - items: *674 + items: *677 examples: - default: *686 + default: *689 headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103201,9 +103447,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: &693 + default: &696 summary: Default response value: - id: 1296269 @@ -103324,7 +103570,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '403': *29 @@ -103507,9 +103753,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -103548,11 +103794,11 @@ paths: application/json: schema: type: array - items: *531 + items: *534 examples: - default: *687 + default: *690 headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103573,12 +103819,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *228 + - *231 responses: '204': description: Response '403': *29 - '409': *52 + '409': *54 '404': *6 '304': *37 '451': *15 @@ -103597,11 +103843,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *228 + - *231 responses: '204': description: Response - '409': *52 + '409': *54 '304': *37 '404': *6 '403': *29 @@ -103630,7 +103876,7 @@ paths: application/json: schema: type: array - items: &688 + items: &691 title: Social account description: Social media account type: object @@ -103645,12 +103891,12 @@ paths: - provider - url examples: - default: &689 + default: &692 value: - provider: twitter url: https://twitter.com/github headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103707,9 +103953,9 @@ paths: application/json: schema: type: array - items: *688 + items: *691 examples: - default: *689 + default: *692 '422': *15 '304': *37 '404': *6 @@ -103796,7 +104042,7 @@ paths: application/json: schema: type: array - items: &690 + items: &693 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -103816,7 +104062,7 @@ paths: - title - created_at examples: - default: &722 + default: &725 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103827,7 +104073,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103880,9 +104126,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *693 examples: - default: &691 + default: &694 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103912,7 +104158,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: - - &692 + - &695 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -103924,9 +104170,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *693 examples: - default: *691 + default: *694 '404': *6 '304': *37 '403': *29 @@ -103949,7 +104195,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: - - *692 + - *695 responses: '204': description: Response @@ -103978,7 +104224,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &723 + - &726 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 @@ -103991,7 +104237,7 @@ paths: - created - updated default: created - - *53 + - *55 - *17 - *19 responses: @@ -104001,13 +104247,13 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default-response: *693 + default-response: *696 application/vnd.github.v3.star+json: schema: type: array - items: &724 + items: &727 title: Starred Repository description: Starred Repository type: object @@ -104015,7 +104261,7 @@ paths: starred_at: type: string format: date-time - repo: *71 + repo: *73 required: - starred_at - repo @@ -104143,7 +104389,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -104163,8 +104409,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: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response if this repository is starred by you @@ -104192,8 +104438,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -104217,8 +104463,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -104251,11 +104497,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -104290,7 +104536,7 @@ paths: application/json: schema: type: array - items: *328 + items: *331 examples: default: value: @@ -104341,7 +104587,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104368,7 +104614,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *97 + - *99 responses: '200': description: Response @@ -104376,10 +104622,10 @@ paths: application/json: schema: oneOf: - - *667 - - *694 + - *670 + - *697 examples: - default-response: &698 + default-response: &701 summary: Default response value: login: octocat @@ -104414,7 +104660,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &699 + response-with-git-hub-plan-information: &702 summary: Response with GitHub plan information value: login: octocat @@ -104471,14 +104717,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &696 + - &699 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *268 + - *271 requestBody: required: true description: Details of the draft item to create in the project. @@ -104512,9 +104758,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: - draft_issue: *275 + draft_issue: *278 '304': *37 '403': *29 '401': *25 @@ -104537,7 +104783,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *695 + - *698 - *17 responses: '200': @@ -104548,7 +104794,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: Link: example: ; rel="next" @@ -104572,8 +104818,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *696 - - *268 + - *699 + - *271 requestBody: required: true content: @@ -104644,17 +104890,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *697 + schema: *700 examples: table_view: summary: Response for creating a table view - value: *279 + value: *282 board_view: summary: Response for creating a board view with filter - value: *279 + value: *282 roadmap_view: summary: Response for creating a roadmap view - value: *279 + value: *282 '304': *37 '403': *29 '401': *25 @@ -104688,7 +104934,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *63 + - *65 responses: '200': description: Response @@ -104696,11 +104942,11 @@ paths: application/json: schema: oneOf: - - *667 - - *694 + - *670 + - *697 examples: - default-response: *698 - response-with-git-hub-plan-information: *699 + default-response: *701 + response-with-git-hub-plan-information: *702 '404': *6 x-github: githubCloudOnly: false @@ -104724,9 +104970,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *45 - - *46 - - *63 + - *47 + - *48 + - *65 requestBody: required: true content: @@ -104750,8 +104996,8 @@ paths: required: - subject_digests examples: - default: *700 - withPredicateType: *701 + default: *703 + withPredicateType: *704 responses: '200': description: Response @@ -104790,7 +105036,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *702 + default: *705 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104808,7 +105054,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *63 + - *65 requestBody: required: true content: @@ -104873,7 +105119,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *63 + - *65 - name: subject_digest description: Subject Digest in: path @@ -104904,7 +105150,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *63 + - *65 - name: attestation_id description: Attestation ID in: path @@ -104940,9 +105186,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations parameters: - *17 - - *45 - - *46 - - *63 + - *47 + - *48 + - *65 - name: subject_digest description: Subject Digest in: path @@ -104979,12 +105225,12 @@ paths: initiator: type: string examples: - default: *393 + default: *396 '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -105010,7 +105256,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *63 + - *65 responses: '200': description: Response @@ -105018,9 +105264,9 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *684 + default: *687 '403': *29 '401': *25 x-github: @@ -105043,7 +105289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105053,7 +105299,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105115,8 +105361,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *63 - - *67 + - *65 + - *69 - *17 - *19 responses: @@ -105126,7 +105372,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105203,7 +105449,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105213,7 +105459,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105271,7 +105517,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105283,9 +105529,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105302,7 +105548,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105314,9 +105560,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105333,7 +105579,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *63 + - *65 - name: target_user in: path required: true @@ -105360,8 +105606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *63 - - *84 + - *65 + - *86 - *17 - *19 responses: @@ -105371,11 +105617,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -105394,7 +105640,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105404,11 +105650,11 @@ paths: application/json: schema: type: array - items: *675 + items: *678 examples: - default: *703 + default: *706 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105430,7 +105676,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *63 + - *65 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -105502,7 +105748,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *63 + - *65 responses: '200': description: Response @@ -105510,7 +105756,7 @@ paths: application/json: schema: *22 examples: - default: *528 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105528,7 +105774,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105563,7 +105809,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105583,7 +105829,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105593,11 +105839,11 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105634,8 +105880,8 @@ paths: - docker - nuget - container - - *683 - - *63 + - *686 + - *65 - *19 - *17 responses: @@ -105645,12 +105891,12 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *684 + default: *687 '403': *29 '401': *25 - '400': *685 + '400': *688 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105670,17 +105916,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: - default: *704 + default: *707 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105701,9 +105947,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '204': description: Response @@ -105735,9 +105981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 - name: token description: package token schema: @@ -105769,9 +106015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '200': description: Response @@ -105779,7 +106025,7 @@ paths: application/json: schema: type: array - items: *254 + items: *257 examples: default: value: @@ -105837,16 +106083,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *252 - - *253 - *255 - - *63 + - *256 + - *258 + - *65 responses: '200': description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -105881,10 +106127,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *252 - - *253 - - *63 - *255 + - *256 + - *65 + - *258 responses: '204': description: Response @@ -105916,10 +106162,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *252 - - *253 - - *63 - *255 + - *256 + - *65 + - *258 responses: '204': description: Response @@ -105943,15 +106189,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *63 + - *65 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -105960,11 +106206,11 @@ paths: application/json: schema: type: array - items: *266 + items: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -105984,18 +106230,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *268 - - *63 + - *271 + - *65 responses: '200': description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106015,11 +106261,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *268 - - *63 + - *271 + - *65 - *17 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -106027,11 +106273,11 @@ paths: application/json: schema: type: array - items: *272 + items: *275 examples: - default: *705 + default: *708 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106050,8 +106296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *63 - - *268 + - *65 + - *271 requestBody: required: true content: @@ -106089,7 +106335,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *706 + items: *709 required: - name - data_type @@ -106105,7 +106351,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *707 + iteration_configuration: *710 required: - name - data_type @@ -106127,20 +106373,20 @@ paths: value: name: Due date data_type: date - single_select_field: *708 - iteration_field: *709 + single_select_field: *711 + iteration_field: *712 responses: '201': description: Response content: application/json: - schema: *272 + schema: *275 examples: - text_field: *710 - number_field: *711 - date_field: *712 - single_select_field: *713 - iteration_field: *714 + text_field: *713 + number_field: *714 + date_field: *715 + single_select_field: *716 + iteration_field: *717 '304': *37 '403': *29 '401': *25 @@ -106161,19 +106407,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *268 - - *715 - - *63 + - *271 + - *718 + - *65 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: *716 + default: *719 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106194,10 +106440,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *268 - - *63 - - *45 - - *46 + - *271 + - *65 + - *47 + - *48 - *17 - 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) @@ -106227,11 +106473,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106250,8 +106496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *63 - - *268 + - *65 + - *271 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -106321,22 +106567,22 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *275 + value: *278 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *275 + value: *278 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *275 + value: *278 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *275 + value: *278 '304': *37 '403': *29 '401': *25 @@ -106356,9 +106602,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -106378,11 +106624,11 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106401,9 +106647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -106473,13 +106719,13 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - text_field: *277 - number_field: *277 - date_field: *277 - single_select_field: *277 - iteration_field: *277 + text_field: *280 + number_field: *280 + date_field: *280 + single_select_field: *280 + iteration_field: *280 '401': *25 '403': *29 '404': *6 @@ -106499,9 +106745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 responses: '204': description: Response @@ -106523,9 +106769,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *268 - - *63 - - *717 + - *271 + - *65 + - *720 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -106541,8 +106787,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -106551,11 +106797,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106581,7 +106827,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106591,7 +106837,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -106656,7 +106902,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106666,7 +106912,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -106729,7 +106975,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *63 + - *65 - name: type description: Limit results to repositories of the specified type. in: query @@ -106772,11 +107018,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106796,12 +107042,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *63 - - *116 + - *65 - *118 - - *117 - - *718 + - *120 - *119 + - *721 + - *121 responses: '200': description: Response when getting a billing premium request usage report @@ -106908,8 +107154,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106929,10 +107175,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *63 - - *116 - - *719 - - *117 + - *65 + - *118 + - *722 + - *119 responses: '200': description: Response when getting a billing usage report @@ -107002,8 +107248,8 @@ paths: repositoryName: user/example '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107026,13 +107272,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *63 - - *116 + - *65 - *118 - - *117 - - *720 + - *120 - *119 - - *721 + - *723 + - *121 + - *724 responses: '200': description: Response when getting a billing usage summary @@ -107137,8 +107383,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107156,7 +107402,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107166,11 +107412,11 @@ paths: application/json: schema: type: array - items: *688 + items: *691 examples: - default: *689 + default: *692 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107188,7 +107434,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107198,11 +107444,11 @@ paths: application/json: schema: type: array - items: *690 + items: *693 examples: - default: *722 + default: *725 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107224,9 +107470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *63 - - *723 - - *53 + - *65 + - *726 + - *55 - *17 - *19 responses: @@ -107237,13 +107483,13 @@ paths: schema: anyOf: - type: array - items: *724 + items: *727 - type: array - items: *71 + items: *73 examples: - default-response: *693 + default-response: *696 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107260,7 +107506,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107270,11 +107516,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107400,7 +107646,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &725 + enterprise: &728 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -107458,7 +107704,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &726 + installation: &729 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -107477,7 +107723,7 @@ x-webhooks: required: - id - node_id - organization: &727 + organization: &730 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -107537,13 +107783,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &728 + repository: &731 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &760 + properties: &763 id: description: Unique identifier of the repository example: 42 @@ -107563,8 +107809,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true organization: title: Simple User @@ -108232,7 +108478,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &761 + required: &764 - archive_url - assignees_url - blobs_url @@ -108383,10 +108629,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -108462,11 +108708,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: &729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: &732 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) @@ -108689,11 +108935,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: *729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: *732 sender: *4 required: - action @@ -108876,11 +109122,11 @@ x-webhooks: - everyone required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: *729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: *732 sender: *4 required: - action @@ -108964,7 +109210,7 @@ x-webhooks: type: string enum: - completed - check_run: &731 + check_run: &734 title: CheckRun description: A check performed on the code of a given code change type: object @@ -109017,8 +109263,8 @@ x-webhooks: type: string pull_requests: type: array - items: *82 - repository: *153 + items: *84 + repository: *156 status: example: completed type: string @@ -109055,7 +109301,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *730 + deployment: *733 details_url: example: https://example.com type: string @@ -109105,7 +109351,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *82 + items: *84 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -109140,10 +109386,10 @@ x-webhooks: - output - app - pull_requests - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -109534,11 +109780,11 @@ x-webhooks: type: string enum: - created - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -109932,11 +110178,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 requested_action: description: The action requested by the user. type: object @@ -110339,11 +110585,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -111313,10 +111559,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -112005,10 +112251,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -112691,10 +112937,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -112860,7 +113106,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -113005,20 +113251,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &732 + commit_oid: &735 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: *725 - installation: *726 - organization: *727 - ref: &733 + enterprise: *728 + installation: *729 + organization: *730 + ref: &736 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: *728 + repository: *731 sender: *4 required: - action @@ -113183,7 +113429,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -113413,12 +113659,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -113513,7 +113759,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -113684,12 +113930,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -113855,7 +114101,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -114021,12 +114267,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -114125,7 +114371,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114300,16 +114546,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *728 + repository: *731 sender: *4 required: - action @@ -114406,7 +114652,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114546,12 +114792,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -114717,7 +114963,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -114862,10 +115108,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -115120,10 +115366,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -115203,18 +115449,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *727 - pusher_type: &734 + organization: *730 + pusher_type: &737 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &735 + ref: &738 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -115224,7 +115470,7 @@ x-webhooks: enum: - tag - branch - repository: *728 + repository: *731 sender: *4 required: - ref @@ -115306,10 +115552,10 @@ x-webhooks: type: string enum: - created - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115394,9 +115640,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115473,10 +115719,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115553,10 +115799,10 @@ x-webhooks: type: string enum: - updated - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115633,19 +115879,19 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - repository: *728 - organization: *727 + enterprise: *728 + installation: *729 + repository: *731 + organization: *730 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *284 + items: *287 old_property_values: type: array description: The old custom property values for the repository. - items: *284 + items: *287 required: - action - repository @@ -115721,18 +115967,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - pusher_type: *734 - ref: *735 + enterprise: *728 + installation: *729 + organization: *730 + pusher_type: *737 + ref: *738 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *728 + repository: *731 sender: *4 required: - ref @@ -115812,11 +116058,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -115896,11 +116142,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -115981,11 +116227,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116066,11 +116312,11 @@ x-webhooks: type: string enum: - created - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116149,11 +116395,11 @@ x-webhooks: type: string enum: - dismissed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116232,11 +116478,11 @@ x-webhooks: type: string enum: - fixed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116316,11 +116562,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116399,11 +116645,11 @@ x-webhooks: type: string enum: - reopened - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116480,9 +116726,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - key: &736 + enterprise: *728 + installation: *729 + key: &739 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -116518,8 +116764,8 @@ x-webhooks: - verified - created_at - read_only - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -116596,11 +116842,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - key: *736 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + key: *739 + organization: *730 + repository: *731 sender: *4 required: - action @@ -117156,12 +117402,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: &742 + workflow: &745 title: Workflow type: object nullable: true @@ -117902,15 +118148,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *737 - required: *738 + properties: *740 + required: *741 nullable: true pull_requests: type: array - items: *582 - repository: *728 - organization: *727 - installation: *726 + items: *585 + repository: *731 + organization: *730 + installation: *729 sender: *4 responses: '200': @@ -117981,7 +118227,7 @@ x-webhooks: type: string enum: - approved - approver: &739 + approver: &742 type: object properties: avatar_url: @@ -118024,11 +118270,11 @@ x-webhooks: type: string comment: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - reviewers: &740 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + reviewers: &743 type: array items: type: object @@ -118107,7 +118353,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &741 + workflow_job_run: &744 type: object properties: conclusion: @@ -118838,18 +119084,18 @@ x-webhooks: type: string enum: - rejected - approver: *739 + approver: *742 comment: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - reviewers: *740 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + reviewers: *743 sender: *4 since: type: string - workflow_job_run: *741 + workflow_job_run: *744 workflow_job_runs: type: array items: @@ -119553,13 +119799,13 @@ x-webhooks: type: string enum: - requested - enterprise: *725 + enterprise: *728 environment: type: string - installation: *726 - organization: *727 - repository: *728 - requestor: &747 + installation: *729 + organization: *730 + repository: *731 + requestor: &750 title: User type: object nullable: true @@ -121448,12 +121694,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Deployment Workflow Run type: object @@ -122133,7 +122379,7 @@ x-webhooks: type: string enum: - answered - answer: &745 + answer: &748 type: object properties: author_association: @@ -122290,11 +122536,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122421,11 +122667,11 @@ x-webhooks: - from required: - category - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122508,11 +122754,11 @@ x-webhooks: type: string enum: - closed - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122594,7 +122840,7 @@ x-webhooks: type: string enum: - created - comment: &744 + comment: &747 type: object properties: author_association: @@ -122751,11 +122997,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122838,12 +123084,12 @@ x-webhooks: type: string enum: - deleted - comment: *744 - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + comment: *747 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122938,12 +123184,12 @@ x-webhooks: - from required: - body - comment: *744 - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + comment: *747 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123027,11 +123273,11 @@ x-webhooks: type: string enum: - created - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123113,11 +123359,11 @@ x-webhooks: type: string enum: - deleted - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123217,11 +123463,11 @@ x-webhooks: type: string required: - from - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123303,10 +123549,10 @@ x-webhooks: type: string enum: - labeled - discussion: *743 - enterprise: *725 - installation: *726 - label: &746 + discussion: *746 + enterprise: *728 + installation: *729 + label: &749 title: Label type: object properties: @@ -123338,8 +123584,8 @@ x-webhooks: - color - default - description - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123422,11 +123668,11 @@ x-webhooks: type: string enum: - locked - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123508,11 +123754,11 @@ x-webhooks: type: string enum: - pinned - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123594,11 +123840,11 @@ x-webhooks: type: string enum: - reopened - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123683,16 +123929,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *743 - new_repository: *728 + new_discussion: *746 + new_repository: *731 required: - new_discussion - new_repository - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123775,10 +124021,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *743 - old_answer: *745 - organization: *727 - repository: *728 + discussion: *746 + old_answer: *748 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123860,12 +124106,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *743 - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123948,11 +124194,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124034,11 +124280,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124111,7 +124357,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *725 + enterprise: *728 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -124771,9 +125017,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *726 - organization: *727 - repository: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - forkee @@ -124919,9 +125165,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pages: description: The pages that were updated. type: array @@ -124958,7 +125204,7 @@ x-webhooks: - action - sha - html_url - repository: *728 + repository: *731 sender: *4 required: - pages @@ -125034,10 +125280,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: &748 + organization: *730 + repositories: &751 description: An array of repository objects that the installation can access. type: array @@ -125063,8 +125309,8 @@ x-webhooks: - name - full_name - private - repository: *728 - requester: *747 + repository: *731 + requester: *750 sender: *4 required: - action @@ -125139,11 +125385,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125219,11 +125465,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125299,10 +125545,10 @@ x-webhooks: type: string enum: - added - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories_added: &749 + organization: *730 + repositories_added: &752 description: An array of repository objects, which were added to the installation. type: array @@ -125348,15 +125594,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *728 - repository_selection: &750 + repository: *731 + repository_selection: &753 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *747 + requester: *750 sender: *4 required: - action @@ -125435,10 +125681,10 @@ x-webhooks: type: string enum: - removed - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories_added: *749 + organization: *730 + repositories_added: *752 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -125465,9 +125711,9 @@ x-webhooks: - name - full_name - private - repository: *728 - repository_selection: *750 - requester: *747 + repository: *731 + repository_selection: *753 + requester: *750 sender: *4 required: - action @@ -125546,11 +125792,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125728,10 +125974,10 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 target_type: type: string @@ -125810,11 +126056,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125938,8 +126184,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 reactions: title: Reactions type: object @@ -125988,8 +126234,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true user: title: User @@ -126074,8 +126320,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -126864,8 +127110,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -126881,7 +127127,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -127214,8 +127460,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -127295,7 +127541,7 @@ x-webhooks: type: string enum: - deleted - comment: &751 + comment: &754 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -127452,8 +127698,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true required: - url @@ -127468,8 +127714,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128254,8 +128500,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128271,7 +128517,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -128606,8 +128852,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -128687,7 +128933,7 @@ x-webhooks: type: string enum: - edited - changes: &780 + changes: &783 description: The changes to the comment. type: object properties: @@ -128699,9 +128945,9 @@ x-webhooks: type: string required: - from - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129489,8 +129735,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129506,7 +129752,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -129839,8 +130085,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -129921,9 +130167,9 @@ x-webhooks: type: string enum: - pinned - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130713,8 +130959,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130730,7 +130976,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -131065,8 +131311,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -131146,9 +131392,9 @@ x-webhooks: type: string enum: - unpinned - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131938,8 +132184,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131955,7 +132201,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -132290,8 +132536,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132374,15 +132620,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 + blocked_issue: *79 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - blocking_issue_repo: *71 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + blocking_issue_repo: *73 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132465,15 +132711,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 + blocked_issue: *79 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - blocking_issue_repo: *71 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + blocking_issue_repo: *73 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132555,15 +132801,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 - blocked_issue_repo: *71 + blocked_issue: *79 + blocked_issue_repo: *73 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132646,15 +132892,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 - blocked_issue_repo: *71 + blocked_issue: *79 + blocked_issue_repo: *73 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132734,10 +132980,10 @@ x-webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *725 - installation: *726 - issue: &754 + assignee: *750 + enterprise: *728 + installation: *729 + issue: &757 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133526,14 +133772,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133549,7 +133795,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -133650,8 +133896,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -133731,8 +133977,8 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -134526,14 +134772,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134549,7 +134795,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -134785,8 +135031,8 @@ x-webhooks: required: - state - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -134865,8 +135111,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135651,14 +135897,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135674,7 +135920,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -135774,8 +136020,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -135854,8 +136100,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136662,14 +136908,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136685,7 +136931,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -136764,7 +137010,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &752 + milestone: &755 title: Milestone description: A collection of related issues and pull requests. type: object @@ -136902,8 +137148,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -137002,8 +137248,8 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137792,14 +138038,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137812,7 +138058,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -137916,9 +138162,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *727 - repository: *728 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -137998,8 +138244,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138787,14 +139033,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138807,7 +139053,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -138911,9 +139157,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *727 - repository: *728 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -138993,8 +139239,8 @@ x-webhooks: type: string enum: - locked - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139806,14 +140052,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139826,7 +140072,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -139907,8 +140153,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -139987,8 +140233,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140794,14 +141040,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140817,7 +141063,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -140895,9 +141141,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *752 - organization: *727 - repository: *728 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -141760,11 +142006,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141792,8 +142038,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true user: title: User @@ -141865,7 +142111,7 @@ x-webhooks: required: - login - id - type: *232 + type: *235 required: - id - number @@ -142349,8 +142595,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143134,11 +143380,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143154,7 +143400,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -143167,8 +143413,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true user: title: User @@ -143262,8 +143508,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -143343,9 +143589,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *725 - installation: *726 - issue: &753 + enterprise: *728 + installation: *729 + issue: &756 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144128,14 +144374,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144151,7 +144397,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -144251,8 +144497,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -144331,8 +144577,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145142,14 +145388,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145243,9 +145489,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *232 - organization: *727 - repository: *728 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -146111,14 +146357,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146134,7 +146380,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -146717,11 +146963,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *725 - installation: *726 - issue: *753 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *756 + organization: *730 + repository: *731 sender: *4 required: - action @@ -146801,12 +147047,12 @@ x-webhooks: type: string enum: - typed - enterprise: *725 - installation: *726 - issue: *754 - type: *232 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -146887,7 +147133,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &783 + assignee: &786 title: User type: object nullable: true @@ -146957,11 +147203,11 @@ x-webhooks: required: - login - id - enterprise: *725 - installation: *726 - issue: *754 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147040,12 +147286,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *725 - installation: *726 - issue: *754 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147125,8 +147371,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147936,14 +148182,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147959,7 +148205,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -148037,8 +148283,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148118,11 +148364,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *725 - installation: *726 - issue: *753 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *756 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148201,12 +148447,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *725 - installation: *726 - issue: *754 - type: *232 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148286,11 +148532,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148368,11 +148614,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148482,11 +148728,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148568,9 +148814,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: &755 + enterprise: *728 + installation: *729 + marketplace_purchase: &758 title: Marketplace Purchase type: object required: @@ -148653,8 +148899,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *727 - previous_marketplace_purchase: &756 + organization: *730 + previous_marketplace_purchase: &759 title: Marketplace Purchase type: object properties: @@ -148734,7 +148980,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -148814,10 +149060,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148900,7 +149146,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -148982,10 +149228,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -149067,7 +149313,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -149148,8 +149394,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 marketplace_purchase: title: Marketplace Purchase type: object @@ -149231,9 +149477,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *727 - previous_marketplace_purchase: *756 - repository: *728 + organization: *730 + previous_marketplace_purchase: *759 + repository: *731 sender: *4 required: - action @@ -149313,12 +149559,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 - previous_marketplace_purchase: *756 - repository: *728 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 + previous_marketplace_purchase: *759 + repository: *731 sender: *4 required: - action @@ -149420,11 +149666,11 @@ x-webhooks: type: string required: - to - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -149524,11 +149770,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -149607,11 +149853,11 @@ x-webhooks: type: string enum: - removed - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -149689,11 +149935,11 @@ x-webhooks: type: string enum: - added - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149769,7 +150015,7 @@ x-webhooks: required: - login - id - team: &757 + team: &760 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -149992,11 +150238,11 @@ x-webhooks: type: string enum: - removed - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150073,7 +150319,7 @@ x-webhooks: required: - login - id - team: *757 + team: *760 required: - action - scope @@ -150155,8 +150401,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *726 - merge_group: &759 + installation: *729 + merge_group: &762 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -150175,15 +150421,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *758 + head_commit: *761 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150269,10 +150515,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *726 - merge_group: *759 - organization: *727 - repository: *728 + installation: *729 + merge_group: *762 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150345,7 +150591,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 + enterprise: *728 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -150454,16 +150700,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *726 - organization: *727 + installation: *729 + organization: *730 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -150544,11 +150790,11 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150627,9 +150873,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - milestone: &762 + enterprise: *728 + installation: *729 + milestone: &765 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150766,8 +151012,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150846,11 +151092,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150960,11 +151206,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151044,11 +151290,11 @@ x-webhooks: type: string enum: - opened - enterprise: *725 - installation: *726 - milestone: *762 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *765 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151127,11 +151373,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *747 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + blocked_user: *750 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151210,11 +151456,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *747 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + blocked_user: *750 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151293,9 +151539,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - membership: &763 + enterprise: *728 + installation: *729 + membership: &766 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -151402,8 +151648,8 @@ x-webhooks: - role - organization_url - user - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151481,11 +151727,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151564,8 +151810,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -151681,10 +151927,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 - user: *747 + user: *750 required: - action - invitation @@ -151762,11 +152008,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151853,11 +152099,11 @@ x-webhooks: properties: from: type: string - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151934,9 +152180,9 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 package: description: Information about the package. type: object @@ -152435,7 +152681,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &764 + items: &767 title: Ruby Gems metadata type: object properties: @@ -152530,7 +152776,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -152606,9 +152852,9 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 package: description: Information about the package. type: object @@ -152961,7 +153207,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *767 source_url: type: string format: uri @@ -153031,7 +153277,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -153207,12 +153453,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *725 + enterprise: *728 id: type: integer - installation: *726 - organization: *727 - repository: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - id @@ -153289,7 +153535,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &765 + personal_access_token_request: &768 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -153435,10 +153681,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *725 - organization: *727 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153515,11 +153761,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *765 - enterprise: *725 - organization: *727 + personal_access_token_request: *768 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153595,11 +153841,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *765 - enterprise: *725 - organization: *727 + personal_access_token_request: *768 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153674,11 +153920,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *765 - organization: *727 - enterprise: *725 + personal_access_token_request: *768 + organization: *730 + enterprise: *728 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153783,7 +154029,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *766 + last_response: *769 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -153815,8 +154061,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 zen: description: Random string of GitHub zen. @@ -154061,10 +154307,10 @@ x-webhooks: - from required: - note - enterprise: *725 - installation: *726 - organization: *727 - project_card: &767 + enterprise: *728 + installation: *729 + organization: *730 + project_card: &770 title: Project Card type: object properties: @@ -154183,7 +154429,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -154264,11 +154510,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project_card: *767 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_card: *770 + repository: *731 sender: *4 required: - action @@ -154348,9 +154594,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 project_card: title: Project Card type: object @@ -154478,8 +154724,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -154573,11 +154819,11 @@ x-webhooks: - from required: - note - enterprise: *725 - installation: *726 - organization: *727 - project_card: *767 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_card: *770 + repository: *731 sender: *4 required: - action @@ -154671,9 +154917,9 @@ x-webhooks: - from required: - column_id - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 project_card: allOf: - title: Project Card @@ -154863,7 +155109,7 @@ x-webhooks: type: string required: - after_id - repository: *728 + repository: *731 sender: *4 required: - action @@ -154943,10 +155189,10 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - organization: *727 - project: &769 + enterprise: *728 + installation: *729 + organization: *730 + project: &772 title: Project type: object properties: @@ -155070,7 +155316,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -155150,10 +155396,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project_column: &768 + enterprise: *728 + installation: *729 + organization: *730 + project_column: &771 title: Project Column type: object properties: @@ -155192,7 +155438,7 @@ x-webhooks: - name - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -155271,18 +155517,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -155372,11 +155618,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 + repository: *731 sender: *4 required: - action @@ -155456,11 +155702,11 @@ x-webhooks: type: string enum: - moved - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 + repository: *731 sender: *4 required: - action @@ -155540,11 +155786,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -155624,18 +155870,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - project: *769 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -155737,11 +155983,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -155820,11 +156066,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -155905,9 +156151,9 @@ x-webhooks: type: string enum: - closed - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -155988,9 +156234,9 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156071,9 +156317,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156190,9 +156436,9 @@ x-webhooks: type: string to: type: string - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156275,7 +156521,7 @@ x-webhooks: type: string enum: - archived - changes: &773 + changes: &776 type: object properties: archived_at: @@ -156289,9 +156535,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *726 - organization: *727 - projects_v2_item: &770 + installation: *729 + organization: *730 + projects_v2_item: &773 title: Projects v2 Item description: An item belonging to a project type: object @@ -156309,7 +156555,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *273 + content_type: *276 creator: *4 created_at: type: string @@ -156426,9 +156672,9 @@ x-webhooks: nullable: true to: type: string - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156510,9 +156756,9 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156593,9 +156839,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156701,7 +156947,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &771 + - &774 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -156723,7 +156969,7 @@ x-webhooks: required: - id - name - - &772 + - &775 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -156757,8 +157003,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *771 - - *772 + - *774 + - *775 required: - field_value - type: object @@ -156774,9 +157020,9 @@ x-webhooks: nullable: true required: - body - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156871,9 +157117,9 @@ x-webhooks: to: type: string nullable: true - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156956,10 +157202,10 @@ x-webhooks: type: string enum: - restored - changes: *773 - installation: *726 - organization: *727 - projects_v2_item: *770 + changes: *776 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -157041,9 +157287,9 @@ x-webhooks: type: string enum: - reopened - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -157124,14 +157370,14 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2_status_update: &776 + installation: *729 + organization: *730 + projects_v2_status_update: &779 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *774 - required: *775 + properties: *777 + required: *778 sender: *4 required: - action @@ -157212,9 +157458,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2_status_update: *776 + installation: *729 + organization: *730 + projects_v2_status_update: *779 sender: *4 required: - action @@ -157350,9 +157596,9 @@ x-webhooks: type: string format: date nullable: true - installation: *726 - organization: *727 - projects_v2_status_update: *776 + installation: *729 + organization: *730 + projects_v2_status_update: *779 sender: *4 required: - action @@ -157423,10 +157669,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - repository @@ -157503,13 +157749,13 @@ x-webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *725 - installation: *726 - number: &777 + assignee: *750 + enterprise: *728 + installation: *729 + number: &780 description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -159804,7 +160050,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -159886,11 +160132,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -162180,7 +162426,7 @@ x-webhooks: - draft reason: type: string - repository: *728 + repository: *731 sender: *4 required: - action @@ -162262,11 +162508,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -164556,7 +164802,7 @@ x-webhooks: - draft reason: type: string - repository: *728 + repository: *731 sender: *4 required: - action @@ -164638,13 +164884,13 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: &778 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: &781 allOf: - - *582 + - *585 - type: object properties: allow_auto_merge: @@ -164706,7 +164952,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *728 + repository: *731 sender: *4 required: - action @@ -164787,12 +165033,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -164872,11 +165118,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *725 - milestone: *566 - number: *777 - organization: *727 - pull_request: &779 + enterprise: *728 + milestone: *569 + number: *780 + organization: *730 + pull_request: &782 title: Pull Request type: object properties: @@ -167165,7 +167411,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -167244,11 +167490,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -169556,7 +169802,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *728 + repository: *731 sender: *4 required: - action @@ -169680,12 +169926,12 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -169765,11 +170011,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -172062,7 +172308,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -172142,11 +172388,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *725 - installation: *726 - label: *746 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + label: *749 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -174440,7 +174686,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -174521,10 +174767,10 @@ x-webhooks: type: string enum: - locked - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -176816,7 +177062,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -176896,12 +177142,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *725 - milestone: *566 - number: *777 - organization: *727 - pull_request: *779 - repository: *728 + enterprise: *728 + milestone: *569 + number: *780 + organization: *730 + pull_request: *782 + repository: *731 sender: *4 required: - action @@ -176980,12 +177226,12 @@ x-webhooks: type: string enum: - opened - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177066,12 +177312,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177151,12 +177397,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177522,9 +177768,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -179706,7 +179952,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -179786,7 +180032,7 @@ x-webhooks: type: string enum: - deleted - comment: &781 + comment: &784 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -180071,9 +180317,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -182243,7 +182489,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -182323,11 +182569,11 @@ x-webhooks: type: string enum: - edited - changes: *780 - comment: *781 - enterprise: *725 - installation: *726 - organization: *727 + changes: *783 + comment: *784 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -184500,7 +184746,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -184581,9 +184827,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -186768,7 +187014,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 review: description: The review that was affected. type: object @@ -187015,9 +187261,9 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -189067,8 +189313,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 - review: &782 + repository: *731 + review: &785 description: The review that was affected. type: object properties: @@ -189301,12 +189547,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -191601,7 +191847,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_reviewer: title: User type: object @@ -191685,12 +191931,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -193992,7 +194238,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194184,12 +194430,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -196486,7 +196732,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_reviewer: title: User type: object @@ -196571,12 +196817,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -198864,7 +199110,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199045,9 +199291,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -201234,8 +201480,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 - review: *782 + repository: *731 + review: *785 sender: *4 required: - action @@ -201315,9 +201561,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -203413,7 +203659,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 sender: *4 thread: type: object @@ -203800,9 +204046,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -205884,7 +206130,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 sender: *4 thread: type: object @@ -206274,10 +206520,10 @@ x-webhooks: type: string before: type: string - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -208560,7 +208806,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -208642,11 +208888,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *783 - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + assignee: *786 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -210941,7 +211187,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -211020,11 +211266,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *725 - installation: *726 - label: *746 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + label: *749 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -213309,7 +213555,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -213390,10 +213636,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -215670,7 +215916,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -215870,7 +216116,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *725 + enterprise: *728 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -215962,8 +216208,8 @@ x-webhooks: - url - author - committer - installation: *726 - organization: *727 + installation: *729 + organization: *730 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -216553,9 +216799,9 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 registry_package: type: object properties: @@ -217001,7 +217247,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *764 + items: *767 summary: type: string tag_name: @@ -217055,7 +217301,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -217133,9 +217379,9 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 registry_package: type: object properties: @@ -217443,7 +217689,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *767 summary: type: string tag_name: @@ -217492,7 +217738,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -217569,10 +217815,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - release: &784 + enterprise: *728 + installation: *729 + organization: *730 + release: &787 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -217890,7 +218136,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *728 + repository: *731 sender: *4 required: - action @@ -217967,11 +218213,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -218088,11 +218334,11 @@ x-webhooks: type: boolean required: - to - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -218170,9 +218416,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -218494,7 +218740,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *728 + repository: *731 sender: *4 required: - action @@ -218570,10 +218816,10 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - release: &785 + enterprise: *728 + installation: *729 + organization: *730 + release: &788 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218892,7 +219138,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *728 + repository: *731 sender: *4 required: - action @@ -218968,11 +219214,11 @@ x-webhooks: type: string enum: - released - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -219048,11 +219294,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *725 - installation: *726 - organization: *727 - release: *785 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *788 + repository: *731 sender: *4 required: - action @@ -219128,11 +219374,11 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_advisory: *646 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_advisory: *649 sender: *4 required: - action @@ -219208,11 +219454,11 @@ x-webhooks: type: string enum: - reported - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_advisory: *646 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_advisory: *649 sender: *4 required: - action @@ -219288,10 +219534,10 @@ x-webhooks: type: string enum: - archived - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219368,10 +219614,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219449,10 +219695,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219536,10 +219782,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219651,10 +219897,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219726,10 +219972,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 status: type: string @@ -219810,10 +220056,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219890,10 +220136,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219987,10 +220233,10 @@ x-webhooks: - name required: - repository - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220070,11 +220316,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 sender: *4 required: - action @@ -220152,11 +220398,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 sender: *4 required: - action @@ -220234,11 +220480,11 @@ x-webhooks: type: string enum: - edited - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 changes: type: object properties: @@ -220257,16 +220503,16 @@ x-webhooks: properties: added: type: array - items: *288 + items: *291 deleted: type: array - items: *288 + items: *291 updated: type: array items: type: object properties: - condition: *288 + condition: *291 changes: type: object properties: @@ -220299,16 +220545,16 @@ x-webhooks: properties: added: type: array - items: *602 + items: *605 deleted: type: array - items: *602 + items: *605 updated: type: array items: type: object properties: - rule: *602 + rule: *605 changes: type: object properties: @@ -220542,10 +220788,10 @@ x-webhooks: - from required: - owner - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220623,10 +220869,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220704,7 +220950,7 @@ x-webhooks: type: string enum: - create - alert: &786 + alert: &789 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -220826,10 +221072,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221035,10 +221281,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221116,11 +221362,11 @@ x-webhooks: type: string enum: - reopen - alert: *786 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221319,10 +221565,10 @@ x-webhooks: enum: - fixed - open - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221400,11 +221646,11 @@ x-webhooks: type: string enum: - assigned - alert: &787 + alert: &790 type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -221412,8 +221658,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri @@ -221519,10 +221765,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221600,11 +221846,11 @@ x-webhooks: type: string enum: - created - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221685,11 +221931,11 @@ x-webhooks: type: string enum: - created - alert: *787 - installation: *726 - location: *788 - organization: *727 - repository: *728 + alert: *790 + installation: *729 + location: *791 + organization: *730 + repository: *731 sender: *4 required: - location @@ -221927,11 +222173,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222009,11 +222255,11 @@ x-webhooks: type: string enum: - reopened - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222091,11 +222337,11 @@ x-webhooks: type: string enum: - resolved - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222173,12 +222419,12 @@ x-webhooks: type: string enum: - unassigned - alert: *787 + alert: *790 assignee: *4 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222256,11 +222502,11 @@ x-webhooks: type: string enum: - validated - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222386,10 +222632,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *728 - enterprise: *725 - installation: *726 - organization: *727 + repository: *731 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -222467,16 +222713,16 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - security_advisory: &789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + security_advisory: &792 description: The details of the security advisory, including summary, description, and severity. type: object properties: - cvss_severities: *55 + cvss_severities: *57 cwes: type: array items: @@ -222642,11 +222888,11 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - security_advisory: *789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + security_advisory: *792 sender: *4 required: - action @@ -222719,16 +222965,16 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 security_advisory: description: The details of the security advisory, including summary, description, and severity. type: object properties: - cvss_severities: *55 + cvss_severities: *57 cwes: type: array items: @@ -222894,11 +223140,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *287 - enterprise: *725 - installation: *726 - organization: *727 - repository: *335 + security_and_analysis: *290 + enterprise: *728 + installation: *729 + organization: *730 + repository: *338 sender: *4 required: - changes @@ -222976,12 +223222,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: &790 + sponsorship: &793 type: object properties: created_at: @@ -223282,12 +223528,12 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -223375,12 +223621,12 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -223457,17 +223703,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &791 + effective_date: &794 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: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -223541,7 +223787,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &792 + changes: &795 type: object properties: tier: @@ -223585,13 +223831,13 @@ x-webhooks: - from required: - tier - effective_date: *791 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + effective_date: *794 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -223668,13 +223914,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *792 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + changes: *795 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -223748,10 +223994,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -223834,10 +224080,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224257,15 +224503,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *725 + enterprise: *728 id: description: The unique identifier of the status. type: integer - installation: *726 + installation: *729 name: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 sha: description: The Commit SHA. @@ -224374,15 +224620,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - parent_issue_repo: *71 + parent_issue: *79 + parent_issue_repo: *73 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - installation: *726 - organization: *727 - repository: *728 + sub_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -224466,15 +224712,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - parent_issue_repo: *71 + parent_issue: *79 + parent_issue_repo: *73 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - installation: *726 - organization: *727 - repository: *728 + sub_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -224558,15 +224804,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - sub_issue_repo: *71 + sub_issue: *79 + sub_issue_repo: *73 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - installation: *726 - organization: *727 - repository: *728 + parent_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -224650,15 +224896,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - sub_issue_repo: *71 + sub_issue: *79 + sub_issue_repo: *73 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - installation: *726 - organization: *727 - repository: *728 + parent_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -224735,12 +224981,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - team: &793 + team: &796 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -224963,9 +225209,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -225423,7 +225669,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -225499,9 +225745,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -225959,7 +226205,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -226036,9 +226282,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -226496,7 +226742,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -226640,9 +226886,9 @@ x-webhooks: - from required: - permissions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -227100,7 +227346,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - changes @@ -227178,9 +227424,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -227638,7 +227884,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -227714,10 +227960,10 @@ x-webhooks: type: string enum: - started - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -227790,16 +228036,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *725 + enterprise: *728 inputs: type: object nullable: true additionalProperties: true - installation: *726 - organization: *727 + installation: *729 + organization: *730 ref: type: string - repository: *728 + repository: *731 sender: *4 workflow: type: string @@ -227881,10 +228127,10 @@ x-webhooks: type: string enum: - completed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: allOf: @@ -228121,7 +228367,7 @@ x-webhooks: type: string required: - conclusion - deployment: *493 + deployment: *496 required: - action - repository @@ -228200,10 +228446,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: allOf: @@ -228463,7 +228709,7 @@ x-webhooks: required: - status - steps - deployment: *493 + deployment: *496 required: - action - repository @@ -228542,10 +228788,10 @@ x-webhooks: type: string enum: - queued - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: type: object @@ -228680,7 +228926,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *493 + deployment: *496 required: - action - repository @@ -228759,10 +229005,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: type: object @@ -228898,7 +229144,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *493 + deployment: *496 required: - action - repository @@ -228978,12 +229224,12 @@ x-webhooks: type: string enum: - completed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object @@ -229982,12 +230228,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object @@ -230971,12 +231217,12 @@ x-webhooks: type: string enum: - requested - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index 1da9f1147f..6b9e9e7153 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -17417,6 +17417,345 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -78186,6 +78525,340 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index 497eb1285f..e50040a324 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -462,7 +462,7 @@ paths: The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs. schema: type: string - - &45 + - &47 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 results before this cursor. For @@ -471,7 +471,7 @@ paths: required: false schema: type: string - - &46 + - &48 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 results after this cursor. For @@ -480,7 +480,7 @@ paths: required: false schema: type: string - - &53 + - &55 name: direction description: The direction to sort the results by. in: query @@ -701,7 +701,7 @@ paths: required: - vector_string - score - cvss_severities: &55 + cvss_severities: &57 type: object nullable: true properties: @@ -741,7 +741,7 @@ paths: required: - vector_string - score - epss: &56 + epss: &58 type: object nullable: true readOnly: true @@ -879,7 +879,7 @@ paths: - subscriptions_url - type - url - type: &322 + type: &325 type: string description: The type of credit the user is receiving. enum: @@ -1039,7 +1039,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &123 + schema: &125 title: Validation Error Simple description: Validation Error Simple type: object @@ -1072,7 +1072,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &651 + - &654 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1190,7 +1190,7 @@ paths: GitHub. type: object nullable: true - properties: &72 + properties: &74 id: description: Unique identifier of the GitHub app example: 37 @@ -1323,7 +1323,7 @@ paths: about itself. example: 5 type: integer - required: &73 + required: &75 - id - node_id - owner @@ -1628,7 +1628,7 @@ paths: schema: type: integer default: 30 - - &208 + - &211 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 @@ -1644,7 +1644,7 @@ paths: application/json: schema: type: array - items: &209 + items: &212 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1724,7 +1724,7 @@ paths: - installation_id - repository_id examples: - default: &210 + default: &213 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1783,7 +1783,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &122 + schema: &124 title: Validation Error description: Validation Error type: object @@ -1852,7 +1852,7 @@ paths: description: Response content: application/json: - schema: &211 + schema: &214 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1966,7 +1966,7 @@ paths: - request - response examples: - default: &212 + default: &215 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2167,7 +2167,7 @@ paths: parameters: - *17 - *19 - - &84 + - &86 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2742,7 +2742,7 @@ paths: suspended_at: suspended_by: headers: - Link: &59 + Link: &61 example: ; rel="next", ; rel="last" schema: @@ -2939,11 +2939,11 @@ paths: - selected repositories: type: array - items: &71 + items: &73 title: Repository description: A repository on GitHub. type: object - properties: &286 + properties: &289 id: description: Unique identifier of the repository example: 42 @@ -2963,7 +2963,7 @@ paths: title: License Simple description: License Simple type: object - properties: &80 + properties: &82 key: type: string example: mit @@ -2985,7 +2985,7 @@ paths: html_url: type: string format: uri - required: &81 + required: &83 - key - name - url @@ -3399,7 +3399,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &287 + required: &290 - archive_url - assignees_url - blobs_url @@ -3473,7 +3473,7 @@ paths: - watchers_count - created_at - updated_at - x-github-breaking-changes: &288 + x-github-breaking-changes: &291 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -5275,7 +5275,7 @@ paths: responses: '202': *39 '422': *7 - '500': &113 + '500': &115 description: Internal Error content: application/json: @@ -7348,6 +7348,147 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - *40 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &45 + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included + in the OIDC token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization + or enterprise level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: &137 + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC + token + required: + - custom_property_name + examples: + default: &46 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *45 + examples: + default: *46 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *40 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7373,8 +7514,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -7382,7 +7523,7 @@ paths: application/json: schema: type: array - items: &47 + items: &49 type: object description: A code security configuration properties: @@ -7772,7 +7913,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &51 + code_scanning_options: &53 type: object description: Security Configuration feature options for code scanning nullable: true @@ -7789,7 +7930,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &50 + code_scanning_default_setup_options: &52 type: object description: Feature options for code scanning default setup nullable: true @@ -7914,9 +8055,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *47 + schema: *49 examples: - default: &48 + default: &50 value: id: 1325 target_type: enterprise @@ -7974,7 +8115,7 @@ paths: description: Response content: application/json: - schema: &182 + schema: &185 type: array description: A list of default code security configurations items: @@ -7988,9 +8129,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *47 + configuration: *49 examples: - default: &183 + default: &186 value: - default_for_new_repos: public configuration: @@ -8079,7 +8220,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *40 - - &49 + - &51 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -8091,9 +8232,9 @@ paths: description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *48 + default: *50 '304': *37 '403': *29 '404': *6 @@ -8118,7 +8259,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8197,8 +8338,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *50 - code_scanning_options: *51 + code_scanning_default_setup_options: *52 + code_scanning_options: *53 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -8294,13 +8435,13 @@ paths: description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *48 + default: *50 '304': *37 '403': *29 '404': *6 - '409': &52 + '409': &54 description: Conflict content: application/json: @@ -8328,14 +8469,14 @@ paths: url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *40 - - *49 + - *51 responses: - '204': &184 + '204': &187 description: A header with no content is returned. '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -8360,7 +8501,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8387,7 +8528,7 @@ paths: '202': *39 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -8412,7 +8553,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8452,12 +8593,12 @@ paths: - none - private_and_internal - public - configuration: *47 + configuration: *49 examples: default: value: default_for_new_repos: all - configuration: &181 + configuration: &184 value: id: 1325 target_type: organization @@ -8514,7 +8655,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *40 - - *49 + - *51 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -8523,8 +8664,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -8542,7 +8683,7 @@ paths: application/json: schema: type: array - items: &185 + items: &188 type: object description: Repositories associated with a code security configuration and attachment status @@ -8560,11 +8701,11 @@ paths: - failed - updating - removed_by_enterprise - repository: &58 + repository: &60 title: Simple Repository description: A GitHub repository. type: object - properties: &111 + properties: &113 id: type: integer format: int64 @@ -8791,7 +8932,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &112 + required: &114 - archive_url - assignees_url - blobs_url @@ -8843,7 +8984,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &186 + repository: &189 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8937,7 +9078,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &191 + - &194 name: state in: query description: |- @@ -8946,7 +9087,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &192 + - &195 name: severity in: query description: |- @@ -8955,7 +9096,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &193 + - &196 name: ecosystem in: query description: |- @@ -8964,14 +9105,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &194 + - &197 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &195 + - &198 name: epss_percentage in: query description: |- @@ -8983,7 +9124,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 - - &485 + - &488 name: has in: query description: |- @@ -8997,7 +9138,7 @@ paths: type: string enum: - patch - - &196 + - &199 name: assignee in: query description: |- @@ -9006,7 +9147,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &197 + - &200 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9016,7 +9157,7 @@ paths: enum: - development - runtime - - &198 + - &201 name: sort in: query description: |- @@ -9031,9 +9172,9 @@ paths: - updated - epss_percentage default: created - - *53 - - *45 - - *46 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -9042,11 +9183,11 @@ paths: application/json: schema: type: array - items: &199 + items: &202 type: object description: A Dependabot alert. properties: - number: &171 + number: &174 type: integer description: The security alert number. readOnly: true @@ -9064,7 +9205,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &54 + package: &56 type: object description: Details for the vulnerable package. readOnly: true @@ -9108,7 +9249,7 @@ paths: - unknown - direct - transitive - security_advisory: &486 + security_advisory: &489 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9138,13 +9279,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &57 + items: &59 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *54 + package: *56 severity: type: string description: The severity of the vulnerability. @@ -9210,8 +9351,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *55 - epss: *56 + cvss_severities: *57 + epss: *58 cwes: type: array description: Details for the advisory pertaining to Common @@ -9329,30 +9470,30 @@ paths: - updated_at - withdrawn_at version: '2026-03-10' - security_vulnerability: *57 - url: &174 + security_vulnerability: *59 + url: &177 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &175 + html_url: &178 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &172 + created_at: &175 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &173 + updated_at: &176 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &177 + dismissed_at: &180 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9382,21 +9523,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &176 + fixed_at: &179 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - auto_dismissed_at: &487 + auto_dismissed_at: &490 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &488 + dismissal_request: &491 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -9439,7 +9580,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *58 + repository: *60 required: - number - state @@ -9458,7 +9599,7 @@ paths: - repository additionalProperties: false examples: - default: &200 + default: &203 value: - number: 2 state: dismissed @@ -9827,7 +9968,7 @@ paths: application/json: schema: type: array - items: &60 + items: &62 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -9898,7 +10039,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -9971,9 +10112,9 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: &68 + default: &70 value: id: 1 name: Justice League @@ -10002,7 +10143,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *40 - - &61 + - &63 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -10021,7 +10162,7 @@ paths: type: array items: *4 examples: - default: &62 + default: &64 value: - login: octocat id: 1 @@ -10042,7 +10183,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10060,7 +10201,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10091,7 +10232,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10109,7 +10250,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10140,7 +10281,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10158,8 +10299,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *40 - - *61 - - &63 + - *63 + - &65 name: username description: The handle for the GitHub user account. in: path @@ -10173,7 +10314,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &64 + exampleKey1: &66 value: login: octocat id: 1 @@ -10209,8 +10350,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *40 - - *61 - *63 + - *65 responses: '201': description: Successfully added team member @@ -10218,7 +10359,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *64 + exampleKey1: *66 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10236,8 +10377,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *40 - - *61 - *63 + - *65 responses: '204': description: Response @@ -10259,7 +10400,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *40 - - *61 + - *63 - *17 - *19 responses: @@ -10269,11 +10410,11 @@ paths: application/json: schema: type: array - items: &65 + items: &67 title: Organization Simple description: A GitHub organization. type: object - properties: &188 + properties: &191 login: type: string example: github @@ -10314,7 +10455,7 @@ paths: type: string example: A great organization nullable: true - required: &189 + required: &192 - login - url - id @@ -10328,7 +10469,7 @@ paths: - avatar_url - description examples: - default: &66 + default: &68 value: login: github id: 1 @@ -10359,7 +10500,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10387,9 +10528,9 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: &108 + default: &110 value: - login: github id: 1 @@ -10420,7 +10561,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10461,8 +10602,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *40 - - *61 - - &67 + - *63 + - &69 name: org description: The organization name. The name is not case sensitive. in: path @@ -10474,9 +10615,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 '404': description: The team is not assigned to the organization x-github: @@ -10495,16 +10636,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *40 - - *61 - - *67 + - *63 + - *69 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10521,8 +10662,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *40 - - *61 - - *67 + - *63 + - *69 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -10546,7 +10687,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *40 - - &69 + - &71 name: team_slug description: The slug of the team name. in: path @@ -10558,11 +10699,11 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *68 + default: *70 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -10580,7 +10721,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *40 - - *69 + - *71 requestBody: required: true content: @@ -10635,11 +10776,11 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *68 + default: *70 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -10660,7 +10801,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *40 - - *69 + - *71 responses: '204': description: Response @@ -10698,7 +10839,7 @@ paths: application/json: schema: type: array - items: &103 + items: &105 title: Event description: Event type: object @@ -10708,7 +10849,7 @@ paths: type: type: string nullable: true - actor: &70 + actor: &72 title: Actor description: Actor type: object @@ -10748,7 +10889,7 @@ paths: - id - name - url - org: *70 + org: *72 payload: oneOf: - title: CreateEvent @@ -10794,7 +10935,7 @@ paths: properties: action: type: string - discussion: &746 + discussion: &749 title: Discussion description: A Discussion in a repository. type: object @@ -11081,7 +11222,7 @@ paths: - id labels: type: array - items: &76 + items: &78 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -11156,12 +11297,12 @@ paths: properties: action: type: string - issue: &77 + issue: &79 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &539 + properties: &542 id: type: integer format: int64 @@ -11274,7 +11415,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &270 + properties: &273 url: type: string format: uri @@ -11344,7 +11485,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &271 + required: &274 - closed_issues - creator - description @@ -11423,7 +11564,7 @@ paths: timeline_url: type: string format: uri - type: &233 + type: &236 title: Issue Type description: The type of issue. type: object @@ -11473,7 +11614,7 @@ paths: - node_id - name - description - repository: *71 + repository: *73 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -11484,9 +11625,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - author_association: &74 + properties: *74 + required: *75 + author_association: &76 title: author_association type: string example: OWNER @@ -11501,7 +11642,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &75 + reactions: &77 title: Reaction Rollup type: object properties: @@ -11537,7 +11678,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &663 + sub_issues_summary: &666 title: Sub-issues Summary type: object properties: @@ -11562,7 +11703,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &78 + properties: &80 id: description: Unique identifier of the issue comment example: 42 @@ -11605,7 +11746,7 @@ paths: issue_url: type: string format: uri - author_association: *74 + author_association: *76 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -11616,15 +11757,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - reactions: *75 + properties: *74 + required: *75 + reactions: *77 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &562 + properties: &565 pinned_at: type: string format: date-time @@ -11636,11 +11777,11 @@ paths: properties: *20 required: *21 nullable: true - required: &563 + required: &566 - pinned_at - pinned_by nullable: true - required: &79 + required: &81 - id - node_id - html_url @@ -11650,7 +11791,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &664 + issue_dependencies_summary: &667 title: Issue Dependencies Summary type: object properties: @@ -11669,7 +11810,7 @@ paths: - total_blocking issue_field_values: type: array - items: &547 + items: &550 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11730,7 +11871,7 @@ paths: - node_id - data_type - value - required: &540 + required: &543 - assignee - closed_at - comments @@ -11751,7 +11892,7 @@ paths: - user - created_at - updated_at - x-github-breaking-changes: &541 + x-github-breaking-changes: &544 - changeset: deprecate_beta_media_type patch: properties: @@ -11798,10 +11939,10 @@ paths: assignees: type: array items: *4 - label: *76 + label: *78 labels: type: array - items: *76 + items: *78 required: - action - issue @@ -11810,14 +11951,14 @@ paths: properties: action: type: string - issue: *77 - comment: &535 + issue: *79 + comment: &538 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 required: - action - issue @@ -11992,8 +12133,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true allow_forking: type: boolean @@ -12082,7 +12223,7 @@ paths: type: string number: type: integer - pull_request: &82 + pull_request: &84 title: Pull Request Minimal type: object properties: @@ -12153,10 +12294,10 @@ paths: assignees: type: array items: *4 - label: *76 + label: *78 labels: type: array - items: *76 + items: *78 required: - action - number @@ -12166,7 +12307,7 @@ paths: properties: action: type: string - pull_request: *82 + pull_request: *84 comment: type: object properties: @@ -12417,7 +12558,7 @@ paths: - pull_request updated_at: type: string - pull_request: *82 + pull_request: *84 required: - action - review @@ -12466,7 +12607,7 @@ paths: updated_at: type: string format: date-time - reactions: *75 + reactions: *77 required: - action - comment @@ -12477,7 +12618,7 @@ paths: type: string release: allOf: - - &596 + - &599 title: Release description: A release. type: object @@ -12548,7 +12689,7 @@ paths: author: *4 assets: type: array - items: &597 + items: &600 title: Release Asset description: Data related to a release. type: object @@ -12623,7 +12764,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *75 + reactions: *77 required: - assets_url - upload_url @@ -12715,7 +12856,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': &114 + '503': &116 description: Service unavailable content: application/json: @@ -12808,7 +12949,7 @@ paths: _links: type: object properties: - timeline: &83 + timeline: &85 title: Link With Type description: Hypermedia Link with Type type: object @@ -12820,17 +12961,17 @@ paths: required: - href - type - user: *83 - security_advisories: *83 - current_user: *83 - current_user_public: *83 - current_user_actor: *83 - current_user_organization: *83 + user: *85 + security_advisories: *85 + current_user: *85 + current_user_public: *85 + current_user_actor: *85 + current_user_organization: *85 current_user_organizations: type: array - items: *83 - repository_discussions: *83 - repository_discussions_category: *83 + items: *85 + repository_discussions: *85 + repository_discussions_category: *85 required: - timeline - user @@ -12892,7 +13033,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *84 + - *86 - *17 - *19 responses: @@ -12902,7 +13043,7 @@ paths: application/json: schema: type: array - items: &85 + items: &87 title: Base Gist description: Base Gist type: object @@ -13030,7 +13171,7 @@ paths: path: "/properties/history" version: '2026-03-10' examples: - default: &86 + default: &88 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -13075,7 +13216,7 @@ paths: site_admin: false truncated: false headers: - Link: *59 + Link: *61 '304': *37 '403': *29 x-github: @@ -13151,7 +13292,7 @@ paths: description: Response content: application/json: - schema: &87 + schema: &89 title: Gist Simple description: Gist Simple type: object @@ -13168,7 +13309,7 @@ paths: url: type: string format: uri - user: &670 + user: &673 title: Public User description: Public User type: object @@ -13538,7 +13679,7 @@ paths: path: "/properties/history" version: '2026-03-10' examples: - default: &88 + default: &90 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -13642,7 +13783,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *84 + - *86 - *17 - *19 responses: @@ -13652,11 +13793,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '403': *29 @@ -13676,7 +13817,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *84 + - *86 - *17 - *19 responses: @@ -13686,11 +13827,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '401': *25 '304': *37 '403': *29 @@ -13716,7 +13857,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &89 + - &91 name: gist_id description: The unique identifier of the gist. in: path @@ -13728,10 +13869,10 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - default: *88 - '403': &92 + default: *90 + '403': &94 description: Forbidden Gist content: application/json: @@ -13779,7 +13920,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *89 + - *91 requestBody: required: true content: @@ -13839,9 +13980,9 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - updateGist: *88 + updateGist: *90 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -13999,7 +14140,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14028,7 +14169,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *89 + - *91 - *17 - *19 responses: @@ -14038,7 +14179,7 @@ paths: application/json: schema: type: array - items: &90 + items: &92 title: Gist Comment description: A comment made to a gist. type: object @@ -14073,7 +14214,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *74 + author_association: *76 required: - url - id @@ -14113,7 +14254,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -14138,7 +14279,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *89 + - *91 requestBody: required: true content: @@ -14163,9 +14304,9 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: &91 + default: &93 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -14223,8 +14364,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *89 - - &93 + - *91 + - &95 name: comment_id description: The unique identifier of the comment. in: path @@ -14237,12 +14378,12 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '304': *37 '404': *6 - '403': *92 + '403': *94 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14264,8 +14405,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *89 - - *93 + - *91 + - *95 requestBody: required: true content: @@ -14290,9 +14431,9 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '404': *6 x-github: githubCloudOnly: false @@ -14309,8 +14450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *89 - - *93 + - *91 + - *95 responses: '204': description: Response @@ -14333,7 +14474,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *89 + - *91 - *17 - *19 responses: @@ -14434,7 +14575,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *89 + - *91 - *17 - *19 responses: @@ -14444,7 +14585,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -14490,7 +14631,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 '304': *37 '403': *29 @@ -14509,13 +14650,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *89 + - *91 responses: '201': description: Response content: application/json: - schema: *85 + schema: *87 examples: default: value: @@ -14586,7 +14727,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *89 + - *91 responses: '204': description: Response if gist is starred @@ -14616,7 +14757,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14638,7 +14779,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14667,7 +14808,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *89 + - *91 - name: sha in: path required: true @@ -14678,9 +14819,9 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - default: *88 + default: *90 '422': *15 '404': *6 '403': *29 @@ -14841,7 +14982,7 @@ paths: type: array items: allOf: - - *71 + - *73 repository_selection: type: string example: selected @@ -14964,7 +15105,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '403': *29 '304': *37 '401': *25 @@ -15048,7 +15189,7 @@ paths: - closed - all default: open - - &236 + - &239 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15066,8 +15207,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - name: collab in: query required: false @@ -15097,9 +15238,9 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: &237 + default: &240 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15344,7 +15485,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '404': *6 @@ -15383,8 +15524,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 examples: default: value: @@ -15669,7 +15810,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &94 + X-CommonMarker-Version: &96 example: 0.17.4 schema: type: string @@ -15724,7 +15865,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *94 + X-CommonMarker-Version: *96 content: text/html: schema: @@ -15753,7 +15894,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &97 + - &99 name: account_id description: account_id parameter in: path @@ -15765,7 +15906,7 @@ paths: description: Response content: application/json: - schema: &96 + schema: &98 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -15795,7 +15936,7 @@ paths: nullable: true id: type: integer - plan: &95 + plan: &97 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -15884,7 +16025,7 @@ paths: nullable: true updated_at: type: string - plan: *95 + plan: *97 required: - url - id @@ -15892,7 +16033,7 @@ paths: - login - marketplace_purchase examples: - default: &98 + default: &100 value: url: https://api.github.com/orgs/github type: Organization @@ -15977,9 +16118,9 @@ paths: application/json: schema: type: array - items: *95 + items: *97 examples: - default: &99 + default: &101 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -15997,7 +16138,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '404': *6 '401': *25 x-github: @@ -16019,14 +16160,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &100 + - &102 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &101 + - &103 name: sort description: The property to sort the results by. in: query @@ -16056,9 +16197,9 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: - default: &102 + default: &104 value: - url: https://api.github.com/orgs/github type: Organization @@ -16109,7 +16250,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '404': *6 '422': *15 '401': *25 @@ -16132,15 +16273,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *97 + - *99 responses: '200': description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *98 + default: *100 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -16172,11 +16313,11 @@ paths: application/json: schema: type: array - items: *95 + items: *97 examples: - default: *99 + default: *101 headers: - Link: *59 + Link: *61 '401': *25 x-github: githubCloudOnly: false @@ -16197,8 +16338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *100 - - *101 + - *102 + - *103 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -16218,11 +16359,11 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: - default: *102 + default: *104 headers: - Link: *59 + Link: *61 '401': *25 x-github: githubCloudOnly: false @@ -16484,14 +16625,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &334 + - &337 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &335 + - &338 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -16508,7 +16649,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -16553,7 +16694,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &338 + '301': &341 description: Moved permanently content: application/json: @@ -16575,7 +16716,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &572 + - &575 name: all description: If `true`, show notifications marked as read. in: query @@ -16583,7 +16724,7 @@ paths: schema: type: boolean default: false - - &573 + - &576 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16592,8 +16733,8 @@ paths: schema: type: boolean default: false - - *84 - - &574 + - *86 + - &577 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: @@ -16618,18 +16759,18 @@ paths: application/json: schema: type: array - items: &104 + items: &106 title: Thread description: Thread type: object properties: id: type: string - repository: &153 + repository: &156 title: Minimal Repository description: Minimal Repository type: object - properties: &202 + properties: &205 id: type: integer format: int64 @@ -16917,7 +17058,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &289 + security_and_analysis: &292 nullable: true type: object properties: @@ -17030,7 +17171,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &203 + required: &206 - archive_url - assignees_url - blobs_url @@ -17077,7 +17218,7 @@ paths: - teams_url - trees_url - url - x-github-breaking-changes: &204 + x-github-breaking-changes: &207 - changeset: remove_has_downloads patch: properties: @@ -17124,7 +17265,7 @@ paths: - url - subscription_url examples: - default: &575 + default: &578 value: - id: '1' repository: @@ -17206,7 +17347,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -17290,7 +17431,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &105 + - &107 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -17304,7 +17445,7 @@ paths: description: Response content: application/json: - schema: *104 + schema: *106 examples: default: value: @@ -17406,7 +17547,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *105 + - *107 responses: '205': description: Reset Content @@ -17428,7 +17569,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *105 + - *107 responses: '204': description: No content @@ -17451,13 +17592,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *105 + - *107 responses: '200': description: Response content: application/json: - schema: &106 + schema: &108 title: Thread Subscription description: Thread Subscription type: object @@ -17494,7 +17635,7 @@ paths: - url - subscribed examples: - default: &107 + default: &109 value: subscribed: true ignored: false @@ -17525,7 +17666,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *105 + - *107 requestBody: required: false content: @@ -17546,9 +17687,9 @@ paths: description: Response content: application/json: - schema: *106 + schema: *108 examples: - default: *107 + default: *109 '304': *37 '403': *29 '401': *25 @@ -17571,7 +17712,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *105 + - *107 responses: '204': description: Response @@ -17666,9 +17807,9 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: Link: example: ; rel="next" @@ -17695,13 +17836,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &109 + schema: &111 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -17734,12 +17875,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *109 + schema: *111 examples: selected_actions: *42 responses: @@ -17768,13 +17909,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &110 + schema: &112 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -17807,12 +17948,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *110 + schema: *112 examples: selected_actions: *44 responses: @@ -17841,7 +17982,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-organization parameters: - - *67 + - *69 - name: page in: query description: The page number of results to fetch. @@ -17885,8 +18026,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *111 - required: *112 + properties: *113 + required: *114 nullable: true additionalProperties: false examples: @@ -17992,7 +18133,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -18058,7 +18199,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *67 + - *69 requestBody: required: true content: @@ -18107,7 +18248,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *67 + - *69 - name: page description: The page number of the results to fetch. in: query @@ -18258,7 +18399,7 @@ paths: total_count: 3 '404': *6 '403': *29 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18279,8 +18420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *67 - - &115 + - *69 + - &117 name: budget_id description: The ID corresponding to the budget. in: path @@ -18376,8 +18517,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18397,8 +18538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *67 - - *115 + - *69 + - *117 requestBody: required: true content: @@ -18589,8 +18730,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *67 - - *115 + - *69 + - *117 responses: '200': description: Response when deleting a budget @@ -18616,8 +18757,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18637,8 +18778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *67 - - &116 + - *69 + - &118 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -18647,7 +18788,7 @@ paths: required: false schema: type: integer - - &118 + - &120 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current @@ -18656,7 +18797,7 @@ paths: required: false schema: type: integer - - &117 + - &119 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -18671,14 +18812,14 @@ paths: required: false schema: type: string - - &721 + - &724 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &119 + - &121 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18794,8 +18935,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18815,9 +18956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *67 - - *116 - - &722 + - *69 + - *118 + - &725 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 @@ -18826,7 +18967,7 @@ paths: required: false schema: type: integer - - *117 + - *119 responses: '200': description: Billing usage report response for an organization @@ -18901,8 +19042,8 @@ paths: repositoryName: github/example '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18925,19 +19066,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *67 - - *116 + - *69 - *118 - - *117 - - &723 + - *120 + - *119 + - &726 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *119 - - &724 + - *121 + - &727 name: sku description: The SKU to query for usage. in: query @@ -19047,8 +19188,8 @@ paths: netAmount: 8.0 '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19074,13 +19215,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &120 + schema: &122 title: Organization Full description: Organization Full type: object @@ -19405,7 +19546,7 @@ paths: path: "/properties/secret_scanning_push_protection_custom_link_enabled" version: '2026-03-10' examples: - default-response: &121 + default-response: &123 value: login: github id: 1 @@ -19511,7 +19652,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *67 + - *69 requestBody: required: false content: @@ -19727,18 +19868,18 @@ paths: description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '422': description: Validation failed content: application/json: schema: oneOf: - - *122 - - *123 - '409': *52 + - *124 + - *125 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19771,7 +19912,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *67 + - *69 responses: '202': *39 '404': *6 @@ -19802,7 +19943,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -19828,7 +19969,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19849,7 +19990,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -19867,7 +20008,7 @@ paths: type: integer repository_cache_usages: type: array - items: &345 + items: &348 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19902,7 +20043,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19922,7 +20063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -19940,7 +20081,7 @@ paths: type: integer runners: type: array - items: &124 + items: &126 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -19994,7 +20135,7 @@ paths: - display_name - source nullable: true - machine_size_details: &132 + machine_size_details: &134 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -20090,7 +20231,7 @@ paths: - public_ip_enabled - platform examples: - default: &152 + default: &155 value: total_count: 2 runners: @@ -20132,7 +20273,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20150,7 +20291,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -20227,9 +20368,9 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: &133 + default: &135 value: id: 5 name: My hosted ubuntu runner @@ -20270,7 +20411,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20286,7 +20427,7 @@ paths: type: integer images: type: array - items: &125 + items: &127 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -20337,7 +20478,7 @@ paths: - latest_version - state examples: - default: &127 + default: &129 value: total_count: 2 image_versions: @@ -20368,8 +20509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - - *67 - - &126 + - *69 + - &128 name: image_definition_id description: Image definition ID of custom image in: path @@ -20381,7 +20522,7 @@ paths: description: Response content: application/json: - schema: *125 + schema: *127 examples: default: value: @@ -20411,8 +20552,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *67 - - *126 + - *69 + - *128 responses: '204': description: Response @@ -20435,8 +20576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - - *126 - - *67 + - *128 + - *69 responses: '200': description: Response @@ -20452,7 +20593,7 @@ paths: type: integer image_versions: type: array - items: &128 + items: &130 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20485,7 +20626,7 @@ paths: - created_on - state_details examples: - default: *127 + default: *129 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20505,9 +20646,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - - *67 - - *126 - - &129 + - *69 + - *128 + - &131 name: version description: Version of a custom image in: path @@ -20520,7 +20661,7 @@ paths: description: Response content: application/json: - schema: *128 + schema: *130 examples: default: value: @@ -20546,9 +20687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - - *67 - - *126 - - *129 + - *69 + - *128 + - *131 responses: '204': description: Response @@ -20569,7 +20710,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20585,7 +20726,7 @@ paths: type: integer images: type: array - items: &130 + items: &132 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20621,7 +20762,7 @@ paths: - display_name - source examples: - default: &131 + default: &133 value: id: ubuntu-20.04 platform: linux-x64 @@ -20645,7 +20786,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20661,9 +20802,9 @@ paths: type: integer images: type: array - items: *130 + items: *132 examples: - default: *131 + default: *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20680,7 +20821,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20733,7 +20874,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20749,7 +20890,7 @@ paths: type: integer machine_specs: type: array - items: *132 + items: *134 examples: default: value: @@ -20774,7 +20915,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20818,8 +20959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *67 - - &134 + - *69 + - &136 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -20831,11 +20972,11 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20853,8 +20994,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *67 - - *134 + - *69 + - *136 requestBody: required: true content: @@ -20906,9 +21047,9 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -20924,21 +21065,126 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *67 - - *134 + - *69 + - *136 responses: '202': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - *69 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *45 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *69 + requestBody: + required: true + content: + application/json: + schema: *137 + examples: + default: *46 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *45 + examples: + default: *46 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *69 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -20953,13 +21199,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *67 + - *69 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &135 + schema: &138 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -20973,7 +21219,7 @@ paths: required: - include_claim_keys examples: - default: &136 + default: &139 value: include_claim_keys: - repo @@ -20995,20 +21241,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *135 + schema: *138 examples: - default: *136 + default: *139 responses: '201': description: Empty response content: application/json: - schema: &162 + schema: &165 title: Empty Object description: An object without any properties. type: object @@ -21038,7 +21284,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -21047,7 +21293,7 @@ paths: schema: type: object properties: - enabled_repositories: &137 + enabled_repositories: &140 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -21060,7 +21306,7 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: &138 + allowed_actions: &141 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -21068,12 +21314,12 @@ paths: - all - local_only - selected - selected_actions_url: &351 + selected_actions_url: &354 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` is set to `selected`. - sha_pinning_required: &139 + sha_pinning_required: &142 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -21104,7 +21350,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21115,9 +21361,9 @@ paths: schema: type: object properties: - enabled_repositories: *137 - allowed_actions: *138 - sha_pinning_required: *139 + enabled_repositories: *140 + allowed_actions: *141 + sha_pinning_required: *142 required: - enabled_repositories examples: @@ -21145,13 +21391,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &355 + schema: &358 type: object properties: days: @@ -21188,12 +21434,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &356 + schema: &359 type: object properties: days: @@ -21210,7 +21456,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21230,13 +21476,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &140 + schema: &143 type: object properties: approval_policy: @@ -21250,7 +21496,7 @@ paths: required: - approval_policy examples: - default: &357 + default: &360 value: approval_policy: first_time_contributors '404': *6 @@ -21271,7 +21517,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21281,7 +21527,7 @@ paths: required: true content: application/json: - schema: *140 + schema: *143 examples: default: summary: Set approval policy to first time contributors @@ -21303,13 +21549,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &358 + schema: &361 type: object required: - run_workflows_from_fork_pull_requests @@ -21335,7 +21581,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &141 + default: &144 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -21358,12 +21604,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &359 + schema: &362 type: object required: - run_workflows_from_fork_pull_requests @@ -21386,7 +21632,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *141 + default: *144 responses: '204': description: Empty response for successful settings update @@ -21416,7 +21662,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -21434,9 +21680,9 @@ paths: type: number repositories: type: array - items: *71 + items: *73 examples: - default: &145 + default: &148 value: total_count: 1 repositories: @@ -21576,7 +21822,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21620,8 +21866,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *67 - - &142 + - *69 + - &145 name: repository_id description: The unique identifier of the repository. in: path @@ -21649,8 +21895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -21673,13 +21919,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &143 + schema: &146 type: object properties: github_owned_allowed: @@ -21701,7 +21947,7 @@ paths: items: type: string examples: - default: &144 + default: &147 value: github_owned_allowed: true verified_allowed: false @@ -21726,7 +21972,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21734,9 +21980,9 @@ paths: required: false content: application/json: - schema: *143 + schema: *146 examples: - selected_actions: *144 + selected_actions: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21756,7 +22002,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -21804,7 +22050,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21831,7 +22077,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21851,7 +22097,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#list-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -21866,9 +22112,9 @@ paths: type: integer repositories: type: array - items: *71 + items: *73 examples: - default: *145 + default: *148 '403': *29 '404': *6 x-github: @@ -21888,7 +22134,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21936,14 +22182,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21963,14 +22209,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21992,23 +22238,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &360 + schema: &363 type: object properties: - default_workflow_permissions: &146 + default_workflow_permissions: &149 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &147 + can_approve_pull_request_reviews: &150 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -22016,7 +22262,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &148 + default: &151 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -22041,7 +22287,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Success response @@ -22049,13 +22295,13 @@ paths: required: false content: application/json: - schema: &361 + schema: &364 type: object properties: - default_workflow_permissions: *146 - can_approve_pull_request_reviews: *147 + default_workflow_permissions: *149 + can_approve_pull_request_reviews: *150 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22075,7 +22321,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *67 + - *69 - *17 - *19 - name: visible_to_repository @@ -22100,7 +22346,7 @@ paths: type: number runner_groups: type: array - items: &149 + items: &152 type: object properties: id: @@ -22216,7 +22462,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -22288,9 +22534,9 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: &151 + default: &154 value: id: 2 name: octo-runner-group @@ -22325,8 +22571,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *67 - - &150 + - *69 + - &153 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -22338,7 +22584,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: default: value: @@ -22374,8 +22620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22429,9 +22675,9 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *151 + default: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22450,8 +22696,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *67 - - *150 + - *69 + - *153 responses: '204': description: Response @@ -22474,8 +22720,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *17 - *19 responses: @@ -22493,11 +22739,11 @@ paths: type: number runners: type: array - items: *124 + items: *126 examples: - default: *152 + default: *155 headers: - Link: *59 + Link: *61 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22517,8 +22763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *19 - *17 responses: @@ -22536,9 +22782,9 @@ paths: type: number repositories: type: array - items: *153 + items: *156 examples: - default: &673 + default: &676 value: total_count: 1 repositories: @@ -22790,8 +23036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22835,9 +23081,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 - - *142 + - *69 + - *153 + - *145 responses: '204': description: Response @@ -22859,9 +23105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 - - *142 + - *69 + - *153 + - *145 responses: '204': description: Response @@ -22884,8 +23130,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *17 - *19 responses: @@ -22903,7 +23149,7 @@ paths: type: number runners: type: array - items: &155 + items: &158 title: Self hosted runners description: A self hosted runner type: object @@ -22932,7 +23178,7 @@ paths: type: boolean labels: type: array - items: &158 + items: &161 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -22962,7 +23208,7 @@ paths: - busy - labels examples: - default: &156 + default: &159 value: total_count: 2 runners: @@ -23002,7 +23248,7 @@ paths: name: no-gpu type: custom headers: - Link: *59 + Link: *61 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -23021,8 +23267,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -23066,9 +23312,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *67 - - *150 - - &154 + - *69 + - *153 + - &157 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -23096,9 +23342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *67 - - *150 - - *154 + - *69 + - *153 + - *157 responses: '204': description: Response @@ -23128,7 +23374,7 @@ paths: in: query schema: type: string - - *67 + - *69 - *17 - *19 responses: @@ -23146,11 +23392,11 @@ paths: type: integer runners: type: array - items: *155 + items: *158 examples: - default: *156 + default: *159 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23172,7 +23418,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -23180,7 +23426,7 @@ paths: application/json: schema: type: array - items: &362 + items: &365 title: Runner Application description: Runner Application type: object @@ -23205,7 +23451,7 @@ paths: - download_url - filename examples: - default: &363 + default: &366 value: - os: osx architecture: x64 @@ -23248,7 +23494,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -23291,7 +23537,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &364 + '201': &367 description: Response content: application/json: @@ -23301,7 +23547,7 @@ paths: - runner - encoded_jit_config properties: - runner: *155 + runner: *158 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -23330,7 +23576,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23358,13 +23604,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *67 + - *69 responses: '201': description: Response content: application/json: - schema: &157 + schema: &160 title: Authentication Token description: Authentication Token type: object @@ -23386,7 +23632,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *71 + items: *73 single_file: type: string example: config.yaml @@ -23402,7 +23648,7 @@ paths: - token - expires_at examples: - default: &365 + default: &368 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -23433,15 +23679,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *67 + - *69 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: &366 + default: &369 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -23466,16 +23712,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: '200': description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: &367 + default: &370 value: id: 23 name: MBP @@ -23516,8 +23762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: '204': description: Response @@ -23543,10 +23789,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: - '200': &159 + '200': &162 description: Response content: application/json: @@ -23560,7 +23806,7 @@ paths: type: integer labels: type: array - items: *158 + items: *161 examples: default: value: @@ -23599,8 +23845,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-an-organization parameters: - - *67 - - *154 + - *69 + - *157 requestBody: required: true content: @@ -23624,7 +23870,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23648,8 +23894,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-an-organization parameters: - - *67 - - *154 + - *69 + - *157 requestBody: required: true content: @@ -23674,7 +23920,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23698,10 +23944,10 @@ 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-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: - '200': &368 + '200': &371 description: Response content: application/json: @@ -23715,7 +23961,7 @@ paths: type: integer labels: type: array - items: *158 + items: *161 examples: default: value: @@ -23756,9 +24002,9 @@ 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-an-organization parameters: - - *67 - - *154 - - &369 + - *69 + - *157 + - &372 name: name description: The name of a self-hosted runner's custom label. in: path @@ -23766,7 +24012,7 @@ paths: schema: type: string responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23791,7 +24037,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -23809,7 +24055,7 @@ paths: type: integer secrets: type: array - items: &160 + items: &163 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -23859,7 +24105,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23882,13 +24128,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &381 + schema: &384 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -23917,7 +24163,7 @@ paths: - key_id - key examples: - default: &382 + default: &385 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23942,8 +24188,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *67 - - &161 + - *69 + - &164 name: secret_name description: The name of the secret. in: path @@ -23955,7 +24201,7 @@ paths: description: Response content: application/json: - schema: *160 + schema: *163 examples: default: value: @@ -23985,8 +24231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -24043,7 +24289,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -24069,8 +24315,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -24096,8 +24342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -24115,9 +24361,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: &165 + default: &168 value: total_count: 1 repositories: @@ -24209,8 +24455,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -24262,8 +24508,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -24296,8 +24542,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -24329,8 +24575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *67 - - &350 + - *69 + - &353 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -24354,7 +24600,7 @@ paths: type: integer variables: type: array - items: &163 + items: &166 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24418,7 +24664,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24439,7 +24685,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *67 + - *69 requestBody: required: true content: @@ -24487,7 +24733,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -24512,8 +24758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *67 - - &164 + - *69 + - &167 name: name description: The name of the variable. in: path @@ -24525,7 +24771,7 @@ paths: description: Response content: application/json: - schema: *163 + schema: *166 examples: default: value: @@ -24555,8 +24801,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 requestBody: required: true content: @@ -24618,8 +24864,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 responses: '204': description: Response @@ -24645,8 +24891,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - *19 - *17 responses: @@ -24664,9 +24910,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 '409': description: Response when the visibility of the variable is not set to `selected` @@ -24692,8 +24938,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 requestBody: required: true content: @@ -24742,8 +24988,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - name: repository_id in: path required: true @@ -24777,8 +25023,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - name: repository_id in: path required: true @@ -24819,7 +25065,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *67 + - *69 requestBody: required: true content: @@ -24935,7 +25181,7 @@ paths: type: integer deployment_records: type: array - items: &166 + items: &169 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -24979,7 +25225,7 @@ paths: with the deployment record. nullable: true examples: - default: &167 + default: &170 value: total_count: 1 deployment_records: @@ -25014,7 +25260,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *67 + - *69 - name: cluster in: path description: The cluster name. @@ -25150,9 +25396,9 @@ paths: type: integer deployment_records: type: array - items: *166 + items: *169 examples: - default: *167 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25172,7 +25418,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *67 + - *69 requestBody: required: true content: @@ -25324,7 +25570,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *67 + - *69 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -25349,9 +25595,9 @@ paths: type: integer deployment_records: type: array - items: *166 + items: *169 examples: - default: *167 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25371,7 +25617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *67 + - *69 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25454,9 +25700,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 requestBody: required: true content: @@ -25480,12 +25726,12 @@ paths: required: - subject_digests examples: - default: &703 + default: &706 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &704 + withPredicateType: &707 value: subject_digests: - sha256:abc123 @@ -25543,7 +25789,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &705 + default: &708 value: attestations_subject_digests: - sha256:abc: @@ -25667,7 +25913,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *67 + - *69 requestBody: required: true content: @@ -25732,7 +25978,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *67 + - *69 - name: subject_digest description: Subject Digest in: path @@ -25765,9 +26011,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -25815,7 +26061,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *67 + - *69 - name: attestation_id description: Attestation ID in: path @@ -25851,9 +26097,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25908,7 +26154,7 @@ paths: initiator: type: string examples: - default: &395 + default: &398 value: attestations: - bundle: @@ -26029,7 +26275,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -26041,7 +26287,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26060,8 +26306,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: If the user is blocked @@ -26086,8 +26332,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -26107,8 +26353,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -26133,15 +26379,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *67 + - *69 - *19 - *17 - - *53 + - *55 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &168 + schema: &171 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -26167,7 +26413,7 @@ paths: application/json: schema: type: array - items: &169 + items: &172 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -26198,7 +26444,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &190 + items: &193 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -26273,7 +26519,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &248 + properties: &251 id: description: Unique identifier of the team type: integer @@ -26345,7 +26591,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &249 + required: &252 - id - node_id - url @@ -26388,7 +26634,7 @@ paths: type: string format: date-time nullable: true - state: *168 + state: *171 contact_link: description: The contact link of the campaign. type: string @@ -26483,9 +26729,9 @@ paths: closed_at: state: open headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26509,7 +26755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -26608,9 +26854,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: &170 + default: &173 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -26659,7 +26905,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26681,7 +26927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26693,16 +26939,16 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: *170 + default: *173 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26723,7 +26969,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26772,7 +27018,7 @@ paths: type: string format: uri nullable: true - state: *168 + state: *171 examples: default: value: @@ -26782,9 +27028,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: *170 + default: *173 '400': description: Bad Request content: @@ -26796,7 +27042,7 @@ paths: content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26817,7 +27063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26828,7 +27074,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26850,18 +27096,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *67 - - &420 + - *69 + - &423 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`, but not both. in: query required: false - schema: &178 + schema: &181 type: string description: The name of the tool used to generate the code scanning analysis. - - &421 + - &424 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 @@ -26869,22 +27115,22 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &179 + schema: &182 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *45 - - *46 + - *47 + - *48 - *19 - *17 - - *53 + - *55 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &423 + schema: &426 type: string description: State of a code scanning alert. enum: @@ -26907,7 +27153,7 @@ paths: be returned. in: query required: false - schema: &424 + schema: &427 type: string description: Severity of a code scanning alert. enum: @@ -26936,18 +27182,18 @@ paths: items: type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: &425 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: &428 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &180 + state: &183 type: string description: State of a code scanning alert. nullable: true @@ -26955,7 +27201,7 @@ paths: - open - dismissed - fixed - fixed_at: *176 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -26963,8 +27209,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: &426 + dismissed_at: *180 + dismissed_reason: &429 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -26973,13 +27219,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &427 + dismissed_comment: &430 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &428 + rule: &431 type: object properties: id: @@ -27032,42 +27278,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &429 + tool: &432 type: object properties: - name: *178 + name: *181 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *179 - most_recent_instance: &430 + guid: *182 + most_recent_instance: &433 type: object properties: - ref: &422 + ref: &425 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &440 + analysis_key: &443 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: &441 + environment: &444 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: &442 + category: &445 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *180 + state: *183 commit_sha: type: string message: @@ -27075,7 +27321,7 @@ paths: properties: text: type: string - location: &443 + location: &446 type: object description: Describe a region within a file for the alert. properties: @@ -27096,7 +27342,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: &444 + items: &447 type: string description: A classification of the file. For example to identify it as generated. @@ -27106,7 +27352,7 @@ paths: - generated - test - library - repository: *58 + repository: *60 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -27361,9 +27607,9 @@ paths: trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27385,7 +27631,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *67 + - *69 - name: target_type in: query description: The target type of the code security configuration @@ -27404,8 +27650,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -27413,7 +27659,7 @@ paths: application/json: schema: type: array - items: *47 + items: *49 examples: default: value: @@ -27496,7 +27742,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *67 + - *69 requestBody: required: true content: @@ -27583,7 +27829,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *51 + code_scanning_options: *53 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -27592,7 +27838,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *50 + code_scanning_default_setup_options: *52 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -27731,9 +27977,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *47 + schema: *49 examples: - default: *181 + default: *184 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27755,15 +28001,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *182 + schema: *185 examples: - default: *183 + default: *186 '304': *37 '403': *29 '404': *6 @@ -27789,7 +28035,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *67 + - *69 requestBody: required: true content: @@ -27815,11 +28061,11 @@ paths: - 32 - 91 responses: - '204': *184 + '204': *187 '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27841,16 +28087,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 responses: '200': description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *181 + default: *184 '304': *37 '403': *29 '404': *6 @@ -27874,8 +28120,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27962,8 +28208,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *50 - code_scanning_options: *51 + code_scanning_default_setup_options: *52 + code_scanning_options: *53 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -28088,7 +28334,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *47 + schema: *49 examples: default: value: @@ -28147,14 +28393,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 responses: - '204': *184 + '204': *187 '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28178,8 +28424,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -28242,8 +28488,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -28283,12 +28529,12 @@ paths: - none - private_and_internal - public - configuration: *47 + configuration: *49 examples: default: value: default_for_new_repos: all - configuration: *181 + configuration: *184 '403': *29 '404': *6 x-github: @@ -28312,8 +28558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -28322,8 +28568,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -28341,13 +28587,13 @@ paths: application/json: schema: type: array - items: *185 + items: *188 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *186 + repository: *189 '403': *29 '404': *6 x-github: @@ -28371,7 +28617,7 @@ paths: parameters: - *17 - *19 - - *67 + - *69 responses: '200': description: Response @@ -28387,7 +28633,7 @@ paths: type: integer codespaces: type: array - items: &238 + items: &241 type: object title: Codespace description: A codespace. @@ -28412,12 +28658,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *153 + repository: *156 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &456 + properties: &459 name: type: string description: The name of the machine. @@ -28459,7 +28705,7 @@ paths: - ready - in_progress nullable: true - required: &457 + required: &460 - name - display_name - operating_system @@ -28664,7 +28910,7 @@ paths: - pulls_url - recent_folders examples: - default: &239 + default: &242 value: total_count: 3 codespaces: @@ -29074,7 +29320,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29096,7 +29342,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *67 + - *69 deprecated: true requestBody: required: true @@ -29140,7 +29386,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29163,7 +29409,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *67 + - *69 deprecated: true requestBody: required: true @@ -29195,7 +29441,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29218,7 +29464,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *67 + - *69 requestBody: required: true content: @@ -29249,7 +29495,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29270,7 +29516,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -29288,7 +29534,7 @@ paths: type: integer secrets: type: array - items: &187 + items: &190 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -29327,7 +29573,7 @@ paths: - updated_at - visibility examples: - default: &458 + default: &461 value: total_count: 2 secrets: @@ -29340,7 +29586,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29359,13 +29605,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &459 + schema: &462 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -29394,7 +29640,7 @@ paths: - key_id - key examples: - default: &460 + default: &463 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29417,23 +29663,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: Response content: application/json: - schema: *187 + schema: *190 examples: - default: &462 + default: &465 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29453,8 +29699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -29509,7 +29755,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -29535,8 +29781,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -29561,8 +29807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -29580,9 +29826,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 '404': *6 x-github: githubCloudOnly: false @@ -29604,8 +29850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -29655,8 +29901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -29689,8 +29935,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -29729,7 +29975,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: OK @@ -29838,7 +30084,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29870,7 +30116,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *67 + - *69 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -29893,7 +30139,7 @@ paths: currently being billed. seats: type: array - items: &241 + items: &244 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -29910,15 +30156,15 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *188 - required: *189 + properties: *191 + required: *192 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *190 - - *60 + - *193 + - *62 nullable: true pending_cancellation_date: type: string @@ -30042,8 +30288,8 @@ paths: type: User site_admin: false headers: - Link: *59 - '500': *113 + Link: *61 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30076,7 +30322,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -30118,7 +30364,7 @@ paths: default: value: seats_created: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30154,7 +30400,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -30196,7 +30442,7 @@ paths: default: value: seats_cancelled: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30234,7 +30480,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -30275,7 +30521,7 @@ paths: default: value: seats_created: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30311,7 +30557,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -30353,7 +30599,7 @@ paths: default: value: seats_cancelled: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30393,7 +30639,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-content-exclusion-management#get-copilot-content-exclusion-rules-for-an-organization parameters: - - *67 + - *69 responses: '200': description: OK @@ -30413,7 +30659,7 @@ paths: value: octo-repo: - "/src/some-dir/kernel.rs" - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30446,7 +30692,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-content-exclusion-management#set-copilot-content-exclusion-rules-for-an-organization parameters: - - *67 + - *69 requestBody: description: The content exclusion rules to set required: true @@ -30498,7 +30744,7 @@ paths: default: value: message: Content exclusion rules updated successfully. - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30537,7 +30783,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *67 + - *69 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -30569,7 +30815,7 @@ paths: application/json: schema: type: array - items: &327 + items: &330 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -30876,7 +31122,7 @@ paths: - date additionalProperties: true examples: - default: &328 + default: &331 value: - date: '2024-06-24' total_active_users: 24 @@ -30975,10 +31221,10 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *113 + '500': *115 '403': *29 '404': *6 - '422': &329 + '422': &332 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -31005,12 +31251,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *67 - - *191 - - *192 - - *193 + - *69 - *194 - *195 + - *196 + - *197 + - *198 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -31040,7 +31286,7 @@ paths: enum: - patch - deployment - - *196 + - *199 - name: runtime_risk in: query description: |- @@ -31049,11 +31295,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *197 - - *198 - - *53 - - *45 - - *46 + - *200 + - *201 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -31062,9 +31308,9 @@ paths: application/json: schema: type: array - items: *199 + items: *202 examples: - default: *200 + default: *203 '304': *37 '400': *14 '403': *29 @@ -31090,7 +31336,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31108,7 +31354,7 @@ paths: type: integer secrets: type: array - items: &201 + items: &204 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -31158,7 +31404,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31179,13 +31425,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &491 + schema: &494 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -31202,7 +31448,7 @@ paths: - key_id - key examples: - default: &492 + default: &495 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31225,14 +31471,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -31260,8 +31506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -31318,7 +31564,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -31350,8 +31596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -31375,8 +31621,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -31394,9 +31640,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31417,8 +31663,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -31468,8 +31714,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -31500,8 +31746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -31531,7 +31777,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -31539,7 +31785,7 @@ paths: application/json: schema: type: array - items: &251 + items: &254 title: Package description: A software package type: object @@ -31589,9 +31835,9 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *202 - required: *203 - x-github-breaking-changes: *204 + properties: *205 + required: *206 + x-github-breaking-changes: *207 nullable: true created_at: type: string @@ -31610,7 +31856,7 @@ paths: - created_at - updated_at examples: - default: &252 + default: &255 value: - id: 197 name: hello_docker @@ -31688,7 +31934,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31698,7 +31944,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: 200-response: value: @@ -31770,7 +32016,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31780,7 +32026,7 @@ paths: application/json: schema: type: array - items: &227 + items: &230 title: Organization Invitation description: Organization Invitation type: object @@ -31827,7 +32073,7 @@ paths: - invitation_teams_url - node_id examples: - default: &228 + default: &231 value: - id: 1 login: monalisa @@ -31860,7 +32106,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -31884,7 +32130,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31894,7 +32140,7 @@ paths: application/json: schema: type: array - items: &205 + items: &208 title: Org Hook description: Org Hook type: object @@ -31982,7 +32228,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -32005,7 +32251,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *67 + - *69 requestBody: required: true content: @@ -32065,9 +32311,9 @@ paths: description: Response content: application/json: - schema: *205 + schema: *208 examples: - default: &206 + default: &209 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -32114,8 +32360,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *67 - - &207 + - *69 + - &210 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. @@ -32128,9 +32374,9 @@ paths: description: Response content: application/json: - schema: *205 + schema: *208 examples: - default: *206 + default: *209 '404': *6 x-github: githubCloudOnly: false @@ -32157,8 +32403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *67 - - *207 + - *69 + - *210 requestBody: required: false content: @@ -32203,7 +32449,7 @@ paths: description: Response content: application/json: - schema: *205 + schema: *208 examples: default: value: @@ -32244,8 +32490,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *67 - - *207 + - *69 + - *210 responses: '204': description: Response @@ -32272,8 +32518,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *67 - - *207 + - *69 + - *210 responses: '200': description: Response @@ -32303,8 +32549,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *67 - - *207 + - *69 + - *210 requestBody: required: false content: @@ -32354,10 +32600,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *67 - - *207 + - *69 + - *210 - *17 - - *208 + - *211 responses: '200': description: Response @@ -32365,9 +32611,9 @@ paths: application/json: schema: type: array - items: *209 + items: *212 examples: - default: *210 + default: *213 '400': *14 '422': *15 x-github: @@ -32392,17 +32638,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *67 - - *207 + - *69 + - *210 - *16 responses: '200': description: Response content: application/json: - schema: *211 + schema: *214 examples: - default: *212 + default: *215 '400': *14 '422': *15 x-github: @@ -32427,8 +32673,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *67 - - *207 + - *69 + - *210 - *16 responses: '202': *39 @@ -32457,8 +32703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *67 - - *207 + - *69 + - *210 responses: '204': description: Response @@ -32480,8 +32726,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *67 - - &217 + - *69 + - &220 name: actor_type in: path description: The type of the actor @@ -32494,14 +32740,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &218 + - &221 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &213 + - &216 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`.' @@ -32509,7 +32755,7 @@ paths: required: true schema: type: string - - &214 + - &217 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) @@ -32520,7 +32766,7 @@ paths: type: string - *19 - *17 - - *53 + - *55 - name: sort description: The property to sort the results by. in: query @@ -32602,13 +32848,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *67 - - *213 - - *214 + - *69 + - *216 + - *217 - *19 - *17 - - *53 - - &223 + - *55 + - &226 name: sort description: The property to sort the results by. in: query @@ -32685,15 +32931,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *67 - - *213 - - *214 + - *69 + - *216 + - *217 responses: '200': description: Response content: application/json: - schema: &215 + schema: &218 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -32709,7 +32955,7 @@ paths: type: integer format: int64 examples: - default: &216 + default: &219 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -32729,24 +32975,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *67 - - &219 + - *69 + - &222 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *213 - - *214 + - *216 + - *217 responses: '200': description: Response content: application/json: - schema: *215 + schema: *218 examples: - default: *216 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -32764,19 +33010,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *67 - - *213 - - *214 + - *69 + - *216 - *217 - - *218 + - *220 + - *221 responses: '200': description: Response content: application/json: - schema: *215 + schema: *218 examples: - default: *216 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -32793,10 +33039,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *67 - - *213 - - *214 - - &220 + - *69 + - *216 + - *217 + - &223 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -32809,7 +33055,7 @@ paths: description: Response content: application/json: - schema: &221 + schema: &224 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -32825,7 +33071,7 @@ paths: type: integer format: int64 examples: - default: &222 + default: &225 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -32861,19 +33107,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *67 - - *219 - - *213 - - *214 - - *220 + - *69 + - *222 + - *216 + - *217 + - *223 responses: '200': description: Response content: application/json: - schema: *221 + schema: *224 examples: - default: *222 + default: *225 x-github: enabledForGitHubApps: true category: orgs @@ -32890,20 +33136,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *67 - - *217 - - *218 - - *213 - - *214 + - *69 - *220 + - *221 + - *216 + - *217 + - *223 responses: '200': description: Response content: application/json: - schema: *221 + schema: *224 examples: - default: *222 + default: *225 x-github: enabledForGitHubApps: true category: orgs @@ -32920,14 +33166,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *67 - - *219 - - *213 - - *214 + - *69 + - *222 + - *216 + - *217 - *19 - *17 - - *53 - - *223 + - *55 + - *226 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -33000,7 +33246,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *67 + - *69 responses: '200': description: Response @@ -33008,7 +33254,7 @@ paths: application/json: schema: *22 examples: - default: &530 + default: &533 value: id: 1 account: @@ -33077,7 +33323,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -33147,7 +33393,7 @@ paths: suspended_at: suspended_by: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33166,7 +33412,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -33174,12 +33420,12 @@ paths: application/json: schema: anyOf: - - &225 + - &228 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &224 + limit: &227 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -33204,7 +33450,7 @@ paths: properties: {} additionalProperties: false examples: - default: &226 + default: &229 value: limit: collaborators_only origin: organization @@ -33228,18 +33474,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &531 + schema: &534 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *224 + limit: *227 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -33263,9 +33509,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *226 + default: *229 '422': *15 x-github: githubCloudOnly: false @@ -33283,7 +33529,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -33307,7 +33553,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *67 + - *69 - *17 - *19 - name: role @@ -33341,11 +33587,11 @@ paths: application/json: schema: type: array - items: *227 + items: *230 examples: - default: *228 + default: *231 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -33366,7 +33612,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *67 + - *69 requestBody: required: false content: @@ -33420,7 +33666,7 @@ paths: description: Response content: application/json: - schema: *227 + schema: *230 examples: default: value: @@ -33474,8 +33720,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *67 - - &229 + - *69 + - &232 name: invitation_id description: The unique identifier of the invitation. in: path @@ -33505,8 +33751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *67 - - *229 + - *69 + - *232 - *17 - *19 responses: @@ -33516,9 +33762,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: &250 + default: &253 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -33534,7 +33780,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -33553,7 +33799,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -33561,7 +33807,7 @@ paths: application/json: schema: type: array - items: &230 + items: &233 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -33704,7 +33950,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -33794,9 +34040,9 @@ paths: description: Response content: application/json: - schema: *230 + schema: *233 examples: - default: &231 + default: &234 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -33851,8 +34097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *67 - - &232 + - *69 + - &235 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -33951,9 +34197,9 @@ paths: description: Response content: application/json: - schema: *230 + schema: *233 examples: - default: *231 + default: *234 '404': *6 '422': *7 x-github: @@ -33977,10 +34223,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *67 - - *232 + - *69 + - *235 responses: - '204': *184 + '204': *187 '404': *6 '422': *7 x-github: @@ -34000,7 +34246,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -34008,7 +34254,7 @@ paths: application/json: schema: type: array - items: *233 + items: *236 examples: default: value: @@ -34046,7 +34292,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -34093,9 +34339,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *236 examples: - default: &234 + default: &237 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -34127,8 +34373,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *67 - - &235 + - *69 + - &238 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -34181,9 +34427,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *236 examples: - default: *234 + default: *237 '404': *6 '422': *7 x-github: @@ -34207,8 +34453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *67 - - *235 + - *69 + - *238 responses: '204': description: Response @@ -34241,7 +34487,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *67 + - *69 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -34271,7 +34517,7 @@ paths: - closed - all default: open - - *236 + - *239 - name: type description: Can be the name of an issue type. in: query @@ -34289,8 +34535,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -34300,11 +34546,11 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *237 + default: *240 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -34324,7 +34570,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *67 + - *69 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -34362,9 +34608,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -34382,8 +34628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response if requester is an organization member and user is @@ -34417,8 +34663,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -34450,8 +34696,8 @@ paths: parameters: - *17 - *19 - - *67 - - *63 + - *69 + - *65 responses: '200': description: Response @@ -34467,11 +34713,11 @@ paths: type: integer codespaces: type: array - items: *238 + items: *241 examples: - default: *239 + default: *242 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34494,9 +34740,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *67 - - *63 - - &240 + - *69 + - *65 + - &243 name: codespace_name in: path required: true @@ -34506,7 +34752,7 @@ paths: responses: '202': *39 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34529,17 +34775,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *67 - - *63 - - *240 + - *69 + - *65 + - *243 responses: '200': description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: &455 + default: &458 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -34681,7 +34927,7 @@ paths: recent_folders: [] template: '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34712,14 +34958,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -34763,7 +35009,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34788,14 +35034,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '200': description: Response content: application/json: - schema: &242 + schema: &245 title: Org Membership description: Org Membership type: object @@ -34839,7 +35085,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *65 + organization: *67 user: title: Simple User description: A GitHub user. @@ -34862,7 +35108,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &243 + response-if-user-has-an-active-admin-membership-with-organization: &246 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -34934,8 +35180,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 requestBody: required: false content: @@ -34963,9 +35209,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *245 examples: - response-if-user-already-had-membership-with-organization: *243 + response-if-user-already-had-membership-with-organization: *246 '422': *15 '403': *29 x-github: @@ -34995,8 +35241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -35021,7 +35267,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *67 + - *69 - *17 - *19 - name: exclude @@ -35042,7 +35288,7 @@ paths: application/json: schema: type: array - items: &244 + items: &247 title: Migration description: A migration. type: object @@ -35083,7 +35329,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *71 + items: *73 url: type: string format: uri @@ -35136,7 +35382,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *58 + items: *60 version: '2026-03-10' examples: default: @@ -35290,7 +35536,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35306,7 +35552,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *67 + - *69 requestBody: required: true content: @@ -35382,7 +35628,7 @@ paths: description: Response content: application/json: - schema: *244 + schema: *247 examples: default: value: @@ -35560,8 +35806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *67 - - &245 + - *69 + - &248 name: migration_id description: The unique identifier of the migration. in: path @@ -35588,7 +35834,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *244 + schema: *247 examples: default: value: @@ -35757,8 +36003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *67 - - *245 + - *69 + - *248 responses: '302': description: Response @@ -35779,8 +36025,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *67 - - *245 + - *69 + - *248 responses: '204': description: Response @@ -35803,9 +36049,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *67 - - *245 - - &686 + - *69 + - *248 + - &689 name: repo_name description: repo_name parameter in: path @@ -35832,8 +36078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *67 - - *245 + - *69 + - *248 - *17 - *19 responses: @@ -35843,9 +36089,9 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: &257 + default: &260 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -35958,7 +36204,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -35973,7 +36219,7 @@ paths: content: application/json: schema: - items: *58 + items: *60 version: '2026-03-10' - changeset: restrict_repo_fields_in_migration_resource patch: @@ -36002,7 +36248,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response - list of organization roles @@ -36018,7 +36264,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &247 + items: &250 title: Organization Role description: Organization roles type: object @@ -36165,8 +36411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -36191,9 +36437,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *67 - *69 - - &246 + - *71 + - &249 name: role_id description: The unique identifier of the role. in: path @@ -36228,9 +36474,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *67 - *69 - - *246 + - *71 + - *249 responses: '204': description: Response @@ -36255,8 +36501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -36281,9 +36527,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *67 - - *63 - - *246 + - *69 + - *65 + - *249 responses: '204': description: Response @@ -36313,9 +36559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *67 - - *63 - - *246 + - *69 + - *65 + - *249 responses: '204': description: Response @@ -36343,14 +36589,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *67 - - *246 + - *69 + - *249 responses: '200': description: Response content: application/json: - schema: *247 + schema: *250 examples: default: value: @@ -36400,8 +36646,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *67 - - *246 + - *69 + - *249 - *17 - *19 responses: @@ -36479,8 +36725,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *248 - required: *249 + properties: *251 + required: *252 nullable: true type: description: The ownership type of the team @@ -36512,9 +36758,9 @@ paths: - type - parent examples: - default: *250 + default: *253 headers: - Link: *59 + Link: *61 '404': description: Response if the organization or role does not exist. '422': @@ -36541,8 +36787,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *67 - - *246 + - *69 + - *249 - *17 - *19 responses: @@ -36570,13 +36816,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &323 + items: &326 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *248 - required: *249 + properties: *251 + required: *252 name: nullable: true type: string @@ -36671,9 +36917,9 @@ paths: - type - url examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': description: Response if the organization or role does not exist. '422': @@ -36695,7 +36941,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *67 + - *69 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -36722,9 +36968,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36747,8 +36993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *67 - - *63 + - *69 + - *65 requestBody: required: false content: @@ -36805,8 +37051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -36863,8 +37109,8 @@ paths: - docker - nuget - container - - *67 - - &687 + - *69 + - &690 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -36900,12 +37146,12 @@ paths: application/json: schema: type: array - items: *251 + items: *254 examples: - default: *252 + default: *255 '403': *29 '401': *25 - '400': &689 + '400': &692 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -36927,7 +37173,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &253 + - &256 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 @@ -36945,20 +37191,20 @@ paths: - docker - nuget - container - - &254 + - &257 name: package_name description: The name of the package. in: path required: true schema: type: string - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *251 + schema: *254 examples: default: value: @@ -37010,9 +37256,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *253 - - *254 - - *67 + - *256 + - *257 + - *69 responses: '204': description: Response @@ -37044,9 +37290,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *253 - - *254 - - *67 + - *256 + - *257 + - *69 - name: token description: package token schema: @@ -37078,9 +37324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *253 - - *254 - - *67 + - *256 + - *257 + - *69 - *19 - *17 - name: state @@ -37100,7 +37346,7 @@ paths: application/json: schema: type: array - items: &255 + items: &258 title: Package Version description: A version of a software package type: object @@ -37225,10 +37471,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *253 - - *254 - - *67 - - &256 + - *256 + - *257 + - *69 + - &259 name: package_version_id description: Unique identifier of the package version. in: path @@ -37240,7 +37486,7 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: default: value: @@ -37276,10 +37522,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *253 - - *254 - - *67 - *256 + - *257 + - *69 + - *259 responses: '204': description: Response @@ -37311,10 +37557,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *253 - - *254 - - *67 - *256 + - *257 + - *69 + - *259 responses: '204': description: Response @@ -37341,10 +37587,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *67 + - *69 - *17 - *19 - - &258 + - &261 name: sort description: The property by which to sort the results. in: query @@ -37354,8 +37600,8 @@ paths: enum: - created_at default: created_at - - *53 - - &259 + - *55 + - &262 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -37366,7 +37612,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &260 + - &263 name: repository description: The name of the repository to use to filter the results. in: query @@ -37374,7 +37620,7 @@ paths: schema: type: string example: Hello-World - - &261 + - &264 name: permission description: The permission to use to filter the results. in: query @@ -37382,7 +37628,7 @@ paths: schema: type: string example: issues_read - - &262 + - &265 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) @@ -37392,7 +37638,7 @@ paths: schema: type: string format: date-time - - &263 + - &266 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) @@ -37402,7 +37648,7 @@ paths: schema: type: string format: date-time - - &264 + - &267 name: token_id description: The ID of the token in: query @@ -37414,7 +37660,7 @@ paths: type: string example: token_id[]=1,token_id[]=2 responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37546,7 +37792,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37566,7 +37812,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *67 + - *69 requestBody: required: true content: @@ -37607,7 +37853,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37632,7 +37878,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *67 + - *69 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -37668,11 +37914,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37693,7 +37939,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *67 + - *69 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -37704,7 +37950,7 @@ paths: - *17 - *19 responses: - '500': *113 + '500': *115 '404': *6 '403': *29 '200': @@ -37713,11 +37959,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *257 + default: *260 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37738,19 +37984,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *67 + - *69 - *17 - *19 - - *258 - - *53 - - *259 - - *260 - *261 + - *55 - *262 - *263 - *264 + - *265 + - *266 + - *267 responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37877,7 +38123,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37897,7 +38143,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *67 + - *69 requestBody: required: true content: @@ -37932,7 +38178,7 @@ paths: - 1296269 - 1296280 responses: - '500': *113 + '500': *115 '404': *6 '202': *39 '403': *29 @@ -37957,7 +38203,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *67 + - *69 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -37985,9 +38231,9 @@ paths: value: action: revoke responses: - '500': *113 + '500': *115 '404': *6 - '204': *184 + '204': *187 '403': *29 '422': *15 x-github: @@ -38009,7 +38255,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *67 + - *69 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -38019,7 +38265,7 @@ paths: - *17 - *19 responses: - '500': *113 + '500': *115 '404': *6 '403': *29 '200': @@ -38028,11 +38274,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *257 + default: *260 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38054,7 +38300,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -38072,7 +38318,7 @@ paths: type: integer configurations: type: array - items: &265 + items: &268 title: Organization private registry description: Private registry configuration for an organization type: object @@ -38152,7 +38398,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *59 + Link: *61 '400': *14 '404': *6 x-github: @@ -38174,7 +38420,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -38362,7 +38608,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &266 + org-private-registry-with-selected-visibility: &269 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -38403,7 +38649,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -38429,7 +38675,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -38451,16 +38697,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 '404': *6 x-github: githubCloudOnly: false @@ -38481,8 +38727,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -38586,8 +38832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -38610,15 +38856,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *67 + - *69 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -38627,7 +38873,7 @@ paths: application/json: schema: type: array - items: &267 + items: &270 title: Projects v2 Project description: A projects v2 project type: object @@ -38697,7 +38943,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &778 + properties: &781 id: type: number description: The unique identifier of the status update. @@ -38745,7 +38991,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &779 + required: &782 - id - node_id - created_at @@ -38770,7 +39016,7 @@ paths: - deleted_at - deleted_by examples: - default: &268 + default: &271 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -38853,7 +39099,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38873,24 +39119,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &269 + - &272 name: project_number description: The project's number. in: path required: true schema: type: integer - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *267 + schema: *270 examples: - default: *268 + default: *271 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38910,8 +39156,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *67 - - *269 + - *69 + - *272 requestBody: required: true description: Details of the draft item to create in the project. @@ -38945,7 +39191,7 @@ paths: description: Response content: application/json: - schema: &275 + schema: &278 title: Projects v2 Item description: An item belonging to a project type: object @@ -38958,8 +39204,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *77 - - &472 + - *79 + - &475 title: Pull Request Simple description: Pull Request Simple type: object @@ -39065,8 +39311,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *270 - required: *271 + properties: *273 + required: *274 nullable: true active_lock_reason: type: string @@ -39109,7 +39355,7 @@ paths: items: *4 requested_teams: type: array - items: *190 + items: *193 head: type: object properties: @@ -39117,7 +39363,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: @@ -39140,7 +39386,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: @@ -39159,7 +39405,7 @@ paths: _links: type: object properties: - comments: &272 + comments: &275 title: Link description: Hypermedia Link type: object @@ -39168,13 +39414,13 @@ paths: type: string required: - href - commits: *272 - statuses: *272 - html: *272 - issue: *272 - review_comments: *272 - review_comment: *272 - self: *272 + commits: *275 + statuses: *275 + html: *275 + issue: *275 + review_comments: *275 + review_comment: *275 + self: *275 required: - comments - commits @@ -39184,8 +39430,8 @@ paths: - review_comments - review_comment - self - author_association: *74 - auto_merge: &582 + author_association: *76 + auto_merge: &585 title: Auto merge description: The status of auto merging a pull request. type: object @@ -39359,7 +39605,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &274 + content_type: &277 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -39399,7 +39645,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &276 + draft_issue: &279 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -39473,11 +39719,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *269 - - *67 + - *272 + - *69 - *17 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -39485,7 +39731,7 @@ paths: application/json: schema: type: array - items: &273 + items: &276 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -39635,7 +39881,7 @@ paths: - updated_at - project_url examples: - default: &708 + default: &711 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39746,7 +39992,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -39765,8 +40011,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *269 - - *67 + - *272 + - *69 requestBody: required: true content: @@ -39812,7 +40058,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &709 + items: &712 type: object properties: name: @@ -39849,7 +40095,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &710 + iteration_configuration: &713 type: object description: The configuration for iteration fields. properties: @@ -39899,7 +40145,7 @@ paths: value: name: Due date data_type: date - single_select_field: &711 + single_select_field: &714 summary: Create a single select field value: name: Priority @@ -39926,7 +40172,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &712 + iteration_field: &715 summary: Create an iteration field value: name: Sprint @@ -39950,9 +40196,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *273 + schema: *276 examples: - text_field: &713 + text_field: &716 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -39961,7 +40207,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: &714 + number_field: &717 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -39970,7 +40216,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: &715 + date_field: &718 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -39979,7 +40225,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: &716 + single_select_field: &719 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40013,7 +40259,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &717 + iteration_field: &720 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -40058,23 +40304,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *269 - - &718 + - *272 + - &721 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: &719 + default: &722 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40109,7 +40355,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40130,8 +40376,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *269 - - *67 + - *272 + - *69 - 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) for more information. @@ -40153,8 +40399,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -40163,7 +40409,7 @@ paths: application/json: schema: type: array - items: &277 + items: &280 title: Projects v2 Item description: An item belonging to a project type: object @@ -40179,7 +40425,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *274 + content_type: *277 content: type: object additionalProperties: true @@ -40222,7 +40468,7 @@ paths: - updated_at - archived_at examples: - default: &278 + default: &281 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -40899,7 +41145,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40919,8 +41165,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *67 - - *269 + - *69 + - *272 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -40990,22 +41236,22 @@ paths: description: Response content: application/json: - schema: *275 + schema: *278 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *276 + value: *279 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *276 + value: *279 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *276 + value: *279 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *276 + value: *279 '304': *37 '403': *29 '401': *25 @@ -41025,9 +41271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *269 - - *67 - - &279 + - *272 + - *69 + - &282 name: item_id description: The unique identifier of the project item. in: path @@ -41053,11 +41299,11 @@ paths: description: Response content: application/json: - schema: *277 + schema: *280 examples: - default: *278 + default: *281 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -41076,9 +41322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *269 - - *67 - - *279 + - *272 + - *69 + - *282 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -41148,13 +41394,13 @@ paths: description: Response content: application/json: - schema: *277 + schema: *280 examples: - text_field: *278 - number_field: *278 - date_field: *278 - single_select_field: *278 - iteration_field: *278 + text_field: *281 + number_field: *281 + date_field: *281 + single_select_field: *281 + iteration_field: *281 '401': *25 '403': *29 '404': *6 @@ -41174,9 +41420,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *269 - - *67 - - *279 + - *272 + - *69 + - *282 responses: '204': description: Response @@ -41199,8 +41445,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *67 - - *269 + - *69 + - *272 requestBody: required: true content: @@ -41271,7 +41517,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &700 + schema: &703 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -41369,7 +41615,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &280 + value: &283 value: id: 1 number: 1 @@ -41415,10 +41661,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *280 + value: *283 roadmap_view: summary: Response for creating a roadmap view - value: *280 + value: *283 '304': *37 '403': *29 '401': *25 @@ -41446,9 +41692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *269 - - *67 - - &720 + - *272 + - *69 + - &723 name: view_number description: The number that identifies the project view. in: path @@ -41470,8 +41716,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -41480,11 +41726,11 @@ paths: application/json: schema: type: array - items: *277 + items: *280 examples: - default: *278 + default: *281 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -41507,7 +41753,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -41515,7 +41761,7 @@ paths: application/json: schema: type: array - items: &281 + items: &284 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -41583,7 +41829,7 @@ paths: - property_name - value_type examples: - default: &282 + default: &285 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41632,7 +41878,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -41643,7 +41889,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *281 + items: *284 minItems: 1 maxItems: 100 required: @@ -41673,9 +41919,9 @@ paths: application/json: schema: type: array - items: *281 + items: *284 examples: - default: *282 + default: *285 '403': *29 '404': *6 x-github: @@ -41696,8 +41942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *67 - - &283 + - *69 + - &286 name: custom_property_name description: The custom property name in: path @@ -41709,9 +41955,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: &284 + default: &287 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41745,8 +41991,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *67 - - *283 + - *69 + - *286 requestBody: required: true content: @@ -41817,9 +42063,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *284 + default: *287 '403': *29 '404': *6 x-github: @@ -41842,10 +42088,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *67 - - *283 + - *69 + - *286 responses: - '204': *184 + '204': *187 '403': *29 '404': *6 x-github: @@ -41866,7 +42112,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *67 + - *69 - *17 - *19 - name: repository_query @@ -41904,7 +42150,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &285 + items: &288 title: Custom Property Value description: Custom property name and associated value type: object @@ -41943,7 +42189,7 @@ paths: - property_name: team value: octocat headers: - Link: *59 + Link: *61 '403': *29 '404': *6 x-github: @@ -41971,7 +42217,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *67 + - *69 requestBody: required: true content: @@ -41991,7 +42237,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *285 + items: *288 required: - repository_names - properties @@ -42032,7 +42278,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *67 + - *69 - *17 - *19 responses: @@ -42044,9 +42290,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42063,8 +42309,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response if user is a public member @@ -42088,8 +42334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -42110,8 +42356,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -42135,7 +42381,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *67 + - *69 - name: type description: Specifies the types of repositories you want returned. in: query @@ -42181,11 +42427,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *257 + default: *260 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42204,7 +42450,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *67 + - *69 requestBody: required: true content: @@ -42385,7 +42631,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &340 title: Full Repository description: Full Repository type: object @@ -42676,9 +42922,9 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *286 - required: *287 - x-github-breaking-changes: *288 + properties: *289 + required: *290 + x-github-breaking-changes: *291 nullable: true temp_clone_token: type: string @@ -42765,8 +43011,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true organization: title: Simple User @@ -42775,8 +43021,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *71 - source: *71 + parent: *73 + source: *73 forks: type: integer master_branch: @@ -42793,7 +43039,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &477 + properties: &480 url: type: string format: uri @@ -42809,12 +43055,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &478 + required: &481 - url - key - name - html_url - security_and_analysis: *289 + security_and_analysis: *292 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42909,7 +43155,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &339 + default: &342 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43433,10 +43679,10 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - *17 - *19 - - &604 + - &607 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43454,7 +43700,7 @@ paths: application/json: schema: type: array - items: &316 + items: &319 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -43489,7 +43735,7 @@ paths: source: type: string description: The name of the source - enforcement: &292 + enforcement: &295 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -43502,7 +43748,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &293 + items: &296 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -43572,7 +43818,7 @@ paths: conditions: nullable: true anyOf: - - &290 + - &293 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -43596,7 +43842,7 @@ paths: match. items: type: string - - &294 + - &297 title: Organization ruleset conditions type: object description: |- @@ -43610,7 +43856,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *290 + - *293 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -43644,7 +43890,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *290 + - *293 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -43666,7 +43912,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *290 + - *293 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -43679,7 +43925,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &291 + items: &294 title: Repository ruleset property targeting definition type: object @@ -43712,17 +43958,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *291 + items: *294 required: - repository_property rules: type: array - items: &605 + items: &608 title: Repository Rule type: object description: A repository rule. oneOf: - - &295 + - &298 title: creation description: Only allow users with bypass permission to create matching refs. @@ -43734,7 +43980,7 @@ paths: type: string enum: - creation - - &296 + - &299 title: update description: Only allow users with bypass permission to update matching refs. @@ -43755,7 +44001,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &297 + - &300 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -43767,7 +44013,7 @@ paths: type: string enum: - deletion - - &298 + - &301 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -43779,7 +44025,7 @@ paths: type: string enum: - required_linear_history - - &603 + - &606 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -43857,7 +44103,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &299 + - &302 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -43881,7 +44127,7 @@ paths: type: string required: - required_deployment_environments - - &300 + - &303 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -43893,7 +44139,7 @@ paths: type: string enum: - required_signatures - - &301 + - &304 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -43999,7 +44245,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &302 + - &305 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -44047,7 +44293,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &303 + - &306 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -44059,7 +44305,7 @@ paths: type: string enum: - non_fast_forward - - &304 + - &307 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -44096,7 +44342,7 @@ paths: required: - operator - pattern - - &305 + - &308 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -44133,7 +44379,7 @@ paths: required: - operator - pattern - - &306 + - &309 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -44170,7 +44416,7 @@ paths: required: - operator - pattern - - &307 + - &310 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -44207,7 +44453,7 @@ paths: required: - operator - pattern - - &308 + - &311 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -44244,7 +44490,7 @@ paths: required: - operator - pattern - - &309 + - &312 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -44269,7 +44515,7 @@ paths: type: string required: - restricted_file_paths - - &310 + - &313 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -44293,7 +44539,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &311 + - &314 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -44316,7 +44562,7 @@ paths: type: string required: - restricted_file_extensions - - &312 + - &315 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -44341,7 +44587,7 @@ paths: maximum: 100 required: - max_file_size - - &313 + - &316 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -44391,7 +44637,7 @@ paths: - repository_id required: - workflows - - &314 + - &317 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -44452,7 +44698,7 @@ paths: - tool required: - code_scanning_tools - - &315 + - &318 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -44514,7 +44760,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -44530,7 +44776,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 requestBody: description: Request body required: true @@ -44551,23 +44797,20 @@ paths: - push - repository default: branch - enforcement: *292 + enforcement: *295 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *293 - conditions: *294 + items: *296 + conditions: *297 rules: type: array description: An array of rules within the ruleset. - items: &318 + items: &321 title: Repository Rule type: object description: A repository rule. oneOf: - - *295 - - *296 - - *297 - *298 - *299 - *300 @@ -44586,6 +44829,9 @@ paths: - *313 - *314 - *315 + - *316 + - *317 + - *318 required: - name - enforcement @@ -44623,9 +44869,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *319 examples: - default: &317 + default: &320 value: id: 21 name: super cool ruleset @@ -44666,7 +44912,7 @@ paths: updated_at: '2023-09-23T16:29:47Z' '404': *6 '422': *15 - '500': *113 + '500': *115 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -44680,8 +44926,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *67 - - &606 + - *69 + - &609 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 @@ -44696,7 +44942,7 @@ paths: in: query schema: type: string - - &607 + - &610 name: time_period description: |- The time period to filter by. @@ -44712,14 +44958,14 @@ paths: - week - month default: day - - &608 + - &611 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 - - &609 + - &612 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -44739,7 +44985,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &613 title: Rule Suites description: Response type: array @@ -44794,7 +45040,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &611 + default: &614 value: - id: 21 actor_id: 12 @@ -44818,7 +45064,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44837,8 +45083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *67 - - &612 + - *69 + - &615 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44854,7 +45100,7 @@ paths: description: Response content: application/json: - schema: &613 + schema: &616 title: Rule Suite description: Response type: object @@ -44953,7 +45199,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &614 + default: &617 value: id: 21 actor_id: 12 @@ -44988,7 +45234,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45014,7 +45260,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45026,11 +45272,11 @@ paths: description: Response content: application/json: - schema: *316 + schema: *319 examples: - default: *317 + default: *320 '404': *6 - '500': *113 + '500': *115 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -45046,7 +45292,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45072,16 +45318,16 @@ paths: - tag - push - repository - enforcement: *292 + enforcement: *295 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *293 - conditions: *294 + items: *296 + conditions: *297 rules: description: An array of rules within the ruleset. type: array - items: *318 + items: *321 examples: default: value: @@ -45116,12 +45362,12 @@ paths: description: Response content: application/json: - schema: *316 + schema: *319 examples: - default: *317 + default: *320 '404': *6 '422': *15 - '500': *113 + '500': *115 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -45137,7 +45383,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45148,7 +45394,7 @@ paths: '204': description: Response '404': *6 - '500': *113 + '500': *115 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -45160,7 +45406,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *67 + - *69 - *17 - *19 - name: ruleset_id @@ -45176,7 +45422,7 @@ paths: application/json: schema: type: array - items: &319 + items: &322 title: Ruleset version type: object description: The historical version of a ruleset @@ -45200,7 +45446,7 @@ paths: type: string format: date-time examples: - default: &616 + default: &619 value: - version_id: 3 actor: @@ -45218,7 +45464,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45235,7 +45481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45253,9 +45499,9 @@ paths: description: Response content: application/json: - schema: &617 + schema: &620 allOf: - - *319 + - *322 - type: object required: - state @@ -45302,7 +45548,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45324,8 +45570,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *67 - - &618 + - *69 + - &621 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -45336,7 +45582,7 @@ paths: enum: - open - resolved - - &619 + - &622 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -45346,7 +45592,7 @@ paths: required: false schema: type: string - - &620 + - &623 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -45355,7 +45601,7 @@ paths: required: false schema: type: string - - &621 + - &624 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -45374,7 +45620,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &622 + - &625 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. @@ -45386,10 +45632,10 @@ paths: - created - updated default: created - - *53 + - *55 - *19 - *17 - - &623 + - &626 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 @@ -45399,7 +45645,7 @@ paths: required: false schema: type: string - - &624 + - &627 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 @@ -45409,7 +45655,7 @@ paths: required: false schema: type: string - - &625 + - &628 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -45418,7 +45664,7 @@ paths: required: false schema: type: string - - &626 + - &629 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -45427,7 +45673,7 @@ paths: schema: type: boolean default: false - - &627 + - &630 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -45436,7 +45682,7 @@ paths: schema: type: boolean default: false - - &628 + - &631 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -45455,8 +45701,8 @@ paths: items: type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -45464,21 +45710,21 @@ paths: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &629 + state: &632 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &630 + resolution: &633 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -45512,7 +45758,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *58 + repository: *60 push_protection_bypassed: type: boolean description: Whether push protection was bypassed for the detected @@ -45585,8 +45831,8 @@ paths: pull request. ' - oneOf: &631 - - &633 + oneOf: &634 + - &636 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -45638,7 +45884,7 @@ paths: - blob_url - commit_sha - commit_url - - &634 + - &637 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. @@ -45693,7 +45939,7 @@ paths: - page_url - commit_sha - commit_url - - &635 + - &638 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -45707,7 +45953,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &636 + - &639 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -45721,7 +45967,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &637 + - &640 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -45735,7 +45981,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &638 + - &641 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -45749,7 +45995,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &639 + - &642 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -45763,7 +46009,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &640 + - &643 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -45777,7 +46023,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &641 + - &644 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. @@ -45791,7 +46037,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &642 + - &645 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. @@ -45805,7 +46051,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &643 + - &646 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. @@ -45819,7 +46065,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &644 + - &647 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. @@ -45833,7 +46079,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &645 + - &648 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -46036,9 +46282,9 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46063,7 +46309,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *67 + - *69 responses: '200': description: Response @@ -46075,7 +46321,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &321 + pattern_config_version: &324 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -46084,7 +46330,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &320 + items: &323 type: object properties: token_type: @@ -46150,7 +46396,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *320 + items: *323 examples: default: value: @@ -46199,7 +46445,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *67 + - *69 requestBody: required: true content: @@ -46207,7 +46453,7 @@ paths: schema: type: object properties: - pattern_config_version: *321 + pattern_config_version: *324 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -46233,7 +46479,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *321 + custom_pattern_version: *324 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -46269,7 +46515,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 "/orgs/{org}/security-advisories": get: @@ -46287,8 +46533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *67 - - *53 + - *69 + - *55 - name: sort description: The property to sort the results by. in: query @@ -46300,8 +46546,8 @@ paths: - updated - published default: created - - *45 - - *46 + - *47 + - *48 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -46331,7 +46577,7 @@ paths: application/json: schema: type: array - items: &649 + items: &652 description: A repository security advisory. type: object properties: @@ -46518,7 +46764,7 @@ paths: required: - vector_string - score - cvss_severities: *55 + cvss_severities: *57 cwes: type: array nullable: true @@ -46551,7 +46797,7 @@ paths: login: type: string description: The username of the user credited. - type: *322 + type: *325 credits_detailed: type: array nullable: true @@ -46561,7 +46807,7 @@ paths: type: object properties: user: *4 - type: *322 + type: *325 state: type: string description: The state of the user's acceptance of the @@ -46585,14 +46831,14 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *190 + items: *193 private_fork: readOnly: true nullable: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *58 + - *60 required: - ghsa_id - cve_id @@ -46654,7 +46900,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &650 + default: &653 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -47033,7 +47279,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *67 + - *69 responses: '200': description: Response @@ -47041,7 +47287,7 @@ paths: application/json: schema: type: array - items: *323 + items: *326 examples: default: value: @@ -47081,8 +47327,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -47107,8 +47353,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -47135,7 +47381,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Immutable releases settings response @@ -47184,7 +47430,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -47241,7 +47487,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *67 + - *69 - *19 - *17 responses: @@ -47259,9 +47505,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47280,7 +47526,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *67 + - *69 requestBody: required: true content: @@ -47329,8 +47575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -47352,8 +47598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -47376,7 +47622,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -47394,7 +47640,7 @@ paths: type: integer network_configurations: type: array - items: &324 + items: &327 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -47465,7 +47711,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47484,7 +47730,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -47527,9 +47773,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *327 examples: - default: &325 + default: &328 value: id: 123456789ABCDEF name: My network configuration @@ -47557,8 +47803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 - - &326 + - *69 + - &329 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -47570,11 +47816,11 @@ paths: description: Response content: application/json: - schema: *324 + schema: *327 examples: - default: *325 + default: *328 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47593,8 +47839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 - - *326 + - *69 + - *329 requestBody: required: true content: @@ -47634,9 +47880,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *327 examples: - default: *325 + default: *328 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47655,8 +47901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - - *67 - - *326 + - *69 + - *329 responses: '204': description: Response @@ -47679,7 +47925,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - - *67 + - *69 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -47733,7 +47979,7 @@ paths: subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" region: eastus headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47763,8 +48009,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *67 - *69 + - *71 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -47796,13 +48042,13 @@ paths: application/json: schema: type: array - items: *327 + items: *330 examples: - default: *328 - '500': *113 + default: *331 + '500': *115 '403': *29 '404': *6 - '422': *329 + '422': *332 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47820,7 +48066,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *67 + - *69 - *17 - *19 - name: team_type @@ -47842,11 +48088,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *250 + default: *253 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -47866,7 +48112,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *67 + - *69 requestBody: required: true content: @@ -47938,7 +48184,7 @@ paths: description: Response content: application/json: - schema: &330 + schema: &333 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -48001,8 +48247,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *248 - required: *249 + properties: *251 + required: *252 nullable: true members_count: type: integer @@ -48265,7 +48511,7 @@ paths: - repos_count - organization examples: - default: &331 + default: &334 value: id: 1 node_id: MDQ6VGVhbTE= @@ -48346,16 +48592,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *67 - *69 + - *71 responses: '200': description: Response content: application/json: - schema: *330 + schema: *333 examples: - default: *331 + default: *334 '404': *6 x-github: githubCloudOnly: false @@ -48376,8 +48622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *67 - *69 + - *71 requestBody: required: false content: @@ -48439,16 +48685,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *330 + schema: *333 examples: - default: *331 + default: *334 '201': description: Response content: application/json: - schema: *330 + schema: *333 examples: - default: *331 + default: *334 '404': *6 '422': *15 '403': *29 @@ -48473,12 +48719,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response - '422': &332 + '422': &335 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -48501,8 +48747,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -48512,12 +48758,12 @@ paths: application/json: schema: type: array - items: *227 + items: *230 examples: - default: *228 + default: *231 headers: - Link: *59 - '422': *332 + Link: *61 + '422': *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48537,8 +48783,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *67 - *69 + - *71 - name: role description: Filters members returned by their role in the team. in: query @@ -48561,9 +48807,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48591,15 +48837,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 responses: '200': description: Response content: application/json: - schema: &333 + schema: &336 title: Team Membership description: Team Membership type: object @@ -48626,7 +48872,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &666 + response-if-user-is-a-team-maintainer: &669 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48662,9 +48908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 requestBody: required: false content: @@ -48689,9 +48935,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: - response-if-users-membership-with-team-is-now-pending: &667 + response-if-users-membership-with-team-is-now-pending: &670 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48726,9 +48972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 responses: '204': description: Response @@ -48754,8 +49000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -48765,11 +49011,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *257 + default: *260 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48796,16 +49042,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *67 - *69 - - *334 - - *335 + - *71 + - *337 + - *338 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &668 + schema: &671 title: Team Repository description: A team's access to a repository. type: object @@ -48828,8 +49074,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true forks: type: integer @@ -49453,10 +49699,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *67 - *69 - - *334 - - *335 + - *71 + - *337 + - *338 requestBody: required: false content: @@ -49501,10 +49747,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *67 - *69 - - *334 - - *335 + - *71 + - *337 + - *338 responses: '204': description: Response @@ -49528,8 +49774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -49539,9 +49785,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - response-if-child-teams-exist: &669 + response-if-child-teams-exist: &672 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -49569,7 +49815,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49594,7 +49840,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *67 + - *69 - name: security_product in: path description: The security feature to enable or disable. @@ -49695,7 +49941,7 @@ paths: resources: type: object properties: - core: &336 + core: &339 title: Rate Limit type: object properties: @@ -49712,21 +49958,21 @@ paths: - remaining - reset - used - graphql: *336 - search: *336 - code_search: *336 - source_import: *336 - integration_manifest: *336 - code_scanning_upload: *336 - actions_runner_registration: *336 - scim: *336 - dependency_snapshots: *336 - dependency_sbom: *336 - code_scanning_autofix: *336 + graphql: *339 + search: *339 + code_search: *339 + source_import: *339 + integration_manifest: *339 + code_scanning_upload: *339 + actions_runner_registration: *339 + scim: *339 + dependency_snapshots: *339 + dependency_sbom: *339 + code_scanning_autofix: *339 required: - core - search - rate: *336 + rate: *339 required: - rate - resources @@ -49839,14 +50085,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *337 + schema: *340 examples: default-response: summary: Default response @@ -50351,7 +50597,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *338 + '301': *341 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50369,8 +50615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: false content: @@ -50661,10 +50907,10 @@ paths: description: Response content: application/json: - schema: *337 + schema: *340 examples: - default: *339 - '307': &340 + default: *342 + '307': &343 description: Temporary Redirect content: application/json: @@ -50693,8 +50939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -50716,9 +50962,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *340 + '307': *343 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50740,11 +50986,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 - - &373 + - &376 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50767,7 +51013,7 @@ paths: type: integer artifacts: type: array - items: &341 + items: &344 title: Artifact description: An artifact type: object @@ -50845,7 +51091,7 @@ paths: - expires_at - updated_at examples: - default: &374 + default: &377 value: total_count: 2 artifacts: @@ -50884,7 +51130,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50906,9 +51152,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *334 - - *335 - - &342 + - *337 + - *338 + - &345 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50920,7 +51166,7 @@ paths: description: Response content: application/json: - schema: *341 + schema: *344 examples: default: value: @@ -50958,9 +51204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *334 - - *335 - - *342 + - *337 + - *338 + - *345 responses: '204': description: Response @@ -50984,9 +51230,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *334 - - *335 - - *342 + - *337 + - *338 + - *345 - name: archive_format in: path required: true @@ -51000,7 +51246,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &534 + '410': &537 description: Gone content: application/json: @@ -51025,14 +51271,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: &343 + schema: &346 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -51065,13 +51311,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: application/json: - schema: *343 + schema: *346 examples: selected_actions: *42 responses: @@ -51100,14 +51346,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: &344 + schema: &347 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -51140,13 +51386,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: application/json: - schema: *344 + schema: *347 examples: selected_actions: *44 responses: @@ -51177,14 +51423,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: default: value: @@ -51210,11 +51456,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 - - &346 + - &349 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 @@ -51242,13 +51488,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *53 + - *55 responses: '200': description: Response content: application/json: - schema: &347 + schema: &350 title: Repository actions caches description: Repository actions caches type: object @@ -51290,7 +51536,7 @@ paths: - total_count - actions_caches examples: - default: &348 + default: &351 value: total_count: 1 actions_caches: @@ -51302,7 +51548,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51322,23 +51568,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: - - *334 - - *335 + - *337 + - *338 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *346 + - *349 responses: '200': description: Response content: application/json: - schema: *347 + schema: *350 examples: - default: *348 + default: *351 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51358,8 +51604,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: - - *334 - - *335 + - *337 + - *338 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -51390,9 +51636,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *334 - - *335 - - &349 + - *337 + - *338 + - &352 name: job_id description: The unique identifier of the job. in: path @@ -51404,7 +51650,7 @@ paths: description: Response content: application/json: - schema: &377 + schema: &380 title: Job description: Information of a job execution in a workflow run type: object @@ -51711,9 +51957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *334 - - *335 - - *349 + - *337 + - *338 + - *352 responses: '302': description: Response @@ -51741,9 +51987,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *334 - - *335 - - *349 + - *337 + - *338 + - *352 requestBody: required: false content: @@ -51764,7 +52010,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -51788,8 +52034,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: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Status response @@ -51839,8 +52085,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: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -51874,7 +52120,7 @@ paths: description: Empty response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -51903,8 +52149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -51922,7 +52168,7 @@ paths: type: integer secrets: type: array - items: &379 + items: &382 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51942,7 +52188,7 @@ paths: - created_at - updated_at examples: - default: &380 + default: &383 value: total_count: 2 secrets: @@ -51953,7 +52199,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51975,9 +52221,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *334 - - *335 - - *350 + - *337 + - *338 + - *353 - *19 responses: '200': @@ -51994,7 +52240,7 @@ paths: type: integer variables: type: array - items: &383 + items: &386 title: Actions Variable type: object properties: @@ -52024,7 +52270,7 @@ paths: - created_at - updated_at examples: - default: &384 + default: &387 value: total_count: 2 variables: @@ -52037,7 +52283,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52057,8 +52303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -52067,12 +52313,12 @@ paths: schema: type: object properties: - enabled: &352 + enabled: &355 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *138 - selected_actions_url: *351 - sha_pinning_required: *139 + allowed_actions: *141 + selected_actions_url: *354 + sha_pinning_required: *142 required: - enabled examples: @@ -52100,8 +52346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -52112,9 +52358,9 @@ paths: schema: type: object properties: - enabled: *352 - allowed_actions: *138 - sha_pinning_required: *139 + enabled: *355 + allowed_actions: *141 + sha_pinning_required: *142 required: - enabled examples: @@ -52144,14 +52390,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: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: &353 + schema: &356 type: object properties: access_level: @@ -52168,7 +52414,7 @@ paths: required: - access_level examples: - default: &354 + default: &357 value: access_level: organization x-github: @@ -52192,15 +52438,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: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: application/json: - schema: *353 + schema: *356 examples: - default: *354 + default: *357 responses: '204': description: Response @@ -52224,14 +52470,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *355 + schema: *358 examples: default: value: @@ -52255,8 +52501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Empty response for successful settings update @@ -52266,7 +52512,7 @@ paths: required: true content: application/json: - schema: *356 + schema: *359 examples: default: summary: Set retention days @@ -52290,16 +52536,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *140 + schema: *143 examples: - default: *357 + default: *360 '404': *6 x-github: enabledForGitHubApps: true @@ -52318,8 +52564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -52329,7 +52575,7 @@ paths: required: true content: application/json: - schema: *140 + schema: *143 examples: default: summary: Set approval policy to first time contributors @@ -52353,16 +52599,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *141 + default: *144 '403': *29 '404': *6 x-github: @@ -52382,15 +52628,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: application/json: - schema: *359 + schema: *362 examples: - default: *141 + default: *144 responses: '204': description: Empty response for successful settings update @@ -52414,16 +52660,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *143 + schema: *146 examples: - default: *144 + default: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -52442,8 +52688,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -52451,9 +52697,9 @@ paths: required: false content: application/json: - schema: *143 + schema: *146 examples: - selected_actions: *144 + selected_actions: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -52475,16 +52721,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *360 + schema: *363 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52505,8 +52751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Success response @@ -52517,9 +52763,9 @@ paths: required: true content: application/json: - schema: *361 + schema: *364 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52546,8 +52792,8 @@ paths: in: query schema: type: string - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -52565,11 +52811,11 @@ paths: type: integer runners: type: array - items: *155 + items: *158 examples: - default: *156 + default: *159 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52591,8 +52837,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -52600,9 +52846,9 @@ paths: application/json: schema: type: array - items: *362 + items: *365 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52624,8 +52870,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: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -52668,10 +52914,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *364 + '201': *367 '404': *6 '422': *7 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52699,16 +52945,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: *365 + default: *368 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52736,16 +52982,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: *366 + default: *369 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52767,17 +53013,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *334 - - *335 - - *154 + - *337 + - *338 + - *157 responses: '200': description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: *367 + default: *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52798,9 +53044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *334 - - *335 - - *154 + - *337 + - *338 + - *157 responses: '204': description: Response @@ -52826,11 +53072,11 @@ 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: - - *334 - - *335 - - *154 + - *337 + - *338 + - *157 responses: - '200': *159 + '200': *162 '404': *6 x-github: githubCloudOnly: false @@ -52852,9 +53098,9 @@ 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: - - *334 - - *335 - - *154 + - *337 + - *338 + - *157 requestBody: required: true content: @@ -52878,7 +53124,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -52902,9 +53148,9 @@ 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: - - *334 - - *335 - - *154 + - *337 + - *338 + - *157 requestBody: required: true content: @@ -52929,7 +53175,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -52953,11 +53199,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: - - *334 - - *335 - - *154 + - *337 + - *338 + - *157 responses: - '200': *368 + '200': *371 '404': *6 x-github: githubCloudOnly: false @@ -52984,12 +53230,12 @@ 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: - - *334 - - *335 - - *154 - - *369 + - *337 + - *338 + - *157 + - *372 responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -53015,9 +53261,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *334 - - *335 - - &387 + - *337 + - *338 + - &390 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. @@ -53025,7 +53271,7 @@ paths: required: false schema: type: string - - &388 + - &391 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -53033,7 +53279,7 @@ paths: required: false schema: type: string - - &389 + - &392 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -53042,7 +53288,7 @@ paths: required: false schema: type: string - - &390 + - &393 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 @@ -53069,7 +53315,7 @@ paths: - pending - *17 - *19 - - &391 + - &394 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)." @@ -53078,7 +53324,7 @@ paths: schema: type: string format: date-time - - &370 + - &373 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -53087,13 +53333,13 @@ paths: schema: type: boolean default: false - - &392 + - &395 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &393 + - &396 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -53116,7 +53362,7 @@ paths: type: integer workflow_runs: type: array - items: &371 + items: &374 title: Workflow Run description: An invocation of a workflow type: object @@ -53211,7 +53457,7 @@ paths: that triggered the run. type: array nullable: true - items: *82 + items: *84 created_at: type: string format: date-time @@ -53264,7 +53510,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &415 + properties: &418 id: type: string description: SHA for the commit @@ -53315,7 +53561,7 @@ paths: - name - email nullable: true - required: &416 + required: &419 - id - tree_id - message @@ -53323,8 +53569,8 @@ paths: - author - committer nullable: true - repository: *153 - head_repository: *153 + repository: *156 + head_repository: *156 head_repository_id: type: integer example: 5 @@ -53362,7 +53608,7 @@ paths: - workflow_url - pull_requests examples: - default: &394 + default: &397 value: total_count: 1 workflow_runs: @@ -53576,7 +53822,7 @@ paths: releases_url: https://api.github.com/repos/octo-org/octo-repo/releases{/id} deployments_url: https://api.github.com/repos/octo-org/octo-repo/deployments headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53598,24 +53844,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *334 - - *335 - - &372 + - *337 + - *338 + - &375 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *370 + - *373 responses: '200': description: Response content: application/json: - schema: *371 + schema: *374 examples: - default: &375 + default: &378 value: id: 30433642 name: Build @@ -53856,9 +54102,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 responses: '204': description: Response @@ -53881,9 +54127,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 responses: '200': description: Response @@ -54002,15 +54248,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54037,13 +54283,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 - *17 - *19 - - *373 - - *53 + - *376 + - *55 responses: '200': description: Response @@ -54059,11 +54305,11 @@ paths: type: integer artifacts: type: array - items: *341 + items: *344 examples: - default: *374 + default: *377 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54085,25 +54331,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *334 - - *335 - - *372 - - &376 + - *337 + - *338 + - *375 + - &379 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *370 + - *373 responses: '200': description: Response content: application/json: - schema: *371 + schema: *374 examples: - default: *375 + default: *378 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54126,10 +54372,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *334 - - *335 - - *372 - - *376 + - *337 + - *338 + - *375 + - *379 - *17 - *19 responses: @@ -54147,9 +54393,9 @@ paths: type: integer jobs: type: array - items: *377 + items: *380 examples: - default: &378 + default: &381 value: total_count: 1 jobs: @@ -54238,7 +54484,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -54262,10 +54508,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *334 - - *335 - - *372 - - *376 + - *337 + - *338 + - *375 + - *379 responses: '302': description: Response @@ -54293,19 +54539,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 responses: '202': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54328,9 +54574,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: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 requestBody: required: true content: @@ -54397,19 +54643,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 responses: '202': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54432,9 +54678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 - 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 @@ -54464,11 +54710,11 @@ paths: type: integer jobs: type: array - items: *377 + items: *380 examples: - default: *378 + default: *381 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54491,9 +54737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 responses: '302': description: Response @@ -54520,14 +54766,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 responses: '204': description: Response '403': *29 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54549,9 +54795,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 responses: '200': description: Response @@ -54611,7 +54857,7 @@ paths: items: type: object properties: - type: &500 + type: &503 type: string description: The type of reviewer. enum: @@ -54621,7 +54867,7 @@ paths: reviewer: anyOf: - *4 - - *190 + - *193 required: - environment - wait_timer @@ -54696,9 +54942,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 requestBody: required: true content: @@ -54745,12 +54991,12 @@ paths: application/json: schema: type: array - items: &495 + items: &498 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &740 + properties: &743 url: type: string format: uri @@ -54833,9 +55079,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - required: &741 + properties: *74 + required: *75 + required: &744 - id - node_id - sha @@ -54851,7 +55097,7 @@ paths: - created_at - updated_at examples: - default: &496 + default: &499 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54907,9 +55153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 requestBody: required: false content: @@ -54930,7 +55176,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54953,9 +55199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 requestBody: required: false content: @@ -54976,7 +55222,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -55008,9 +55254,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *334 - - *335 - - *372 + - *337 + - *338 + - *375 responses: '200': description: Response @@ -55147,8 +55393,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -55166,11 +55412,11 @@ paths: type: integer secrets: type: array - items: *379 + items: *382 examples: - default: *380 + default: *383 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55193,16 +55439,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: *382 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55224,17 +55470,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *334 - - *335 - - *161 + - *337 + - *338 + - *164 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: - default: &513 + default: &516 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -55260,9 +55506,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *334 - - *335 - - *161 + - *337 + - *338 + - *164 requestBody: required: true content: @@ -55293,7 +55539,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -55319,9 +55565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *334 - - *335 - - *161 + - *337 + - *338 + - *164 responses: '204': description: Response @@ -55346,9 +55592,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *334 - - *335 - - *350 + - *337 + - *338 + - *353 - *19 responses: '200': @@ -55365,11 +55611,11 @@ paths: type: integer variables: type: array - items: *383 + items: *386 examples: - default: *384 + default: *387 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55390,8 +55636,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -55418,7 +55664,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -55443,17 +55689,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *334 - - *335 - - *164 + - *337 + - *338 + - *167 responses: '200': description: Response content: application/json: - schema: *383 + schema: *386 examples: - default: &514 + default: &517 value: name: USERNAME value: octocat @@ -55479,9 +55725,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *334 - - *335 - - *164 + - *337 + - *338 + - *167 requestBody: required: true content: @@ -55523,9 +55769,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *334 - - *335 - - *164 + - *337 + - *338 + - *167 responses: '204': description: Response @@ -55550,8 +55796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -55569,7 +55815,7 @@ paths: type: integer workflows: type: array - items: &385 + items: &388 title: Workflow description: A GitHub Actions workflow type: object @@ -55653,7 +55899,7 @@ paths: html_url: https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289 badge_url: https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55676,9 +55922,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *334 - - *335 - - &386 + - *337 + - *338 + - &389 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55693,7 +55939,7 @@ paths: description: Response content: application/json: - schema: *385 + schema: *388 examples: default: value: @@ -55726,9 +55972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *334 - - *335 - - *386 + - *337 + - *338 + - *389 responses: '204': description: Response @@ -55753,9 +55999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *334 - - *335 - - *386 + - *337 + - *338 + - *389 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -55850,9 +56096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *334 - - *335 - - *386 + - *337 + - *338 + - *389 responses: '204': description: Response @@ -55879,19 +56125,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *334 - - *335 - - *386 - - *387 - - *388 + - *337 + - *338 - *389 - *390 - - *17 - - *19 - *391 - - *370 - *392 - *393 + - *17 + - *19 + - *394 + - *373 + - *395 + - *396 responses: '200': description: Response @@ -55907,11 +56153,11 @@ paths: type: integer workflow_runs: type: array - items: *371 + items: *374 examples: - default: *394 + default: *397 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55941,9 +56187,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *334 - - *335 - - *386 + - *337 + - *338 + - *389 responses: '200': description: Response @@ -56004,12 +56250,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *334 - - *335 - - *53 + - *337 + - *338 + - *55 - *17 - - *45 - - *46 + - *47 + - *48 - name: ref description: |- The Git reference for the activities you want to list. @@ -56150,7 +56396,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '422': *7 x-github: githubCloudOnly: false @@ -56169,8 +56415,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -56182,9 +56428,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -56207,8 +56453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *334 - - *335 + - *337 + - *338 - name: assignee in: path required: true @@ -56244,8 +56490,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -56357,11 +56603,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *334 - - *335 + - *337 + - *338 - *17 - - *45 - - *46 + - *47 + - *48 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -56415,7 +56661,7 @@ paths: initiator: type: string examples: - default: *395 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56449,8 +56695,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -56458,7 +56704,7 @@ paths: application/json: schema: type: array - items: &396 + items: &399 title: Autolink reference description: An autolink reference. type: object @@ -56512,8 +56758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -56552,9 +56798,9 @@ paths: description: response content: application/json: - schema: *396 + schema: *399 examples: - default: &397 + default: &400 value: id: 1 key_prefix: TICKET- @@ -56585,9 +56831,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *334 - - *335 - - &398 + - *337 + - *338 + - &401 name: autolink_id description: The unique identifier of the autolink. in: path @@ -56599,9 +56845,9 @@ paths: description: Response content: application/json: - schema: *396 + schema: *399 examples: - default: *397 + default: *400 '404': *6 x-github: githubCloudOnly: false @@ -56621,9 +56867,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *334 - - *335 - - *398 + - *337 + - *338 + - *401 responses: '204': description: Response @@ -56647,8 +56893,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: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response if Dependabot is enabled @@ -56696,8 +56942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -56718,8 +56964,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -56739,8 +56985,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *334 - - *335 + - *337 + - *338 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56778,7 +57024,7 @@ paths: - url protected: type: boolean - protection: &400 + protection: &403 title: Branch Protection description: Branch Protection type: object @@ -56820,7 +57066,7 @@ paths: required: - contexts - checks - enforce_admins: &403 + enforce_admins: &406 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56835,7 +57081,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &405 + required_pull_request_reviews: &408 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56856,7 +57102,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *190 + items: *193 apps: description: The list of apps with review dismissal access. @@ -56885,7 +57131,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *190 + items: *193 apps: description: The list of apps allowed to bypass pull request requirements. @@ -56911,7 +57157,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &402 + restrictions: &405 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56974,7 +57220,7 @@ paths: type: string teams: type: array - items: *190 + items: *193 apps: type: array items: @@ -57170,7 +57416,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -57188,9 +57434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *334 - - *335 - - &401 + - *337 + - *338 + - &404 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). @@ -57204,14 +57450,14 @@ paths: description: Response content: application/json: - schema: &411 + schema: &414 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &468 + commit: &471 title: Commit description: Commit type: object @@ -57245,7 +57491,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &399 + properties: &402 name: type: string example: '"Chris Wanstrath"' @@ -57261,7 +57507,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *399 + properties: *402 nullable: true message: type: string @@ -57282,7 +57528,7 @@ paths: required: - sha - url - verification: &520 + verification: &523 title: Verification type: object properties: @@ -57316,12 +57562,12 @@ paths: nullable: true oneOf: - *4 - - *162 + - *165 committer: nullable: true oneOf: - *4 - - *162 + - *165 parents: type: array items: @@ -57352,7 +57598,7 @@ paths: type: integer files: type: array - items: &481 + items: &484 title: Diff Entry description: Diff Entry type: object @@ -57436,7 +57682,7 @@ paths: - self protected: type: boolean - protection: *400 + protection: *403 protection_url: type: string format: uri @@ -57543,7 +57789,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *338 + '301': *341 '404': *6 x-github: githubCloudOnly: false @@ -57565,15 +57811,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response content: application/json: - schema: *400 + schema: *403 examples: default: value: @@ -57767,9 +58013,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: true content: @@ -58024,7 +58270,7 @@ paths: url: type: string format: uri - required_status_checks: &408 + required_status_checks: &411 title: Status Check Policy description: Status Check Policy type: object @@ -58100,7 +58346,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 apps: type: array items: *5 @@ -58118,7 +58364,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 apps: type: array items: *5 @@ -58176,7 +58422,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *402 + restrictions: *405 required_conversation_resolution: type: object properties: @@ -58288,9 +58534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '204': description: Response @@ -58315,17 +58561,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: &404 + default: &407 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -58347,17 +58593,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: *404 + default: *407 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58376,9 +58622,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '204': description: Response @@ -58403,17 +58649,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: &406 + default: &409 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -58509,9 +58755,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: false content: @@ -58609,9 +58855,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - default: *406 + default: *409 '422': *15 x-github: githubCloudOnly: false @@ -58632,9 +58878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '204': description: Response @@ -58661,17 +58907,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: &407 + default: &410 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58694,17 +58940,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: *407 + default: *410 '404': *6 x-github: githubCloudOnly: false @@ -58724,9 +58970,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '204': description: Response @@ -58751,17 +58997,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response content: application/json: - schema: *408 + schema: *411 examples: - default: &409 + default: &412 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58787,9 +59033,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: false content: @@ -58841,9 +59087,9 @@ paths: description: Response content: application/json: - schema: *408 + schema: *411 examples: - default: *409 + default: *412 '404': *6 '422': *15 x-github: @@ -58865,9 +59111,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '204': description: Response @@ -58891,9 +59137,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response @@ -58927,9 +59173,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: false content: @@ -58996,9 +59242,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: false content: @@ -59062,9 +59308,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: content: application/json: @@ -59130,15 +59376,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response content: application/json: - schema: *402 + schema: *405 examples: default: value: @@ -59229,9 +59475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '204': description: Response @@ -59254,9 +59500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response @@ -59266,7 +59512,7 @@ paths: type: array items: *5 examples: - default: &410 + default: &413 value: - id: 1 slug: octoapp @@ -59323,9 +59569,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: true content: @@ -59359,7 +59605,7 @@ paths: type: array items: *5 examples: - default: *410 + default: *413 '422': *15 x-github: githubCloudOnly: false @@ -59380,9 +59626,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: true content: @@ -59416,7 +59662,7 @@ paths: type: array items: *5 examples: - default: *410 + default: *413 '422': *15 x-github: githubCloudOnly: false @@ -59437,9 +59683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: true content: @@ -59473,7 +59719,7 @@ paths: type: array items: *5 examples: - default: *410 + default: *413 '422': *15 x-github: githubCloudOnly: false @@ -59495,9 +59741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response @@ -59505,9 +59751,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *250 + default: *253 '404': *6 x-github: githubCloudOnly: false @@ -59527,9 +59773,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: false content: @@ -59565,9 +59811,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *250 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -59588,9 +59834,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: false content: @@ -59626,9 +59872,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *250 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -59649,9 +59895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: content: application/json: @@ -59686,9 +59932,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *250 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -59710,9 +59956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 responses: '200': description: Response @@ -59722,7 +59968,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '404': *6 x-github: githubCloudOnly: false @@ -59746,9 +59992,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: true content: @@ -59781,7 +60027,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -59806,9 +60052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: true content: @@ -59841,7 +60087,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -59866,9 +60112,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: true content: @@ -59901,7 +60147,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -59928,9 +60174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 requestBody: required: true content: @@ -59952,7 +60198,7 @@ paths: description: Response content: application/json: - schema: *411 + schema: *414 examples: default: value: @@ -60068,8 +60314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -60348,7 +60594,7 @@ paths: description: Response content: application/json: - schema: &412 + schema: &415 title: CheckRun description: A check performed on the code of a given code change type: object @@ -60459,16 +60705,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *82 - deployment: &733 + items: *84 + deployment: &736 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -60535,8 +60781,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -60748,9 +60994,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *334 - - *335 - - &413 + - *337 + - *338 + - &416 name: check_run_id description: The unique identifier of the check run. in: path @@ -60762,9 +61008,9 @@ paths: description: Response content: application/json: - schema: *412 + schema: *415 examples: - default: &414 + default: &417 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60864,9 +61110,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *334 - - *335 - - *413 + - *337 + - *338 + - *416 requestBody: required: true content: @@ -61106,9 +61352,9 @@ paths: description: Response content: application/json: - schema: *412 + schema: *415 examples: - default: *414 + default: *417 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61128,9 +61374,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *334 - - *335 - - *413 + - *337 + - *338 + - *416 - *17 - *19 responses: @@ -61205,7 +61451,7 @@ paths: raw_details: Do you mean 'bananas' or 'banana'? blob_href: https://api.github.com/repos/github/rest-api-description/git/blobs/abc headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61225,15 +61471,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *334 - - *335 - - *413 + - *337 + - *338 + - *416 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -61271,8 +61517,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -61294,7 +61540,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &417 + schema: &420 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -61358,7 +61604,7 @@ paths: nullable: true pull_requests: type: array - items: *82 + items: *84 nullable: true app: title: GitHub app @@ -61369,9 +61615,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - repository: *153 + properties: *74 + required: *75 + repository: *156 created_at: type: string format: date-time @@ -61380,12 +61626,12 @@ paths: type: string format: date-time nullable: true - head_commit: &761 + head_commit: &764 title: Simple Commit description: A commit. type: object - properties: *415 - required: *416 + properties: *418 + required: *419 latest_check_runs_count: type: integer check_runs_url: @@ -61413,7 +61659,7 @@ paths: - check_runs_url - pull_requests examples: - default: &418 + default: &421 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61704,9 +61950,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *417 + schema: *420 examples: - default: *418 + default: *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61725,8 +61971,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -61787,7 +62033,7 @@ paths: required: - app_id - setting - repository: *153 + repository: *156 examples: default: value: @@ -62035,9 +62281,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *334 - - *335 - - &419 + - *337 + - *338 + - &422 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -62049,9 +62295,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *420 examples: - default: *418 + default: *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62074,17 +62320,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *334 - - *335 - - *419 - - &474 + - *337 + - *338 + - *422 + - &477 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &475 + - &478 name: status description: Returns check runs with the specified `status`. in: query @@ -62123,9 +62369,9 @@ paths: type: integer check_runs: type: array - items: *412 + items: *415 examples: - default: &476 + default: &479 value: total_count: 1 check_runs: @@ -62207,7 +62453,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62227,15 +62473,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *334 - - *335 - - *419 + - *337 + - *338 + - *422 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -62262,30 +62508,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *334 - - *335 - - *420 - - *421 + - *337 + - *338 + - *423 + - *424 - *19 - *17 - - &438 + - &441 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: *422 - - &439 + schema: *425 + - &442 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *53 - - *45 - - *46 + - *55 + - *47 + - *48 - name: sort description: The property by which to sort the results. in: query @@ -62301,13 +62547,13 @@ paths: be returned. in: query required: false - schema: *423 + schema: *426 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *424 + schema: *427 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -62326,14 +62572,14 @@ paths: items: type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: *425 - state: *180 - fixed_at: *176 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: *428 + state: *183 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -62341,12 +62587,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: *426 - dismissed_comment: *427 - rule: *428 - tool: *429 - most_recent_instance: *430 + dismissed_at: *180 + dismissed_reason: *429 + dismissed_comment: *430 + rule: *431 + tool: *432 + most_recent_instance: *433 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -62472,14 +62718,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &431 + '403': &434 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62499,9 +62745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *334 - - *335 - - &432 + - *337 + - *338 + - &435 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -62509,23 +62755,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *171 + schema: *174 responses: '200': description: Response content: application/json: - schema: &433 + schema: &436 type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: *425 - state: *180 - fixed_at: *176 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: *428 + state: *183 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -62533,9 +62779,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: *426 - dismissed_comment: *427 + dismissed_at: *180 + dismissed_reason: *429 + dismissed_comment: *430 rule: type: object properties: @@ -62589,8 +62835,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *429 - most_recent_instance: *430 + tool: *432 + most_recent_instance: *433 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -62689,9 +62935,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *431 + '403': *434 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62709,9 +62955,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *334 - - *335 - - *432 + - *337 + - *338 + - *435 requestBody: required: true content: @@ -62726,8 +62972,8 @@ paths: enum: - open - dismissed - dismissed_reason: *426 - dismissed_comment: *427 + dismissed_reason: *429 + dismissed_comment: *430 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -62755,7 +63001,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *436 examples: default: value: @@ -62831,14 +63077,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &437 + '403': &440 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62858,15 +63104,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: - - *334 - - *335 - - *432 + - *337 + - *338 + - *435 responses: '200': description: Response content: application/json: - schema: &434 + schema: &437 type: object properties: status: @@ -62892,13 +63138,13 @@ paths: - description - started_at examples: - default: &435 + default: &438 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &436 + '400': &439 description: Bad Request content: application/json: @@ -62909,9 +63155,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *431 + '403': *434 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62934,29 +63180,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: - - *334 - - *335 - - *432 + - *337 + - *338 + - *435 responses: '200': description: OK content: application/json: - schema: *434 + schema: *437 examples: - default: *435 + default: *438 '202': description: Accepted content: application/json: - schema: *434 + schema: *437 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *436 + '400': *439 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62966,7 +63212,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62988,9 +63234,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: - - *334 - - *335 - - *432 + - *337 + - *338 + - *435 requestBody: required: false content: @@ -63035,12 +63281,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *436 - '403': *437 + '400': *439 + '403': *440 '404': *6 '422': description: Unprocessable Entity - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63060,13 +63306,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *334 - - *335 - - *432 + - *337 + - *338 + - *435 - *19 - *17 - - *438 - - *439 + - *441 + - *442 responses: '200': description: Response @@ -63077,10 +63323,10 @@ paths: items: type: object properties: - ref: *422 - analysis_key: *440 - environment: *441 - category: *442 + ref: *425 + analysis_key: *443 + environment: *444 + category: *445 state: type: string description: State of a code scanning alert instance. @@ -63095,7 +63341,7 @@ paths: properties: text: type: string - location: *443 + location: *446 html_url: type: string classifications: @@ -63103,7 +63349,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: *444 + items: *447 examples: default: value: @@ -63140,9 +63386,9 @@ paths: end_column: 50 classifications: - source - '403': *431 + '403': *434 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63174,29 +63420,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *334 - - *335 - - *420 - - *421 + - *337 + - *338 + - *423 + - *424 - *19 - *17 - - *439 + - *442 - 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: *422 + schema: *425 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &445 + schema: &448 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *53 + - *55 - name: sort description: The property by which to sort the results. in: query @@ -63213,23 +63459,23 @@ paths: application/json: schema: type: array - items: &446 + items: &449 type: object properties: - ref: *422 - commit_sha: &454 + ref: *425 + commit_sha: &457 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *440 + analysis_key: *443 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *442 + category: *445 error: type: string example: error reading field xyz @@ -63253,8 +63499,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *445 - tool: *429 + sarif_id: *448 + tool: *432 deletable: type: boolean warning: @@ -63315,9 +63561,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *431 + '403': *434 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63351,8 +63597,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: - - *334 - - *335 + - *337 + - *338 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63365,7 +63611,7 @@ paths: description: Response content: application/json: - schema: *446 + schema: *449 examples: response: summary: application/json response @@ -63419,14 +63665,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *431 + '403': *434 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63506,8 +63752,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: - - *334 - - *335 + - *337 + - *338 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -63560,9 +63806,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *437 + '403': *440 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63582,8 +63828,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -63591,7 +63837,7 @@ paths: application/json: schema: type: array - items: &447 + items: &450 title: CodeQL Database description: A CodeQL database. type: object @@ -63702,9 +63948,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *431 + '403': *434 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63731,8 +63977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 - name: language in: path description: The language of the CodeQL database. @@ -63744,7 +63990,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *450 examples: default: value: @@ -63776,11 +64022,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &483 + '302': &486 description: Found - '403': *431 + '403': *434 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63800,8 +64046,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *334 - - *335 + - *337 + - *338 - name: language in: path description: The language of the CodeQL database. @@ -63811,9 +64057,9 @@ paths: responses: '204': description: Response - '403': *437 + '403': *440 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63839,8 +64085,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -63849,7 +64095,7 @@ paths: type: object additionalProperties: false properties: - language: &448 + language: &451 type: string description: The language targeted by the CodeQL query enum: @@ -63929,7 +64175,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &452 + schema: &455 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63937,9 +64183,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *58 + controller_repo: *60 actor: *4 - query_language: *448 + query_language: *451 query_pack_url: type: string description: The download url for the query pack. @@ -63986,7 +64232,7 @@ paths: items: type: object properties: - repository: &449 + repository: &452 title: Repository Identifier description: Repository Identifier type: object @@ -64022,7 +64268,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &453 + analysis_status: &456 type: string description: The new status of the CodeQL variant analysis repository task. @@ -64054,7 +64300,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &450 + access_mismatch_repos: &453 type: object properties: repository_count: @@ -64068,7 +64314,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: *449 + items: *452 required: - repository_count - repositories @@ -64090,8 +64336,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *450 - over_limit_repos: *450 + no_codeql_db_repos: *453 + over_limit_repos: *453 required: - access_mismatch_repos - not_found_repos @@ -64107,7 +64353,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &451 + value: &454 summary: Default response value: id: 1 @@ -64253,17 +64499,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *451 + value: *454 repository_lists: summary: Response for a successful variant analysis submission - value: *451 + value: *454 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64284,8 +64530,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: - - *334 - - *335 + - *337 + - *338 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -64297,11 +64543,11 @@ paths: description: Response content: application/json: - schema: *452 + schema: *455 examples: - default: *451 + default: *454 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64322,7 +64568,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: - - *334 + - *337 - name: repo in: path description: The name of the controller repository. @@ -64356,8 +64602,8 @@ paths: schema: type: object properties: - repository: *58 - analysis_status: *453 + repository: *60 + analysis_status: *456 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -64461,7 +64707,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64482,8 +64728,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -64585,9 +64831,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *431 + '403': *434 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64606,8 +64852,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -64674,7 +64920,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -64699,7 +64945,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *437 + '403': *440 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64713,7 +64959,7 @@ paths: content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64770,8 +65016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -64779,7 +65025,7 @@ paths: schema: type: object properties: - commit_sha: *454 + commit_sha: *457 ref: type: string description: |- @@ -64837,7 +65083,7 @@ paths: schema: type: object properties: - id: *445 + id: *448 url: type: string description: The REST API URL for checking the status of the upload. @@ -64851,11 +65097,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *437 + '403': *440 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64874,8 +65120,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *334 - - *335 + - *337 + - *338 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64921,10 +65167,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *431 + '403': *434 '404': description: Not Found if the sarif id does not match any upload - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64946,8 +65192,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: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -64971,7 +65217,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *47 + configuration: *49 examples: default: value: @@ -65003,7 +65249,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *184 + '204': *187 '304': *37 '403': *29 '404': *6 @@ -65028,8 +65274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *334 - - *335 + - *337 + - *338 - 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 @@ -65149,8 +65395,8 @@ paths: parameters: - *17 - *19 - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -65166,7 +65412,7 @@ paths: type: integer codespaces: type: array - items: *238 + items: *241 examples: default: value: @@ -65442,7 +65688,7 @@ paths: start_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop recent_folders: [] - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -65464,8 +65710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -65528,22 +65774,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *238 + schema: *241 examples: - default: *455 + default: *458 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *238 + schema: *241 examples: - default: *455 + default: *458 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65567,8 +65813,8 @@ paths: parameters: - *17 - *19 - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -65608,7 +65854,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *113 + '500': *115 '400': *14 '401': *25 '403': *29 @@ -65632,8 +65878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65668,14 +65914,14 @@ paths: type: integer machines: type: array - items: &676 + items: &679 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *456 - required: *457 + properties: *459 + required: *460 examples: - default: &677 + default: &680 value: total_count: 2 machines: @@ -65692,7 +65938,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -65715,8 +65961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *334 - - *335 + - *337 + - *338 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65800,8 +66046,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: - - *334 - - *335 + - *337 + - *338 - 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 @@ -65846,7 +66092,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65867,8 +66113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -65886,7 +66132,7 @@ paths: type: integer secrets: type: array - items: &461 + items: &464 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65906,9 +66152,9 @@ paths: - created_at - updated_at examples: - default: *458 + default: *461 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65929,16 +66175,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: *460 + default: *463 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65958,17 +66204,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *334 - - *335 - - *161 + - *337 + - *338 + - *164 responses: '200': description: Response content: application/json: - schema: *461 + schema: *464 examples: - default: *462 + default: *465 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65988,9 +66234,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *334 - - *335 - - *161 + - *337 + - *338 + - *164 requestBody: required: true content: @@ -66018,7 +66264,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -66042,9 +66288,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *334 - - *335 - - *161 + - *337 + - *338 + - *164 responses: '204': description: Response @@ -66072,8 +66318,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *334 - - *335 + - *337 + - *338 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -66115,7 +66361,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &463 + properties: &466 login: type: string example: octocat @@ -66208,7 +66454,7 @@ paths: user_view_type: type: string example: public - required: &464 + required: &467 - avatar_url - events_url - followers_url @@ -66257,7 +66503,7 @@ paths: admin: false role_name: write headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -66282,9 +66528,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *334 - - *335 - - *63 + - *337 + - *338 + - *65 responses: '204': description: Response if user is a collaborator @@ -66330,9 +66576,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *334 - - *335 - - *63 + - *337 + - *338 + - *65 requestBody: required: false content: @@ -66358,7 +66604,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &533 + schema: &536 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -66369,7 +66615,7 @@ paths: example: 42 type: integer format: int64 - repository: *153 + repository: *156 invitee: title: Simple User description: A GitHub user. @@ -66547,7 +66793,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *122 + schema: *124 '403': *29 x-github: triggersNotification: true @@ -66587,9 +66833,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *334 - - *335 - - *63 + - *337 + - *338 + - *65 responses: '204': description: No Content when collaborator was removed from the repository. @@ -66620,9 +66866,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *334 - - *335 - - *63 + - *337 + - *338 + - *65 responses: '200': description: if user has admin permissions @@ -66642,8 +66888,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *463 - required: *464 + properties: *466 + required: *467 nullable: true required: - permission @@ -66698,8 +66944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -66709,7 +66955,7 @@ paths: application/json: schema: type: array - items: &465 + items: &468 title: Commit Comment description: Commit Comment type: object @@ -66750,8 +66996,8 @@ paths: updated_at: type: string format: date-time - author_association: *74 - reactions: *75 + author_association: *76 + reactions: *77 required: - url - html_url @@ -66767,7 +67013,7 @@ paths: - created_at - updated_at examples: - default: &470 + default: &473 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66801,7 +67047,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66826,17 +67072,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 responses: '200': description: Response content: application/json: - schema: *465 + schema: *468 examples: - default: &471 + default: &474 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66893,9 +67139,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 requestBody: required: true content: @@ -66917,7 +67163,7 @@ paths: description: Response content: application/json: - schema: *465 + schema: *468 examples: default: value: @@ -66968,9 +67214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 responses: '204': description: Response @@ -66991,9 +67237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 - 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 commit comment. @@ -67019,7 +67265,7 @@ paths: application/json: schema: type: array - items: &466 + items: &469 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -67062,7 +67308,7 @@ paths: - content - created_at examples: - default: &537 + default: &540 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -67088,7 +67334,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -67107,9 +67353,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 requestBody: required: true content: @@ -67141,9 +67387,9 @@ paths: description: Reaction exists content: application/json: - schema: *466 + schema: *469 examples: - default: &467 + default: &470 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -67172,9 +67418,9 @@ paths: description: Reaction created content: application/json: - schema: *466 + schema: *469 examples: - default: *467 + default: *470 '422': *15 x-github: githubCloudOnly: false @@ -67196,10 +67442,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *334 - - *335 - - *93 - - &538 + - *337 + - *338 + - *95 + - &541 name: reaction_id description: The unique identifier of the reaction. in: path @@ -67254,8 +67500,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *334 - - *335 + - *337 + - *338 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -67311,9 +67557,9 @@ paths: application/json: schema: type: array - items: *468 + items: *471 examples: - default: &589 + default: &592 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67383,11 +67629,11 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *59 - '500': *113 + Link: *61 + '500': *115 '400': *14 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67407,9 +67653,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *334 - - *335 - - &469 + - *337 + - *338 + - &472 name: commit_sha description: The SHA of the commit. in: path @@ -67456,7 +67702,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67481,9 +67727,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *334 - - *335 - - *469 + - *337 + - *338 + - *472 - *17 - *19 responses: @@ -67493,11 +67739,11 @@ paths: application/json: schema: type: array - items: *465 + items: *468 examples: - default: *470 + default: *473 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67523,9 +67769,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *334 - - *335 - - *469 + - *337 + - *338 + - *472 requestBody: required: true content: @@ -67560,9 +67806,9 @@ paths: description: Response content: application/json: - schema: *465 + schema: *468 examples: - default: *471 + default: *474 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67590,9 +67836,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *334 - - *335 - - *469 + - *337 + - *338 + - *472 - *17 - *19 responses: @@ -67602,9 +67848,9 @@ paths: application/json: schema: type: array - items: *472 + items: *475 examples: - default: &581 + default: &584 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -68083,8 +68329,8 @@ paths: auto_merge: draft: false headers: - Link: *59 - '409': *52 + Link: *61 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68141,11 +68387,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *334 - - *335 + - *337 + - *338 - *19 - *17 - - &473 + - &476 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)" @@ -68160,9 +68406,9 @@ paths: description: Response content: application/json: - schema: *468 + schema: *471 examples: - default: &568 + default: &571 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68248,9 +68494,9 @@ paths: ..... '422': *15 '404': *6 - '500': *113 - '503': *114 - '409': *52 + '500': *115 + '503': *116 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68275,11 +68521,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *334 - - *335 - - *473 - - *474 - - *475 + - *337 + - *338 + - *476 + - *477 + - *478 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -68313,11 +68559,11 @@ paths: type: integer check_runs: type: array - items: *412 + items: *415 examples: - default: *476 + default: *479 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68340,9 +68586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *334 - - *335 - - *473 + - *337 + - *338 + - *476 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -68350,7 +68596,7 @@ paths: schema: type: integer example: 1 - - *474 + - *477 - *17 - *19 responses: @@ -68368,7 +68614,7 @@ paths: type: integer check_suites: type: array - items: *417 + items: *420 examples: default: value: @@ -68543,7 +68789,7 @@ paths: latest_check_runs_count: 1 check_runs_url: https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68568,9 +68814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *334 - - *335 - - *473 + - *337 + - *338 + - *476 - *17 - *19 responses: @@ -68637,7 +68883,7 @@ paths: type: string total_count: type: integer - repository: *153 + repository: *156 commit_url: type: string format: uri @@ -68768,9 +69014,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *334 - - *335 - - *473 + - *337 + - *338 + - *476 - *17 - *19 responses: @@ -68780,7 +69026,7 @@ paths: application/json: schema: type: array - items: &654 + items: &657 title: Status description: The status of a commit. type: object @@ -68860,8 +69106,8 @@ paths: type: User site_admin: false headers: - Link: *59 - '301': *338 + Link: *61 + '301': *341 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68889,8 +69135,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -68919,20 +69165,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &479 + properties: &482 url: type: string format: uri html_url: type: string format: uri - required: &480 + required: &483 - url - html_url nullable: true @@ -68940,32 +69186,32 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true contributing: title: Community Health File type: object - properties: *479 - required: *480 + properties: *482 + required: *483 nullable: true readme: title: Community Health File type: object - properties: *479 - required: *480 + properties: *482 + required: *483 nullable: true issue_template: title: Community Health File type: object - properties: *479 - required: *480 + properties: *482 + required: *483 nullable: true pull_request_template: title: Community Health File type: object - properties: *479 - required: *480 + properties: *482 + required: *483 nullable: true required: - code_of_conduct @@ -69092,8 +69338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *334 - - *335 + - *337 + - *338 - *19 - *17 - name: basehead @@ -69136,8 +69382,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *468 - merge_base_commit: *468 + base_commit: *471 + merge_base_commit: *471 status: type: string enum: @@ -69157,10 +69403,10 @@ paths: example: 6 commits: type: array - items: *468 + items: *471 files: type: array - items: *481 + items: *484 required: - url - html_url @@ -69403,8 +69649,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69446,8 +69692,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *334 - - *335 + - *337 + - *338 - name: path description: path parameter in: path @@ -69607,7 +69853,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &482 + response-if-content-is-a-file-github-object: &485 summary: Response if content is a file value: type: file @@ -69739,7 +69985,7 @@ paths: - size - type - url - - &594 + - &597 title: Content File description: Content File type: object @@ -69940,7 +70186,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *482 + response-if-content-is-a-file: *485 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -70009,7 +70255,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *483 + '302': *486 '304': *37 x-github: githubCloudOnly: false @@ -70062,8 +70308,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *334 - - *335 + - *337 + - *338 - name: path description: path parameter in: path @@ -70156,7 +70402,7 @@ paths: description: Response content: application/json: - schema: &484 + schema: &487 title: File Commit description: File Commit type: object @@ -70308,7 +70554,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *487 examples: example-for-creating-a-file: value: @@ -70362,7 +70608,7 @@ paths: schema: oneOf: - *3 - - &515 + - &518 description: Repository rule violation was detected type: object properties: @@ -70383,7 +70629,7 @@ paths: items: type: object properties: - placeholder_id: &646 + placeholder_id: &649 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -70415,8 +70661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *334 - - *335 + - *337 + - *338 - name: path description: path parameter in: path @@ -70477,7 +70723,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *487 examples: default: value: @@ -70511,8 +70757,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *52 - '503': *114 + '409': *54 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70532,8 +70778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *334 - - *335 + - *337 + - *338 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -70633,7 +70879,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *59 + Link: *61 '204': description: Response if repository is empty '403': *29 @@ -70656,26 +70902,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *334 - - *335 - - *191 - - *192 - - *193 + - *337 + - *338 - *194 + - *195 + - *196 + - *197 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *195 - - *485 - - *196 - - *197 - *198 - - *53 - - *45 - - *46 + - *488 + - *199 + - *200 + - *201 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -70684,11 +70930,11 @@ paths: application/json: schema: type: array - items: &489 + items: &492 type: object description: A Dependabot alert. properties: - number: *171 + number: *174 state: type: string description: The state of the Dependabot alert. @@ -70703,7 +70949,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *54 + package: *56 manifest_path: type: string description: The full path to the dependency manifest file, @@ -70730,13 +70976,13 @@ paths: - unknown - direct - transitive - security_advisory: *486 - security_vulnerability: *57 - url: *174 - html_url: *175 - created_at: *172 - updated_at: *173 - dismissed_at: *177 + security_advisory: *489 + security_vulnerability: *59 + url: *177 + html_url: *178 + created_at: *175 + updated_at: *176 + dismissed_at: *180 dismissed_by: title: Simple User description: A GitHub user. @@ -70760,9 +71006,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *176 - auto_dismissed_at: *487 - dismissal_request: *488 + fixed_at: *179 + auto_dismissed_at: *490 + dismissal_request: *491 assignees: type: array description: The users assigned to this alert. @@ -71017,9 +71263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *334 - - *335 - - &490 + - *337 + - *338 + - &493 name: alert_number in: path description: |- @@ -71028,13 +71274,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *171 + schema: *174 responses: '200': description: Response content: application/json: - schema: *489 + schema: *492 examples: default: value: @@ -71166,9 +71412,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *334 - - *335 - - *490 + - *337 + - *338 + - *493 requestBody: required: true content: @@ -71224,7 +71470,7 @@ paths: description: Response content: application/json: - schema: *489 + schema: *492 examples: default: value: @@ -71331,7 +71577,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *7 x-github: githubCloudOnly: false @@ -71354,8 +71600,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -71373,7 +71619,7 @@ paths: type: integer secrets: type: array - items: &493 + items: &496 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -71404,7 +71650,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71426,16 +71672,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *491 + schema: *494 examples: - default: *492 + default: *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71455,15 +71701,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *334 - - *335 - - *161 + - *337 + - *338 + - *164 responses: '200': description: Response content: application/json: - schema: *493 + schema: *496 examples: default: value: @@ -71489,9 +71735,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *334 - - *335 - - *161 + - *337 + - *338 + - *164 requestBody: required: true content: @@ -71519,7 +71765,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -71543,9 +71789,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *334 - - *335 - - *161 + - *337 + - *338 + - *164 responses: '204': description: Response @@ -71567,8 +71813,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: - - *334 - - *335 + - *337 + - *338 - 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 @@ -71704,7 +71950,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *59 + Link: *61 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -71728,8 +71974,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: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -71945,7 +72191,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *59 + Link: *61 '404': *6 '403': *29 x-github: @@ -71968,8 +72214,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: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -72044,7 +72290,7 @@ paths: - version - url additionalProperties: false - metadata: &494 + metadata: &497 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -72077,7 +72323,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *494 + metadata: *497 resolved: type: object description: A collection of resolved package dependencies. @@ -72090,7 +72336,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *494 + metadata: *497 relationship: type: string description: A notation of whether a dependency is requested @@ -72219,8 +72465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *334 - - *335 + - *337 + - *338 - name: sha description: The SHA recorded at creation time. in: query @@ -72260,11 +72506,11 @@ paths: application/json: schema: type: array - items: *495 + items: *498 examples: - default: *496 + default: *499 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72328,8 +72574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -72410,7 +72656,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *498 examples: simple-example: summary: Simple example @@ -72483,9 +72729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *334 - - *335 - - &497 + - *337 + - *338 + - &500 name: deployment_id description: deployment_id parameter in: path @@ -72497,7 +72743,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *498 examples: default: value: @@ -72562,9 +72808,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *334 - - *335 - - *497 + - *337 + - *338 + - *500 responses: '204': description: Response @@ -72586,9 +72832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *334 - - *335 - - *497 + - *337 + - *338 + - *500 - *17 - *19 responses: @@ -72598,7 +72844,7 @@ paths: application/json: schema: type: array - items: &498 + items: &501 title: Deployment Status description: The status of a deployment. type: object @@ -72689,8 +72935,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -72739,7 +72985,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -72759,9 +73005,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *334 - - *335 - - *497 + - *337 + - *338 + - *500 requestBody: required: true content: @@ -72836,9 +73082,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *501 examples: - default: &499 + default: &502 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72894,9 +73140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *334 - - *335 - - *497 + - *337 + - *338 + - *500 - name: status_id in: path required: true @@ -72907,9 +73153,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *501 examples: - default: *499 + default: *502 '404': *6 x-github: githubCloudOnly: false @@ -72934,8 +73180,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -72992,8 +73238,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -73010,7 +73256,7 @@ paths: type: integer environments: type: array - items: &501 + items: &504 title: Environment description: Details of a deployment environment type: object @@ -73062,7 +73308,7 @@ paths: type: type: string example: wait_timer - wait_timer: &503 + wait_timer: &506 type: integer example: 30 description: The amount of time to delay a job after @@ -73099,11 +73345,11 @@ paths: items: type: object properties: - type: *500 + type: *503 reviewer: anyOf: - *4 - - *190 + - *193 required: - id - node_id @@ -73123,7 +73369,7 @@ paths: - id - node_id - type - deployment_branch_policy: &504 + deployment_branch_policy: &507 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -73239,9 +73485,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *334 - - *335 - - &502 + - *337 + - *338 + - &505 name: environment_name in: path required: true @@ -73254,9 +73500,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: &505 + default: &508 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -73340,9 +73586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *334 - - *335 - - *502 + - *337 + - *338 + - *505 requestBody: required: false content: @@ -73351,7 +73597,7 @@ paths: type: object nullable: true properties: - wait_timer: *503 + wait_timer: *506 prevent_self_review: type: boolean example: false @@ -73368,13 +73614,13 @@ paths: items: type: object properties: - type: *500 + type: *503 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *504 + deployment_branch_policy: *507 additionalProperties: false examples: default: @@ -73394,9 +73640,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *505 + default: *508 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -73420,9 +73666,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *334 - - *335 - - *502 + - *337 + - *338 + - *505 responses: '204': description: Default response @@ -73447,9 +73693,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *334 - - *335 - - *502 + - *337 + - *338 + - *505 - *17 - *19 responses: @@ -73467,7 +73713,7 @@ paths: example: 2 branch_policies: type: array - items: &506 + items: &509 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -73524,9 +73770,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *334 - - *335 - - *502 + - *337 + - *338 + - *505 requestBody: required: true content: @@ -73572,9 +73818,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *509 examples: - example-wildcard: &507 + example-wildcard: &510 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -73616,10 +73862,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *334 - - *335 - - *502 - - &508 + - *337 + - *338 + - *505 + - &511 name: branch_policy_id in: path required: true @@ -73631,9 +73877,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *509 examples: - default: *507 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73652,10 +73898,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *334 - - *335 - - *502 - - *508 + - *337 + - *338 + - *505 + - *511 requestBody: required: true content: @@ -73683,9 +73929,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *509 examples: - default: *507 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73704,10 +73950,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *334 - - *335 - - *502 - - *508 + - *337 + - *338 + - *505 + - *511 responses: '204': description: Response @@ -73732,9 +73978,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *502 - - *335 - - *334 + - *505 + - *338 + - *337 responses: '200': description: List of deployment protection rules @@ -73750,7 +73996,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &509 + items: &512 title: Deployment protection rule description: Deployment protection rule type: object @@ -73769,7 +74015,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &510 + app: &513 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73868,9 +74114,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: - - *502 - - *335 - - *334 + - *505 + - *338 + - *337 requestBody: content: application/json: @@ -73891,9 +74137,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *509 + schema: *512 examples: - default: &511 + default: &514 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73928,9 +74174,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: - - *502 - - *335 - - *334 + - *505 + - *338 + - *337 - *19 - *17 responses: @@ -73949,7 +74195,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *510 + items: *513 examples: default: value: @@ -73984,10 +74230,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *334 - - *335 - - *502 - - &512 + - *337 + - *338 + - *505 + - &515 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73999,9 +74245,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *512 examples: - default: *511 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74022,10 +74268,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *502 - - *335 - - *334 - - *512 + - *505 + - *338 + - *337 + - *515 responses: '204': description: Response @@ -74051,9 +74297,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *334 - - *335 - - *502 + - *337 + - *338 + - *505 - *17 - *19 responses: @@ -74071,11 +74317,11 @@ paths: type: integer secrets: type: array - items: *379 + items: *382 examples: - default: *380 + default: *383 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74098,17 +74344,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *334 - - *335 - - *502 + - *337 + - *338 + - *505 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: *382 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74130,18 +74376,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *334 - - *335 - - *502 - - *161 + - *337 + - *338 + - *505 + - *164 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: - default: *513 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74163,10 +74409,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *334 - - *335 - - *502 - - *161 + - *337 + - *338 + - *505 + - *164 requestBody: required: true content: @@ -74197,7 +74443,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -74223,10 +74469,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *334 - - *335 - - *502 - - *161 + - *337 + - *338 + - *505 + - *164 responses: '204': description: Default response @@ -74251,10 +74497,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *334 - - *335 - - *502 - - *350 + - *337 + - *338 + - *505 + - *353 - *19 responses: '200': @@ -74271,11 +74517,11 @@ paths: type: integer variables: type: array - items: *383 + items: *386 examples: - default: *384 + default: *387 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74296,9 +74542,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *334 - - *335 - - *502 + - *337 + - *338 + - *505 requestBody: required: true content: @@ -74325,7 +74571,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -74350,18 +74596,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *334 - - *335 - - *502 - - *164 + - *337 + - *338 + - *505 + - *167 responses: '200': description: Response content: application/json: - schema: *383 + schema: *386 examples: - default: *514 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74382,10 +74628,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *334 - - *335 - - *164 - - *502 + - *337 + - *338 + - *167 + - *505 requestBody: required: true content: @@ -74427,10 +74673,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *334 - - *335 - - *164 - - *502 + - *337 + - *338 + - *167 + - *505 responses: '204': description: Response @@ -74452,8 +74698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -74463,7 +74709,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: 200-response: value: @@ -74521,8 +74767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *334 - - *335 + - *337 + - *338 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -74544,7 +74790,7 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: default: value: @@ -74657,7 +74903,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *59 + Link: *61 '400': *14 x-github: githubCloudOnly: false @@ -74681,8 +74927,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: false content: @@ -74714,9 +74960,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *340 examples: - default: *339 + default: *342 '400': *14 '422': *15 '403': *29 @@ -74737,8 +74983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -74789,7 +75035,7 @@ paths: schema: type: string '404': *6 - '409': *52 + '409': *54 '403': *29 '422': description: Validation failed @@ -74797,8 +75043,8 @@ paths: application/json: schema: oneOf: - - *122 - - *515 + - *124 + - *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74823,8 +75069,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *334 - - *335 + - *337 + - *338 - name: file_sha in: path required: true @@ -74875,7 +75121,7 @@ paths: '404': *6 '422': *15 '403': *29 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74923,8 +75169,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -75033,7 +75279,7 @@ paths: description: Response content: application/json: - schema: &516 + schema: &519 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -75197,7 +75443,7 @@ paths: type: string '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75247,15 +75493,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *334 - - *335 - - *469 + - *337 + - *338 + - *472 responses: '200': description: Response content: application/json: - schema: *516 + schema: *519 examples: default: value: @@ -75286,7 +75532,7 @@ paths: payload: verified_at: '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75311,9 +75557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *334 - - *335 - - &517 + - *337 + - *338 + - &520 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. @@ -75330,7 +75576,7 @@ paths: application/json: schema: type: array - items: &518 + items: &521 title: Git Reference description: Git references within a repository type: object @@ -75383,8 +75629,8 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *59 - '409': *52 + Link: *61 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75405,17 +75651,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *334 - - *335 - - *517 + - *337 + - *338 + - *520 responses: '200': description: Response content: application/json: - schema: *518 + schema: *521 examples: - default: &519 + default: &522 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -75425,7 +75671,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75444,8 +75690,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -75474,16 +75720,16 @@ paths: description: Response content: application/json: - schema: *518 + schema: *521 examples: - default: *519 + default: *522 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75502,9 +75748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *334 - - *335 - - *517 + - *337 + - *338 + - *520 requestBody: required: true content: @@ -75533,11 +75779,11 @@ paths: description: Response content: application/json: - schema: *518 + schema: *521 examples: - default: *519 + default: *522 '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75553,16 +75799,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *334 - - *335 - - *517 + - *337 + - *338 + - *520 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75610,8 +75856,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -75678,7 +75924,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &524 title: Git Tag description: Metadata for a Git tag type: object @@ -75729,7 +75975,7 @@ paths: - sha - type - url - verification: *520 + verification: *523 required: - sha - url @@ -75739,7 +75985,7 @@ paths: - tag - message examples: - default: &522 + default: &525 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75766,7 +76012,7 @@ paths: schema: type: string '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75812,8 +76058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *334 - - *335 + - *337 + - *338 - name: tag_sha in: path required: true @@ -75824,11 +76070,11 @@ paths: description: Response content: application/json: - schema: *521 + schema: *524 examples: - default: *522 + default: *525 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75850,8 +76096,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -75924,7 +76170,7 @@ paths: description: Response content: application/json: - schema: &523 + schema: &526 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75997,7 +76243,7 @@ paths: '422': *15 '404': *6 '403': *29 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76020,8 +76266,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *334 - - *335 + - *337 + - *338 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -76044,7 +76290,7 @@ paths: description: Response content: application/json: - schema: *523 + schema: *526 examples: default-response: summary: Default response @@ -76085,7 +76331,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76103,8 +76349,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -76114,7 +76360,7 @@ paths: application/json: schema: type: array - items: &524 + items: &527 title: Webhook description: Webhooks for repositories. type: object @@ -76168,7 +76414,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &770 + last_response: &773 title: Hook Response type: object properties: @@ -76223,7 +76469,7 @@ paths: status: unused message: headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -76242,8 +76488,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: false content: @@ -76295,9 +76541,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: &525 + default: &528 value: type: Repository id: 12345678 @@ -76345,17 +76591,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *334 - - *335 - - *207 + - *337 + - *338 + - *210 responses: '200': description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: *525 + default: *528 '404': *6 x-github: githubCloudOnly: false @@ -76375,9 +76621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *334 - - *335 - - *207 + - *337 + - *338 + - *210 requestBody: required: true content: @@ -76422,9 +76668,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: *525 + default: *528 '422': *15 '404': *6 x-github: @@ -76445,9 +76691,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *334 - - *335 - - *207 + - *337 + - *338 + - *210 responses: '204': description: Response @@ -76471,9 +76717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *334 - - *335 - - *207 + - *337 + - *338 + - *210 responses: '200': description: Response @@ -76500,9 +76746,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *334 - - *335 - - *207 + - *337 + - *338 + - *210 requestBody: required: false content: @@ -76546,11 +76792,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *334 - - *335 - - *207 + - *337 + - *338 + - *210 - *17 - - *208 + - *211 responses: '200': description: Response @@ -76558,9 +76804,9 @@ paths: application/json: schema: type: array - items: *209 + items: *212 examples: - default: *210 + default: *213 '400': *14 '422': *15 x-github: @@ -76579,18 +76825,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *334 - - *335 - - *207 + - *337 + - *338 + - *210 - *16 responses: '200': description: Response content: application/json: - schema: *211 + schema: *214 examples: - default: *212 + default: *215 '400': *14 '422': *15 x-github: @@ -76609,9 +76855,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *334 - - *335 - - *207 + - *337 + - *338 + - *210 - *16 responses: '202': *39 @@ -76634,9 +76880,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *334 - - *335 - - *207 + - *337 + - *338 + - *210 responses: '204': description: Response @@ -76661,9 +76907,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *334 - - *335 - - *207 + - *337 + - *338 + - *210 responses: '204': description: Response @@ -76686,8 +76932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response if immutable releases are enabled @@ -76733,11 +76979,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *334 - - *335 + - *337 + - *338 responses: - '204': *184 - '409': *52 + '204': *187 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76754,11 +77000,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *334 - - *335 + - *337 + - *338 responses: - '204': *184 - '409': *52 + '204': *187 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76812,14 +77058,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: &526 + schema: &529 title: Import description: A repository import from an external source. type: object @@ -76918,7 +77164,7 @@ paths: - html_url - authors_url examples: - default: &529 + default: &532 value: vcs: subversion use_lfs: true @@ -76934,7 +77180,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': &527 + '503': &530 description: Unavailable due to service under maintenance. content: application/json: @@ -76963,8 +77209,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -77012,7 +77258,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: default: value: @@ -77037,7 +77283,7 @@ paths: type: string '422': *15 '404': *6 - '503': *527 + '503': *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77065,8 +77311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: false content: @@ -77115,7 +77361,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: example-1: summary: Example 1 @@ -77163,7 +77409,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': *527 + '503': *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77186,12 +77432,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response - '503': *527 + '503': *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77217,9 +77463,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *334 - - *335 - - &698 + - *337 + - *338 + - &701 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -77233,7 +77479,7 @@ paths: application/json: schema: type: array - items: &528 + items: &531 title: Porter Author description: Porter Author type: object @@ -77287,7 +77533,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': *527 + '503': *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77312,8 +77558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *334 - - *335 + - *337 + - *338 - name: author_id in: path required: true @@ -77343,7 +77589,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *531 examples: default: value: @@ -77356,7 +77602,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *527 + '503': *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77380,8 +77626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -77422,7 +77668,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *527 + '503': *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77450,8 +77696,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -77478,11 +77724,11 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: - default: *529 + default: *532 '422': *15 - '503': *527 + '503': *530 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77505,8 +77751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -77514,8 +77760,8 @@ paths: application/json: schema: *22 examples: - default: *530 - '301': *338 + default: *533 + '301': *341 '404': *6 x-github: githubCloudOnly: false @@ -77535,8 +77781,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -77544,12 +77790,12 @@ paths: application/json: schema: anyOf: - - *225 + - *228 - type: object properties: {} additionalProperties: false examples: - default: &532 + default: &535 value: limit: collaborators_only origin: repository @@ -77574,13 +77820,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: application/json: - schema: *531 + schema: *534 examples: default: summary: Example request body @@ -77592,9 +77838,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *532 + default: *535 '409': description: Response x-github: @@ -77616,8 +77862,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -77640,8 +77886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -77651,9 +77897,9 @@ paths: application/json: schema: type: array - items: *533 + items: *536 examples: - default: &691 + default: &694 value: - id: 1 repository: @@ -77767,7 +78013,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77784,9 +78030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *334 - - *335 - - *229 + - *337 + - *338 + - *232 requestBody: required: false content: @@ -77815,7 +78061,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *536 examples: default: value: @@ -77946,9 +78192,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *334 - - *335 - - *229 + - *337 + - *338 + - *232 responses: '204': description: Response @@ -77979,8 +78225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *334 - - *335 + - *337 + - *338 - 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 @@ -78028,7 +78274,7 @@ paths: required: false schema: type: string - - *236 + - *239 - name: sort description: What to sort results by. in: query @@ -78040,8 +78286,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -78051,9 +78297,9 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: &546 + default: &549 value: - id: 1 node_id: MDU6SXNzdWUx @@ -78201,8 +78447,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *59 - '301': *338 + Link: *61 + '301': *341 '422': *15 '404': *6 x-github: @@ -78231,8 +78477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -78314,9 +78560,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: &543 + default: &546 value: id: 1 node_id: MDU6SXNzdWUx @@ -78471,9 +78717,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *114 + '503': *116 '404': *6 - '410': *534 + '410': *537 x-github: triggersNotification: true githubCloudOnly: false @@ -78511,9 +78757,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *334 - - *335 - - *101 + - *337 + - *338 + - *103 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -78523,7 +78769,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -78533,9 +78779,9 @@ paths: application/json: schema: type: array - items: *535 + items: *538 examples: - default: &545 + default: &548 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78566,7 +78812,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '422': *15 '404': *6 x-github: @@ -78593,17 +78839,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 responses: '200': description: Response content: application/json: - schema: *535 + schema: *538 examples: - default: &536 + default: &539 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -78658,9 +78904,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 requestBody: required: true content: @@ -78682,9 +78928,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *538 examples: - default: *536 + default: *539 '422': *15 x-github: githubCloudOnly: false @@ -78702,9 +78948,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 responses: '204': description: Response @@ -78732,15 +78978,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 responses: '200': description: Response content: application/json: - schema: *535 + schema: *538 examples: default: value: @@ -78796,7 +79042,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *534 + '410': *537 '422': *15 x-github: githubCloudOnly: false @@ -78813,17 +79059,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *534 - '503': *114 + '410': *537 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78840,9 +79086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 - 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 comment. @@ -78868,11 +79114,11 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: *537 + default: *540 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -78891,9 +79137,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 requestBody: required: true content: @@ -78925,16 +79171,16 @@ paths: description: Reaction exists content: application/json: - schema: *466 + schema: *469 examples: - default: *467 + default: *470 '201': description: Reaction created content: application/json: - schema: *466 + schema: *469 examples: - default: *467 + default: *470 '422': *15 x-github: githubCloudOnly: false @@ -78956,10 +79202,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *334 - - *335 - - *93 - - *538 + - *337 + - *338 + - *95 + - *541 responses: '204': description: Response @@ -78979,8 +79225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -78990,7 +79236,7 @@ paths: application/json: schema: type: array - items: &542 + items: &545 title: Issue Event description: Issue Event type: object @@ -79033,9 +79279,9 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *539 - required: *540 - x-github-breaking-changes: *541 + properties: *542 + required: *543 + x-github-breaking-changes: *544 nullable: true label: title: Issue Event Label @@ -79079,7 +79325,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *190 + requested_team: *193 dismissed_review: title: Issue Event Dismissed Review type: object @@ -79144,7 +79390,7 @@ paths: required: - from - to - author_association: *74 + author_association: *76 lock_reason: type: string nullable: true @@ -79157,8 +79403,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -79325,7 +79571,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -79343,8 +79589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *334 - - *335 + - *337 + - *338 - name: event_id in: path required: true @@ -79355,7 +79601,7 @@ paths: description: Response content: application/json: - schema: *542 + schema: *545 examples: default: value: @@ -79548,7 +79794,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *534 + '410': *537 '403': *29 x-github: githubCloudOnly: false @@ -79582,9 +79828,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *334 - - *335 - - &544 + - *337 + - *338 + - &547 name: issue_number description: The number that identifies the issue. in: path @@ -79596,11 +79842,11 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: default: summary: Issue - value: *543 + value: *546 pinned_comment: summary: Issue with pinned comment value: @@ -79799,9 +80045,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *338 + '301': *341 '404': *6 - '410': *534 + '410': *537 '304': *37 x-github: githubCloudOnly: false @@ -79826,9 +80072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: false content: @@ -79952,15 +80198,15 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *543 + default: *546 '422': *15 - '503': *114 + '503': *116 '403': *29 - '301': *338 + '301': *341 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79988,9 +80234,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: false content: @@ -80016,9 +80262,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *543 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80034,9 +80280,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: content: application/json: @@ -80061,9 +80307,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *543 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80085,9 +80331,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: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 - name: assignee in: path required: true @@ -80127,10 +80373,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *334 - - *335 - - *544 - - *84 + - *337 + - *338 + - *547 + - *86 - *17 - *19 responses: @@ -80140,13 +80386,13 @@ paths: application/json: schema: type: array - items: *535 + items: *538 examples: - default: *545 + default: *548 headers: - Link: *59 + Link: *61 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80175,9 +80421,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: true content: @@ -80199,16 +80445,16 @@ paths: description: Response content: application/json: - schema: *535 + schema: *538 examples: - default: *536 + default: *539 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *534 + '410': *537 '422': *15 '404': *6 x-github: @@ -80236,9 +80482,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 - *17 - *19 responses: @@ -80248,14 +80494,14 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *546 + default: *549 headers: - Link: *59 - '301': *338 + Link: *61 + '301': *341 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80283,9 +80529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: true content: @@ -80307,17 +80553,17 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *543 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *338 + '301': *341 '403': *29 - '410': *534 + '410': *537 '422': *15 '404': *6 x-github: @@ -80348,9 +80594,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -80362,15 +80608,15 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *543 - '301': *338 + default: *546 + '301': *341 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *534 + '410': *537 x-github: triggersNotification: true githubCloudOnly: false @@ -80396,9 +80642,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 - *17 - *19 responses: @@ -80408,14 +80654,14 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *546 + default: *549 headers: - Link: *59 - '301': *338 + Link: *61 + '301': *341 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80432,9 +80678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 - *17 - *19 responses: @@ -80448,7 +80694,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &549 + - &552 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -80479,8 +80725,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 label: type: object properties: @@ -80502,7 +80748,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &550 + - &553 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -80533,8 +80779,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 label: type: object properties: @@ -80622,8 +80868,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 assigner: *4 required: @@ -80638,7 +80884,7 @@ paths: - performed_via_github_app - assignee - assigner - - &551 + - &554 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -80669,8 +80915,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 milestone: type: object properties: @@ -80689,7 +80935,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &555 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -80720,8 +80966,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 milestone: type: object properties: @@ -80740,7 +80986,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &556 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -80771,8 +81017,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 rename: type: object properties: @@ -80794,7 +81040,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &557 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -80825,10 +81071,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 review_requester: *4 - requested_team: *190 + requested_team: *193 requested_reviewer: *4 required: - review_requester @@ -80841,7 +81087,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &558 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -80872,10 +81118,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 review_requester: *4 - requested_team: *190 + requested_team: *193 requested_reviewer: *4 required: - review_requester @@ -80888,7 +81134,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &559 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80919,8 +81165,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 dismissed_review: type: object properties: @@ -80948,7 +81194,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &560 title: Locked Issue Event description: Locked Issue Event type: object @@ -80979,8 +81225,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 lock_reason: type: string example: '"off-topic"' @@ -80996,7 +81242,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &561 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -81027,8 +81273,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -81062,7 +81308,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &562 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -81093,8 +81339,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -81128,7 +81374,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &563 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -81159,8 +81405,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -81194,7 +81440,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &564 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -81284,8 +81530,8 @@ paths: name: label color: red headers: - Link: *59 - '410': *534 + Link: *61 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81302,9 +81548,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 - *17 - *19 responses: @@ -81314,9 +81560,9 @@ paths: application/json: schema: type: array - items: *547 + items: *550 examples: - default: &660 + default: &663 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -81339,10 +81585,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *59 - '301': *338 + Link: *61 + '301': *341 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81359,9 +81605,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 - *17 - *19 responses: @@ -81371,9 +81617,9 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: &548 + default: &551 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -81390,10 +81636,10 @@ paths: color: a2eeef default: false headers: - Link: *59 - '301': *338 + Link: *61 + '301': *341 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81409,9 +81655,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: false content: @@ -81454,12 +81700,12 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *548 - '301': *338 + default: *551 + '301': *341 '404': *6 - '410': *534 + '410': *537 '422': *15 x-github: githubCloudOnly: false @@ -81476,9 +81722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: false content: @@ -81538,12 +81784,12 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *548 - '301': *338 + default: *551 + '301': *341 '404': *6 - '410': *534 + '410': *537 '422': *15 x-github: githubCloudOnly: false @@ -81560,15 +81806,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 responses: '204': description: Response - '301': *338 + '301': *341 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81587,9 +81833,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 - name: name in: path required: true @@ -81602,7 +81848,7 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: default: value: @@ -81613,9 +81859,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *338 + '301': *341 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81635,9 +81881,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: false content: @@ -81665,7 +81911,7 @@ paths: '204': description: Response '403': *29 - '410': *534 + '410': *537 '404': *6 '422': *15 x-github: @@ -81683,9 +81929,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 responses: '204': description: Response @@ -81715,20 +81961,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 responses: '200': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *543 - '301': *338 + default: *546 + '301': *341 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81745,9 +81991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *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. @@ -81773,13 +82019,13 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: *537 + default: *540 headers: - Link: *59 + Link: *61 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81797,9 +82043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: true content: @@ -81831,16 +82077,16 @@ paths: description: Response content: application/json: - schema: *466 + schema: *469 examples: - default: *467 + default: *470 '201': description: Response content: application/json: - schema: *466 + schema: *469 examples: - default: *467 + default: *470 '422': *15 x-github: githubCloudOnly: false @@ -81862,10 +82108,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *334 - - *335 - - *544 - - *538 + - *337 + - *338 + - *547 + - *541 responses: '204': description: Response @@ -81894,9 +82140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: true content: @@ -81918,9 +82164,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *543 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -81953,9 +82199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 - *17 - *19 responses: @@ -81965,13 +82211,13 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *546 + default: *549 headers: - Link: *59 + Link: *61 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81999,9 +82245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: true content: @@ -82028,16 +82274,16 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *543 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *534 + '410': *537 '422': *15 '404': *6 x-github: @@ -82057,9 +82303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 requestBody: required: true content: @@ -82090,13 +82336,13 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *543 + default: *546 '403': *29 '404': *6 '422': *7 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -82114,9 +82360,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *334 - - *335 - - *544 + - *337 + - *338 + - *547 - *17 - *19 responses: @@ -82131,9 +82377,6 @@ paths: description: Timeline Event type: object anyOf: - - *549 - - *550 - - *551 - *552 - *553 - *554 @@ -82144,6 +82387,9 @@ paths: - *559 - *560 - *561 + - *562 + - *563 + - *564 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -82186,7 +82432,7 @@ paths: issue_url: type: string format: uri - author_association: *74 + author_association: *76 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -82196,16 +82442,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - reactions: *75 + properties: *74 + required: *75 + reactions: *77 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *562 - required: *563 + properties: *565 + required: *566 nullable: true required: - event @@ -82237,7 +82483,7 @@ paths: properties: type: type: string - issue: *77 + issue: *79 required: - event - created_at @@ -82437,7 +82683,7 @@ paths: type: string body_text: type: string - author_association: *74 + author_association: *76 required: - event - id @@ -82460,7 +82706,7 @@ paths: type: string comments: type: array - items: &583 + items: &586 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -82555,7 +82801,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *74 + author_association: *76 _links: type: object properties: @@ -82639,7 +82885,7 @@ paths: enum: - line - file - reactions: *75 + reactions: *77 body_html: type: string example: '"

comment body

"' @@ -82675,7 +82921,7 @@ paths: type: string comments: type: array - items: *465 + items: *468 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -82706,8 +82952,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 required: - id @@ -82750,8 +82996,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 required: - id @@ -82794,8 +83040,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 state_reason: type: string nullable: true @@ -82962,9 +83208,9 @@ paths: type: User site_admin: true headers: - Link: *59 + Link: *61 '404': *6 - '410': *534 + '410': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82981,8 +83227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -82992,7 +83238,7 @@ paths: application/json: schema: type: array - items: &564 + items: &567 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -83042,7 +83288,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83058,8 +83304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -83095,9 +83341,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *567 examples: - default: &565 + default: &568 value: id: 1 key: ssh-rsa AAA... @@ -83131,9 +83377,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *334 - - *335 - - &566 + - *337 + - *338 + - &569 name: key_id description: The unique identifier of the key. in: path @@ -83145,9 +83391,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *567 examples: - default: *565 + default: *568 '404': *6 x-github: githubCloudOnly: false @@ -83165,9 +83411,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *334 - - *335 - - *566 + - *337 + - *338 + - *569 responses: '204': description: Response @@ -83187,8 +83433,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -83198,11 +83444,11 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *548 + default: *551 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -83221,8 +83467,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -83258,9 +83504,9 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: &567 + default: &570 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83292,8 +83538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *334 - - *335 + - *337 + - *338 - name: name in: path required: true @@ -83304,9 +83550,9 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: *567 + default: *570 '404': *6 x-github: githubCloudOnly: false @@ -83323,8 +83569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *334 - - *335 + - *337 + - *338 - name: name in: path required: true @@ -83363,7 +83609,7 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: default: value: @@ -83389,8 +83635,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *334 - - *335 + - *337 + - *338 - name: name in: path required: true @@ -83416,8 +83662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -83456,9 +83702,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *334 - - *335 - - *438 + - *337 + - *338 + - *441 responses: '200': description: Response @@ -83520,8 +83766,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true required: - _links @@ -83603,8 +83849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -83669,8 +83915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -83704,9 +83950,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *468 + schema: *471 examples: - default: *568 + default: *571 '204': description: Response when already merged '404': @@ -83731,8 +83977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *334 - - *335 + - *337 + - *338 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -83773,12 +84019,12 @@ paths: application/json: schema: type: array - items: &569 + items: &572 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *270 - required: *271 + properties: *273 + required: *274 examples: default: value: @@ -83817,7 +84063,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -83834,8 +84080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -83875,9 +84121,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *572 examples: - default: &570 + default: &573 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83936,9 +84182,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *334 - - *335 - - &571 + - *337 + - *338 + - &574 name: milestone_number description: The number that identifies the milestone. in: path @@ -83950,9 +84196,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *572 examples: - default: *570 + default: *573 '404': *6 x-github: githubCloudOnly: false @@ -83969,9 +84215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *334 - - *335 - - *571 + - *337 + - *338 + - *574 requestBody: required: false content: @@ -84009,9 +84255,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *572 examples: - default: *570 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84027,9 +84273,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *334 - - *335 - - *571 + - *337 + - *338 + - *574 responses: '204': description: Response @@ -84050,9 +84296,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *334 - - *335 - - *571 + - *337 + - *338 + - *574 - *17 - *19 responses: @@ -84062,11 +84308,11 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *548 + default: *551 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84083,12 +84329,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *334 - - *335 - - *572 - - *573 - - *84 - - *574 + - *337 + - *338 + - *575 + - *576 + - *86 + - *577 - *17 - *19 responses: @@ -84098,11 +84344,11 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: *575 + default: *578 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -84124,8 +84370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: false content: @@ -84183,14 +84429,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: &576 + schema: &579 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -84315,7 +84561,7 @@ paths: - custom_404 - public examples: - default: &577 + default: &580 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -84356,8 +84602,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -84411,11 +84657,11 @@ paths: description: Response content: application/json: - schema: *576 + schema: *579 examples: - default: *577 + default: *580 '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84436,8 +84682,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -84515,7 +84761,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84536,14 +84782,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84563,8 +84809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -84574,7 +84820,7 @@ paths: application/json: schema: type: array - items: &578 + items: &581 title: Page Build description: Page Build type: object @@ -84649,7 +84895,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84668,8 +84914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *334 - - *335 + - *337 + - *338 responses: '201': description: Response @@ -84714,16 +84960,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *578 + schema: *581 examples: - default: &579 + default: &582 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -84771,8 +85017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *334 - - *335 + - *337 + - *338 - name: build_id in: path required: true @@ -84783,9 +85029,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *581 examples: - default: *579 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84805,8 +85051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -84911,9 +85157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *334 - - *335 - - &580 + - *337 + - *338 + - &583 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84971,11 +85217,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *334 - - *335 - - *580 + - *337 + - *338 + - *583 responses: - '204': *184 + '204': *187 '404': *6 x-github: githubCloudOnly: false @@ -85000,8 +85246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -85232,7 +85478,7 @@ paths: description: Empty response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -85259,8 +85505,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: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Private vulnerability reporting status @@ -85297,10 +85543,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: - '204': *184 + '204': *187 '422': *14 x-github: githubCloudOnly: false @@ -85319,10 +85565,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: - '204': *184 + '204': *187 '422': *14 x-github: githubCloudOnly: false @@ -85342,8 +85588,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -85351,7 +85597,7 @@ paths: application/json: schema: type: array - items: *285 + items: *288 examples: default: value: @@ -85382,8 +85628,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: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -85395,7 +85641,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *285 + items: *288 required: - properties examples: @@ -85445,8 +85691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *334 - - *335 + - *337 + - *338 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -85506,11 +85752,11 @@ paths: application/json: schema: type: array - items: *472 + items: *475 examples: - default: *581 + default: *584 headers: - Link: *59 + Link: *61 '304': *37 '422': *15 x-github: @@ -85540,8 +85786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -85606,7 +85852,7 @@ paths: description: Response content: application/json: - schema: &585 + schema: &588 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85717,8 +85963,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *270 - required: *271 + properties: *273 + required: *274 nullable: true active_lock_reason: type: string @@ -85761,7 +86007,7 @@ paths: items: *4 requested_teams: type: array - items: *323 + items: *326 head: type: object properties: @@ -85769,7 +86015,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: *4 @@ -85786,7 +86032,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: *4 @@ -85799,14 +86045,14 @@ paths: _links: type: object properties: - comments: *272 - commits: *272 - statuses: *272 - html: *272 - issue: *272 - review_comments: *272 - review_comment: *272 - self: *272 + comments: *275 + commits: *275 + statuses: *275 + html: *275 + issue: *275 + review_comments: *275 + review_comment: *275 + self: *275 required: - comments - commits @@ -85816,8 +86062,8 @@ paths: - review_comments - review_comment - self - author_association: *74 - auto_merge: *582 + author_association: *76 + auto_merge: *585 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -86003,7 +86249,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &586 + default: &589 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -86530,8 +86776,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *334 - - *335 + - *337 + - *338 - name: sort in: query required: false @@ -86550,7 +86796,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -86560,9 +86806,9 @@ paths: application/json: schema: type: array - items: *583 + items: *586 examples: - default: &588 + default: &591 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86614,7 +86860,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86639,17 +86885,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 responses: '200': description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: &584 + default: &587 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -86724,9 +86970,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 requestBody: required: true content: @@ -86748,9 +86994,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86766,9 +87012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 responses: '204': description: Response @@ -86789,9 +87035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 - 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 pull request review comment. @@ -86817,11 +87063,11 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: *537 + default: *540 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -86840,9 +87086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *334 - - *335 - - *93 + - *337 + - *338 + - *95 requestBody: required: true content: @@ -86874,16 +87120,16 @@ paths: description: Reaction exists content: application/json: - schema: *466 + schema: *469 examples: - default: *467 + default: *470 '201': description: Reaction created content: application/json: - schema: *466 + schema: *469 examples: - default: *467 + default: *470 '422': *15 x-github: githubCloudOnly: false @@ -86905,10 +87151,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *334 - - *335 - - *93 - - *538 + - *337 + - *338 + - *95 + - *541 responses: '204': description: Response @@ -86951,9 +87197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *334 - - *335 - - &587 + - *337 + - *338 + - &590 name: pull_number description: The number that identifies the pull request. in: path @@ -86966,9 +87212,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *585 + schema: *588 examples: - default: *586 + default: *589 '304': *37 '404': *6 '406': @@ -86976,8 +87222,8 @@ paths: content: application/json: schema: *3 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87003,9 +87249,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 requestBody: required: false content: @@ -87047,9 +87293,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *588 examples: - default: *586 + default: *589 '422': *15 '403': *29 x-github: @@ -87071,9 +87317,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 requestBody: required: true content: @@ -87133,21 +87379,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *238 + schema: *241 examples: - default: *455 + default: *458 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *238 + schema: *241 examples: - default: *455 + default: *458 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -87173,10 +87419,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *334 - - *335 - - *587 - - *101 + - *337 + - *338 + - *590 + - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -87186,7 +87432,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -87196,11 +87442,11 @@ paths: application/json: schema: type: array - items: *583 + items: *586 examples: - default: *588 + default: *591 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87231,9 +87477,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 requestBody: required: true content: @@ -87338,7 +87584,7 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: example-for-a-multi-line-comment: value: @@ -87426,10 +87672,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *334 - - *335 - - *587 - - *93 + - *337 + - *338 + - *590 + - *95 requestBody: required: true content: @@ -87451,7 +87697,7 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: default: value: @@ -87537,9 +87783,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 - *17 - *19 responses: @@ -87549,11 +87795,11 @@ paths: application/json: schema: type: array - items: *468 + items: *471 examples: - default: *589 + default: *592 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87581,9 +87827,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 - *17 - *19 responses: @@ -87593,7 +87839,7 @@ paths: application/json: schema: type: array - items: *481 + items: *484 examples: default: value: @@ -87609,10 +87855,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *59 + Link: *61 '422': *15 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87631,9 +87877,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 responses: '204': description: Response if pull request has been merged @@ -87656,9 +87902,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 requestBody: required: false content: @@ -87769,9 +88015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 responses: '200': description: Response @@ -87787,7 +88033,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 required: - users - teams @@ -87828,7 +88074,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87846,9 +88092,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 requestBody: required: false content: @@ -87885,7 +88131,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *475 examples: default: value: @@ -88421,9 +88667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 requestBody: required: true content: @@ -88457,7 +88703,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *475 examples: default: value: @@ -88962,9 +89208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 - *17 - *19 responses: @@ -88974,7 +89220,7 @@ paths: application/json: schema: type: array - items: &590 + items: &593 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -89043,7 +89289,7 @@ paths: type: string body_text: type: string - author_association: *74 + author_association: *76 required: - id - node_id @@ -89092,7 +89338,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89125,9 +89371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 requestBody: required: false content: @@ -89213,9 +89459,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *593 examples: - default: &592 + default: &595 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89278,10 +89524,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *334 - - *335 - - *587 - - &591 + - *337 + - *338 + - *590 + - &594 name: review_id description: The unique identifier of the review. in: path @@ -89293,9 +89539,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *593 examples: - default: &593 + default: &596 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -89354,10 +89600,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *334 - - *335 - - *587 - - *591 + - *337 + - *338 + - *590 + - *594 requestBody: required: true content: @@ -89380,7 +89626,7 @@ paths: description: Response content: application/json: - schema: *590 + schema: *593 examples: default: value: @@ -89442,18 +89688,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *334 - - *335 - - *587 - - *591 + - *337 + - *338 + - *590 + - *594 responses: '200': description: Response content: application/json: - schema: *590 + schema: *593 examples: - default: *592 + default: *595 '422': *7 '404': *6 x-github: @@ -89480,10 +89726,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *334 - - *335 - - *587 - - *591 + - *337 + - *338 + - *590 + - *594 - *17 - *19 responses: @@ -89562,13 +89808,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *74 + author_association: *76 _links: type: object properties: - self: *272 - html: *272 - pull_request: *272 + self: *275 + html: *275 + pull_request: *275 required: - self - html @@ -89577,7 +89823,7 @@ paths: type: string body_html: type: string - reactions: *75 + reactions: *77 side: description: The side of the first line of the range for a multi-line comment. @@ -89689,7 +89935,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -89718,10 +89964,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *334 - - *335 - - *587 - - *591 + - *337 + - *338 + - *590 + - *594 requestBody: required: true content: @@ -89749,7 +89995,7 @@ paths: description: Response content: application/json: - schema: *590 + schema: *593 examples: default: value: @@ -89812,10 +90058,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *334 - - *335 - - *587 - - *591 + - *337 + - *338 + - *590 + - *594 requestBody: required: true content: @@ -89850,9 +90096,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *593 examples: - default: *593 + default: *596 '404': *6 '422': *7 '403': *29 @@ -89874,9 +90120,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *334 - - *335 - - *587 + - *337 + - *338 + - *590 requestBody: required: false content: @@ -89939,8 +90185,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *334 - - *335 + - *337 + - *338 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89953,9 +90199,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: &595 + default: &598 value: type: file encoding: base64 @@ -89997,8 +90243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *334 - - *335 + - *337 + - *338 - name: dir description: The alternate path to look for a README file in: path @@ -90018,9 +90264,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *595 + default: *598 '404': *6 '422': *15 x-github: @@ -90042,8 +90288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -90053,7 +90299,7 @@ paths: application/json: schema: type: array - items: *596 + items: *599 examples: default: value: @@ -90127,7 +90373,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -90147,8 +90393,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -90224,9 +90470,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *599 examples: - default: &600 + default: &603 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -90331,9 +90577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *334 - - *335 - - &598 + - *337 + - *338 + - &601 name: asset_id description: The unique identifier of the asset. in: path @@ -90345,9 +90591,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *600 examples: - default: &599 + default: &602 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 @@ -90382,7 +90628,7 @@ paths: type: User site_admin: false '404': *6 - '302': *483 + '302': *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90398,9 +90644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *334 - - *335 - - *598 + - *337 + - *338 + - *601 requestBody: required: false content: @@ -90428,9 +90674,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *600 examples: - default: *599 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90446,9 +90692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *334 - - *335 - - *598 + - *337 + - *338 + - *601 responses: '204': description: Response @@ -90472,8 +90718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -90558,16 +90804,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response content: application/json: - schema: *596 + schema: *599 examples: - default: *600 + default: *603 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90584,8 +90830,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *334 - - *335 + - *337 + - *338 - name: tag description: tag parameter in: path @@ -90598,9 +90844,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *599 examples: - default: *600 + default: *603 '404': *6 x-github: githubCloudOnly: false @@ -90622,9 +90868,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *334 - - *335 - - &601 + - *337 + - *338 + - &604 name: release_id description: The unique identifier of the release. in: path @@ -90638,9 +90884,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: *596 + schema: *599 examples: - default: *600 + default: *603 '401': description: Unauthorized x-github: @@ -90658,9 +90904,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *334 - - *335 - - *601 + - *337 + - *338 + - *604 requestBody: required: false content: @@ -90724,9 +90970,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *599 examples: - default: *600 + default: *603 '404': description: Not Found if the discussion category name is invalid content: @@ -90747,9 +90993,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *334 - - *335 - - *601 + - *337 + - *338 + - *604 responses: '204': description: Response @@ -90769,9 +91015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *334 - - *335 - - *601 + - *337 + - *338 + - *604 - *17 - *19 responses: @@ -90781,7 +91027,7 @@ paths: application/json: schema: type: array - items: *597 + items: *600 examples: default: value: @@ -90818,7 +91064,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90862,9 +91108,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: - - *334 - - *335 - - *601 + - *337 + - *338 + - *604 - name: name in: query required: true @@ -90890,7 +91136,7 @@ paths: description: Response for successful upload content: application/json: - schema: *597 + schema: *600 examples: response-for-successful-upload: value: @@ -90945,9 +91191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *334 - - *335 - - *601 + - *337 + - *338 + - *604 - 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. @@ -90971,11 +91217,11 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: *537 + default: *540 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -90994,9 +91240,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *334 - - *335 - - *601 + - *337 + - *338 + - *604 requestBody: required: true content: @@ -91026,16 +91272,16 @@ paths: description: Reaction exists content: application/json: - schema: *466 + schema: *469 examples: - default: *467 + default: *470 '201': description: Reaction created content: application/json: - schema: *466 + schema: *469 examples: - default: *467 + default: *470 '422': *15 x-github: githubCloudOnly: false @@ -91057,10 +91303,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *334 - - *335 - - *601 - - *538 + - *337 + - *338 + - *604 + - *541 responses: '204': description: Response @@ -91084,9 +91330,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *334 - - *335 - - *401 + - *337 + - *338 + - *404 - *17 - *19 responses: @@ -91102,8 +91348,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *295 - - &602 + - *298 + - &605 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -91122,69 +91368,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *296 - - *602 - - allOf: - - *297 - - *602 - - allOf: - - *298 - - *602 - - allOf: - - *603 - - *602 - allOf: - *299 - - *602 + - *605 - allOf: - *300 - - *602 + - *605 - allOf: - *301 - - *602 + - *605 + - allOf: + - *606 + - *605 - allOf: - *302 - - *602 + - *605 - allOf: - *303 - - *602 + - *605 - allOf: - *304 - - *602 + - *605 - allOf: - *305 - - *602 + - *605 - allOf: - *306 - - *602 + - *605 - allOf: - *307 - - *602 + - *605 - allOf: - *308 - - *602 + - *605 - allOf: - *309 - - *602 + - *605 - allOf: - *310 - - *602 + - *605 - allOf: - *311 - - *602 + - *605 - allOf: - *312 - - *602 + - *605 - allOf: - *313 - - *602 + - *605 - allOf: - *314 - - *602 + - *605 - allOf: - *315 - - *602 + - *605 + - allOf: + - *316 + - *605 + - allOf: + - *317 + - *605 + - allOf: + - *318 + - *605 examples: default: value: @@ -91223,8 +91469,8 @@ paths: category: repos subcategory: rules parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 - name: includes_parents @@ -91235,7 +91481,7 @@ paths: schema: type: boolean default: true - - *604 + - *607 responses: '200': description: Response @@ -91243,7 +91489,7 @@ paths: application/json: schema: type: array - items: *316 + items: *319 examples: default: value: @@ -91274,7 +91520,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -91290,8 +91536,8 @@ paths: category: repos subcategory: rules parameters: - - *334 - - *335 + - *337 + - *338 requestBody: description: Request body required: true @@ -91311,16 +91557,16 @@ paths: - tag - push default: branch - enforcement: *292 + enforcement: *295 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *293 - conditions: *290 + items: *296 + conditions: *293 rules: type: array description: An array of rules within the ruleset. - items: *605 + items: *608 required: - name - enforcement @@ -91351,9 +91597,9 @@ paths: description: Response content: application/json: - schema: *316 + schema: *319 examples: - default: &615 + default: &618 value: id: 42 name: super cool ruleset @@ -91387,7 +91633,7 @@ paths: updated_at: '2023-08-23T16:29:47Z' '404': *6 '422': *15 - '500': *113 + '500': *115 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -91401,12 +91647,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *334 - - *335 - - *606 - - *607 - - *608 + - *337 + - *338 - *609 + - *610 + - *611 + - *612 - *17 - *19 responses: @@ -91414,11 +91660,11 @@ paths: description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: *611 + default: *614 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91437,19 +91683,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *334 - - *335 - - *612 + - *337 + - *338 + - *615 responses: '200': description: Response content: application/json: - schema: *613 + schema: *616 examples: - default: *614 + default: *617 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91475,8 +91721,8 @@ paths: category: repos subcategory: rules parameters: - - *334 - - *335 + - *337 + - *338 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91496,11 +91742,11 @@ paths: description: Response content: application/json: - schema: *316 + schema: *319 examples: - default: *615 + default: *618 '404': *6 - '500': *113 + '500': *115 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -91516,8 +91762,8 @@ paths: category: repos subcategory: rules parameters: - - *334 - - *335 + - *337 + - *338 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91542,16 +91788,16 @@ paths: - branch - tag - push - enforcement: *292 + enforcement: *295 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *293 - conditions: *290 + items: *296 + conditions: *293 rules: description: An array of rules within the ruleset. type: array - items: *605 + items: *608 examples: default: value: @@ -91579,12 +91825,12 @@ paths: description: Response content: application/json: - schema: *316 + schema: *319 examples: - default: *615 + default: *618 '404': *6 '422': *15 - '500': *113 + '500': *115 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -91600,8 +91846,8 @@ paths: category: repos subcategory: rules parameters: - - *334 - - *335 + - *337 + - *338 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91612,7 +91858,7 @@ paths: '204': description: Response '404': *6 - '500': *113 + '500': *115 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -91624,8 +91870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 - name: ruleset_id @@ -91641,11 +91887,11 @@ paths: application/json: schema: type: array - items: *319 + items: *322 examples: - default: *616 + default: *619 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91662,8 +91908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *334 - - *335 + - *337 + - *338 - name: ruleset_id description: The ID of the ruleset. in: path @@ -91681,7 +91927,7 @@ paths: description: Response content: application/json: - schema: *617 + schema: *620 examples: default: value: @@ -91714,7 +91960,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91736,22 +91982,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *334 - - *335 - - *618 - - *619 - - *620 + - *337 + - *338 - *621 - *622 - - *53 - - *19 - - *17 - *623 - *624 - *625 + - *55 + - *19 + - *17 - *626 - *627 - *628 + - *629 + - *630 + - *631 responses: '200': description: Response @@ -91759,11 +92005,11 @@ paths: application/json: schema: type: array - items: &632 + items: &635 type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -91771,15 +92017,15 @@ paths: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *629 - resolution: *630 + state: *632 + resolution: *633 resolved_at: type: string format: date-time @@ -91875,7 +92121,7 @@ paths: pull request. ' - oneOf: *631 + oneOf: *634 nullable: true has_more_locations: type: boolean @@ -92002,7 +92248,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92024,16 +92270,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *334 - - *335 - - *432 - - *628 + - *337 + - *338 + - *435 + - *631 responses: '200': description: Response content: application/json: - schema: *632 + schema: *635 examples: default: value: @@ -92064,7 +92310,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92087,9 +92333,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *334 - - *335 - - *432 + - *337 + - *338 + - *435 requestBody: required: true content: @@ -92097,8 +92343,8 @@ paths: schema: type: object properties: - state: *629 - resolution: *630 + state: *632 + resolution: *633 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -92132,7 +92378,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *635 examples: default: value: @@ -92205,7 +92451,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -92227,9 +92473,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *334 - - *335 - - *432 + - *337 + - *338 + - *435 - *19 - *17 responses: @@ -92240,7 +92486,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &792 + items: &795 type: object properties: type: @@ -92266,9 +92512,6 @@ paths: example: commit details: oneOf: - - *633 - - *634 - - *635 - *636 - *637 - *638 @@ -92279,6 +92522,9 @@ paths: - *643 - *644 - *645 + - *646 + - *647 + - *648 examples: default: value: @@ -92338,11 +92584,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *59 + Link: *61 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92364,8 +92610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -92373,14 +92619,14 @@ paths: schema: type: object properties: - reason: &647 + reason: &650 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *646 + placeholder_id: *649 required: - reason - placeholder_id @@ -92397,7 +92643,7 @@ paths: schema: type: object properties: - reason: *647 + reason: *650 expire_at: type: string format: date-time @@ -92420,7 +92666,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -92443,13 +92689,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *114 + '503': *116 '200': description: Response content: @@ -92459,7 +92705,7 @@ paths: properties: incremental_scans: type: array - items: &648 + items: &651 description: Information on a single scan performed by secret scanning on the repository type: object @@ -92485,15 +92731,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *648 + items: *651 backfill_scans: type: array - items: *648 + items: *651 custom_pattern_backfill_scans: type: array items: allOf: - - *648 + - *651 - type: object properties: pattern_name: @@ -92563,9 +92809,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *334 - - *335 - - *53 + - *337 + - *338 + - *55 - name: sort description: The property to sort the results by. in: query @@ -92577,8 +92823,8 @@ paths: - updated - published default: created - - *45 - - *46 + - *47 + - *48 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -92608,9 +92854,9 @@ paths: application/json: schema: type: array - items: *649 + items: *652 examples: - default: *650 + default: *653 '400': *14 '404': *6 x-github: @@ -92633,8 +92879,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -92707,7 +92953,7 @@ paths: login: type: string description: The username of the user credited. - type: *322 + type: *325 required: - login - type @@ -92794,9 +93040,9 @@ paths: description: Response content: application/json: - schema: *649 + schema: *652 examples: - default: &652 + default: &655 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -93029,8 +93275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -93134,7 +93380,7 @@ paths: description: Response content: application/json: - schema: *649 + schema: *652 examples: default: value: @@ -93281,17 +93527,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *334 - - *335 - - *651 + - *337 + - *338 + - *654 responses: '200': description: Response content: application/json: - schema: *649 + schema: *652 examples: - default: *652 + default: *655 '403': *29 '404': *6 x-github: @@ -93315,9 +93561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *334 - - *335 - - *651 + - *337 + - *338 + - *654 requestBody: required: true content: @@ -93390,7 +93636,7 @@ paths: login: type: string description: The username of the user credited. - type: *322 + type: *325 required: - login - type @@ -93476,17 +93722,17 @@ paths: description: Response content: application/json: - schema: *649 + schema: *652 examples: - default: *652 - add_credit: *652 + default: *655 + add_credit: *655 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *122 + schema: *124 examples: invalid_state_transition: value: @@ -93517,9 +93763,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: - - *334 - - *335 - - *651 + - *337 + - *338 + - *654 responses: '202': *39 '400': *14 @@ -93546,17 +93792,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *334 - - *335 - - *651 + - *337 + - *338 + - *654 responses: '202': description: Response content: application/json: - schema: *337 + schema: *340 examples: - default: *339 + default: *342 '400': *14 '422': *15 '403': *29 @@ -93582,8 +93828,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -93660,7 +93906,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -93682,8 +93928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -93692,7 +93938,7 @@ paths: application/json: schema: type: array - items: &653 + items: &656 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -93705,7 +93951,7 @@ paths: - 1124 - -435 '202': *39 - '204': *184 + '204': *187 '422': description: Repository contains more than 10,000 commits x-github: @@ -93725,8 +93971,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -93775,7 +94021,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93802,8 +94048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -93877,7 +94123,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93899,8 +94145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -94054,8 +94300,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -94065,7 +94311,7 @@ paths: application/json: schema: type: array - items: *653 + items: *656 examples: default: value: @@ -94078,7 +94324,7 @@ paths: - - 0 - 2 - 21 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94098,8 +94344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *334 - - *335 + - *337 + - *338 - name: sha in: path required: true @@ -94153,7 +94399,7 @@ paths: description: Response content: application/json: - schema: *654 + schema: *657 examples: default: value: @@ -94207,8 +94453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -94220,9 +94466,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94240,14 +94486,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &655 + schema: &658 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -94315,8 +94561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: false content: @@ -94342,7 +94588,7 @@ paths: description: Response content: application/json: - schema: *655 + schema: *658 examples: default: value: @@ -94369,8 +94615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -94390,8 +94636,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -94447,7 +94693,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94470,8 +94716,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *334 - - *335 + - *337 + - *338 - name: ref in: path required: true @@ -94507,8 +94753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *334 - - *335 + - *337 + - *338 - *17 - *19 responses: @@ -94518,11 +94764,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *250 + default: *253 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -94540,8 +94786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *334 - - *335 + - *337 + - *338 - *19 - *17 responses: @@ -94549,7 +94795,7 @@ paths: description: Response content: application/json: - schema: &656 + schema: &659 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -94561,7 +94807,7 @@ paths: required: - names examples: - default: &657 + default: &660 value: names: - octocat @@ -94584,8 +94830,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -94616,9 +94862,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *659 examples: - default: *657 + default: *660 '404': *6 '422': *7 x-github: @@ -94639,9 +94885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *334 - - *335 - - &658 + - *337 + - *338 + - &661 name: per description: The time frame to display results for. in: query @@ -94670,7 +94916,7 @@ paths: example: 128 clones: type: array - items: &659 + items: &662 title: Traffic type: object properties: @@ -94757,8 +95003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -94848,8 +95094,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *334 - - *335 + - *337 + - *338 responses: '200': description: Response @@ -94909,9 +95155,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *334 - - *335 - - *658 + - *337 + - *338 + - *661 responses: '200': description: Response @@ -94930,7 +95176,7 @@ paths: example: 3782 views: type: array - items: *659 + items: *662 required: - uniques - count @@ -95007,8 +95253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *334 - - *335 + - *337 + - *338 requestBody: required: true content: @@ -95044,7 +95290,7 @@ paths: description: Response content: application/json: - schema: *153 + schema: *156 examples: default: value: @@ -95282,8 +95528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -95306,8 +95552,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -95329,8 +95575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -95356,8 +95602,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *334 - - *335 + - *337 + - *338 - name: ref in: path required: true @@ -95449,9 +95695,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *340 examples: - default: *339 + default: *342 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -95492,7 +95738,7 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: default: value: @@ -95598,8 +95844,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *142 - - *544 + - *145 + - *547 requestBody: required: true content: @@ -95663,14 +95909,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *547 + items: *550 examples: - default: *660 + default: *663 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -95701,8 +95947,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *142 - - *544 + - *145 + - *547 requestBody: required: true content: @@ -95767,14 +96013,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *547 + items: *550 examples: - default: *660 + default: *663 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -95800,16 +96046,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *142 - - *544 - - *232 + - *145 + - *547 + - *235 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -95923,7 +96169,7 @@ paths: html_url: type: string format: uri - repository: *153 + repository: *156 score: type: number file_size: @@ -95941,7 +96187,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &661 + text_matches: &664 title: Search Result Text Matches type: array items: @@ -96055,7 +96301,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *114 + '503': *116 '422': *15 '403': *29 x-github: @@ -96103,7 +96349,7 @@ paths: enum: - author-date - committer-date - - &662 + - &665 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 @@ -96174,7 +96420,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *399 + properties: *402 nullable: true comment_count: type: integer @@ -96194,7 +96440,7 @@ paths: url: type: string format: uri - verification: *520 + verification: *523 required: - author - committer @@ -96213,7 +96459,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *399 + properties: *402 nullable: true parents: type: array @@ -96226,12 +96472,12 @@ paths: type: string sha: type: string - repository: *153 + repository: *156 score: type: number node_id: type: string - text_matches: *661 + text_matches: *664 required: - sha - node_id @@ -96423,7 +96669,7 @@ paths: - interactions - created - updated - - *662 + - *665 - *17 - *19 - name: advanced_search @@ -96520,11 +96766,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: type: string state_reason: @@ -96541,8 +96787,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *270 - required: *271 + properties: *273 + required: *274 nullable: true comments: type: integer @@ -96556,7 +96802,7 @@ paths: type: string format: date-time nullable: true - text_matches: *661 + text_matches: *664 pull_request: type: object properties: @@ -96589,10 +96835,10 @@ paths: type: string score: type: number - author_association: *74 + author_association: *76 draft: type: boolean - repository: *71 + repository: *73 body_html: type: string body_text: @@ -96600,7 +96846,7 @@ paths: timeline_url: type: string format: uri - type: *233 + type: *236 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -96610,17 +96856,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - reactions: *75 + reactions: *77 required: - assignee - closed_at @@ -96764,7 +97010,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *114 + '503': *116 '422': *15 '304': *37 '403': *29 @@ -96817,7 +97063,7 @@ paths: enum: - created - updated - - *662 + - *665 - *17 - *19 responses: @@ -96861,7 +97107,7 @@ paths: nullable: true score: type: number - text_matches: *661 + text_matches: *664 required: - id - node_id @@ -96946,7 +97192,7 @@ paths: - forks - help-wanted-issues - updated - - *662 + - *665 - *17 - *19 responses: @@ -97176,8 +97422,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true permissions: type: object @@ -97196,7 +97442,7 @@ paths: - admin - pull - push - text_matches: *661 + text_matches: *664 temp_clone_token: type: string allow_merge_commit: @@ -97398,7 +97644,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *114 + '503': *116 '422': *15 '304': *37 x-github: @@ -97496,7 +97742,7 @@ paths: type: string format: uri nullable: true - text_matches: *661 + text_matches: *664 related: type: array nullable: true @@ -97687,7 +97933,7 @@ paths: - followers - repositories - joined - - *662 + - *665 - *17 - *19 responses: @@ -97791,7 +98037,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *661 + text_matches: *664 blog: type: string nullable: true @@ -97850,7 +98096,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *114 + '503': *116 '422': *15 x-github: githubCloudOnly: false @@ -97870,7 +98116,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &665 + - &668 name: team_id description: The unique identifier of the team. in: path @@ -97882,9 +98128,9 @@ paths: description: Response content: application/json: - schema: *330 + schema: *333 examples: - default: *331 + default: *334 '404': *6 x-github: githubCloudOnly: false @@ -97911,7 +98157,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *665 + - *668 requestBody: required: true content: @@ -97974,16 +98220,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *330 + schema: *333 examples: - default: *331 + default: *334 '201': description: Response content: application/json: - schema: *330 + schema: *333 examples: - default: *331 + default: *334 '404': *6 '422': *15 '403': *29 @@ -98011,7 +98257,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *665 + - *668 responses: '204': description: Response @@ -98040,7 +98286,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *665 + - *668 - *17 - *19 responses: @@ -98050,11 +98296,11 @@ paths: application/json: schema: type: array - items: *227 + items: *230 examples: - default: *228 + default: *231 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98078,7 +98324,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *665 + - *668 - name: role description: Filters members returned by their role in the team. in: query @@ -98101,9 +98347,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -98129,8 +98375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *665 - - *63 + - *668 + - *65 responses: '204': description: if user is a member @@ -98166,8 +98412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *665 - - *63 + - *668 + - *65 responses: '204': description: Response @@ -98206,8 +98452,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *665 - - *63 + - *668 + - *65 responses: '204': description: Response @@ -98243,16 +98489,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *665 - - *63 + - *668 + - *65 responses: '200': description: Response content: application/json: - schema: *333 + schema: *336 examples: - response-if-user-is-a-team-maintainer: *666 + response-if-user-is-a-team-maintainer: *669 '404': *6 x-github: githubCloudOnly: false @@ -98285,8 +98531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *665 - - *63 + - *668 + - *65 requestBody: required: false content: @@ -98311,9 +98557,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: - response-if-users-membership-with-team-is-now-pending: *667 + response-if-users-membership-with-team-is-now-pending: *670 '403': description: Forbidden if team synchronization is set up '422': @@ -98347,8 +98593,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *665 - - *63 + - *668 + - *65 responses: '204': description: Response @@ -98375,7 +98621,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *665 + - *668 - *17 - *19 responses: @@ -98385,11 +98631,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *257 + default: *260 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -98417,15 +98663,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *665 - - *334 - - *335 + - *668 + - *337 + - *338 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *668 + schema: *671 examples: alternative-response-with-extra-repository-information: value: @@ -98576,9 +98822,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *665 - - *334 - - *335 + - *668 + - *337 + - *338 requestBody: required: false content: @@ -98628,9 +98874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *665 - - *334 - - *335 + - *668 + - *337 + - *338 responses: '204': description: Response @@ -98655,7 +98901,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *665 + - *668 - *17 - *19 responses: @@ -98665,11 +98911,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - response-if-child-teams-exist: *669 + response-if-child-teams-exist: *672 headers: - Link: *59 + Link: *61 '404': *6 '403': *29 '422': *15 @@ -98700,7 +98946,7 @@ paths: application/json: schema: oneOf: - - &671 + - &674 title: Private User description: Private User type: object @@ -98903,7 +99149,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *670 + - *673 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -99056,7 +99302,7 @@ paths: description: Response content: application/json: - schema: *671 + schema: *674 examples: default: value: @@ -99135,7 +99381,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '304': *37 '404': *6 '403': *29 @@ -99158,7 +99404,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *63 + - *65 responses: '204': description: If the user is blocked @@ -99186,7 +99432,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -99210,7 +99456,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -99259,11 +99505,11 @@ paths: type: integer codespaces: type: array - items: *238 + items: *241 examples: - default: *239 + default: *242 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99400,21 +99646,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *238 + schema: *241 examples: - default: *455 + default: *458 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *238 + schema: *241 examples: - default: *455 + default: *458 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99454,7 +99700,7 @@ paths: type: integer secrets: type: array - items: &672 + items: &675 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -99494,9 +99740,9 @@ paths: - visibility - selected_repositories_url examples: - default: *458 + default: *461 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99564,13 +99810,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 responses: '200': description: Response content: application/json: - schema: *672 + schema: *675 examples: default: value: @@ -99600,7 +99846,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 requestBody: required: true content: @@ -99645,7 +99891,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -99673,7 +99919,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 responses: '204': description: Response @@ -99698,7 +99944,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *161 + - *164 responses: '200': description: Response @@ -99714,13 +99960,13 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *673 + default: *676 '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99741,7 +99987,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *161 + - *164 requestBody: required: true content: @@ -99773,7 +100019,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99795,7 +100041,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *161 + - *164 - name: repository_id in: path required: true @@ -99807,7 +100053,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99828,7 +100074,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *161 + - *164 - name: repository_id in: path required: true @@ -99840,7 +100086,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99860,17 +100106,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *240 + - *243 responses: '200': description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *455 + default: *458 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99894,7 +100140,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *240 + - *243 requestBody: required: false content: @@ -99924,9 +100170,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *455 + default: *458 '401': *25 '403': *29 '404': *6 @@ -99948,11 +100194,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *240 + - *243 responses: '202': *39 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99977,13 +100223,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *240 + - *243 responses: '202': description: Response content: application/json: - schema: &674 + schema: &677 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -100024,7 +100270,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &675 + default: &678 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -100032,7 +100278,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -100056,7 +100302,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *240 + - *243 - name: export_id in: path required: true @@ -100069,9 +100315,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *677 examples: - default: *675 + default: *678 '404': *6 x-github: githubCloudOnly: false @@ -100092,7 +100338,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *240 + - *243 responses: '200': description: Response @@ -100108,11 +100354,11 @@ paths: type: integer machines: type: array - items: *676 + items: *679 examples: - default: *677 + default: *680 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -100139,7 +100385,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *240 + - *243 requestBody: required: true content: @@ -100189,13 +100435,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *337 + repository: *340 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *456 - required: *457 + properties: *459 + required: *460 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -100969,17 +101215,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *240 + - *243 responses: '200': description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *455 + default: *458 '304': *37 - '500': *113 + '500': *115 '400': *14 '401': *25 '402': @@ -100989,7 +101235,7 @@ paths: schema: *3 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101009,16 +101255,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *240 + - *243 responses: '200': description: Response content: application/json: - schema: *238 + schema: *241 examples: - default: *455 - '500': *113 + default: *458 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -101047,9 +101293,9 @@ paths: application/json: schema: type: array - items: *251 + items: *254 examples: - default: &688 + default: &691 value: - id: 197 name: hello_docker @@ -101150,7 +101396,7 @@ paths: application/json: schema: type: array - items: &678 + items: &681 title: Email description: Email type: object @@ -101215,16 +101461,16 @@ paths: application/json: schema: type: array - items: *678 + items: *681 examples: - default: &690 + default: &693 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -101292,7 +101538,7 @@ paths: application/json: schema: type: array - items: *678 + items: *681 examples: default: value: @@ -101402,9 +101648,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -101435,9 +101681,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -101457,7 +101703,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *63 + - *65 responses: '204': description: if the person is followed by the authenticated user @@ -101487,7 +101733,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -101512,7 +101758,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -101548,7 +101794,7 @@ paths: application/json: schema: type: array - items: &679 + items: &682 title: GPG Key description: A unique encryption key type: object @@ -101679,7 +101925,7 @@ paths: - subkeys - revoked examples: - default: &706 + default: &709 value: - id: 3 name: Octocat's GPG Key @@ -101711,7 +101957,7 @@ paths: revoked: false raw_key: string headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -101764,9 +102010,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *682 examples: - default: &680 + default: &683 value: id: 3 name: Octocat's GPG Key @@ -101823,7 +102069,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &681 + - &684 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -101835,9 +102081,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *682 examples: - default: *680 + default: *683 '404': *6 '304': *37 '403': *29 @@ -101860,7 +102106,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *681 + - *684 responses: '204': description: Response @@ -102003,7 +102249,7 @@ paths: suspended_at: suspended_by: headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102051,11 +102297,11 @@ paths: type: array items: allOf: - - *71 + - *73 examples: - default: *145 + default: *148 headers: - Link: *59 + Link: *61 '404': *6 '403': *29 '304': *37 @@ -102078,7 +102324,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *142 + - *145 responses: '204': description: Response @@ -102104,7 +102350,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *142 + - *145 responses: '204': description: Response @@ -102138,12 +102384,12 @@ paths: application/json: schema: anyOf: - - *225 + - *228 - type: object properties: {} additionalProperties: false examples: - default: *226 + default: *229 '204': description: Response when there are no restrictions x-github: @@ -102167,7 +102413,7 @@ paths: required: true content: application/json: - schema: *531 + schema: *534 examples: default: value: @@ -102178,7 +102424,7 @@ paths: description: Response content: application/json: - schema: *225 + schema: *228 examples: default: value: @@ -102259,7 +102505,7 @@ paths: - closed - all default: open - - *236 + - *239 - name: sort description: What to sort results by. in: query @@ -102271,8 +102517,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -102282,11 +102528,11 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *237 + default: *240 headers: - Link: *59 + Link: *61 '404': *6 '304': *37 x-github: @@ -102317,7 +102563,7 @@ paths: application/json: schema: type: array - items: &682 + items: &685 title: Key description: Key type: object @@ -102368,7 +102614,7 @@ paths: verified: false read_only: false headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -102418,9 +102664,9 @@ paths: description: Response content: application/json: - schema: *682 + schema: *685 examples: - default: &683 + default: &686 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -102453,15 +102699,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *566 + - *569 responses: '200': description: Response content: application/json: - schema: *682 + schema: *685 examples: - default: *683 + default: *686 '404': *6 '304': *37 '403': *29 @@ -102484,7 +102730,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *566 + - *569 responses: '204': description: Response @@ -102517,7 +102763,7 @@ paths: application/json: schema: type: array - items: &684 + items: &687 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -102574,7 +102820,7 @@ paths: - id - type - login - plan: *95 + plan: *97 required: - billing_cycle - next_billing_date @@ -102585,7 +102831,7 @@ paths: - account - plan examples: - default: &685 + default: &688 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -102618,7 +102864,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '304': *37 '401': *25 '404': *6 @@ -102647,11 +102893,11 @@ paths: application/json: schema: type: array - items: *684 + items: *687 examples: - default: *685 + default: *688 headers: - Link: *59 + Link: *61 '304': *37 '401': *25 x-github: @@ -102689,7 +102935,7 @@ paths: application/json: schema: type: array - items: *242 + items: *245 examples: default: value: @@ -102772,7 +103018,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102797,13 +103043,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *242 + schema: *245 examples: default: value: @@ -102865,7 +103111,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *67 + - *69 requestBody: required: true content: @@ -102890,7 +103136,7 @@ paths: description: Response content: application/json: - schema: *242 + schema: *245 examples: default: value: @@ -102962,7 +103208,7 @@ paths: application/json: schema: type: array - items: *244 + items: *247 examples: default: value: @@ -103115,7 +103361,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -103215,7 +103461,7 @@ paths: description: Response content: application/json: - schema: *244 + schema: *247 examples: default: value: @@ -103395,7 +103641,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *245 + - *248 - name: exclude in: query required: false @@ -103408,7 +103654,7 @@ paths: description: Response content: application/json: - schema: *244 + schema: *247 examples: default: value: @@ -103602,7 +103848,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *245 + - *248 responses: '302': description: Response @@ -103628,7 +103874,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *245 + - *248 responses: '204': description: Response @@ -103657,8 +103903,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *245 - - *686 + - *248 + - *689 responses: '204': description: Response @@ -103682,7 +103928,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *245 + - *248 - *17 - *19 responses: @@ -103692,11 +103938,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *257 + default: *260 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -103711,7 +103957,7 @@ paths: content: application/json: schema: - items: *58 + items: *60 version: '2026-03-10' - changeset: restrict_repo_fields_in_migration_resource patch: @@ -103747,11 +103993,11 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -103791,7 +104037,7 @@ paths: - docker - nuget - container - - *687 + - *690 - *19 - *17 responses: @@ -103801,10 +104047,10 @@ paths: application/json: schema: type: array - items: *251 + items: *254 examples: - default: *688 - '400': *689 + default: *691 + '400': *692 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103824,16 +104070,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *253 - - *254 + - *256 + - *257 responses: '200': description: Response content: application/json: - schema: *251 + schema: *254 examples: - default: &707 + default: &710 value: id: 40201 name: octo-name @@ -103946,8 +104192,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *253 - - *254 + - *256 + - *257 responses: '204': description: Response @@ -103977,8 +104223,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *253 - - *254 + - *256 + - *257 - name: token description: package token schema: @@ -104010,8 +104256,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: - - *253 - - *254 + - *256 + - *257 - *19 - *17 - name: state @@ -104031,7 +104277,7 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: default: value: @@ -104080,15 +104326,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *253 - - *254 - *256 + - *257 + - *259 responses: '200': description: Response content: application/json: - schema: *255 + schema: *258 examples: default: value: @@ -104124,9 +104370,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *253 - - *254 - *256 + - *257 + - *259 responses: '204': description: Response @@ -104156,9 +104402,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *253 - - *254 - *256 + - *257 + - *259 responses: '204': description: Response @@ -104195,11 +104441,11 @@ paths: application/json: schema: type: array - items: *678 + items: *681 examples: - default: *690 + default: *693 headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104308,9 +104554,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: &697 + default: &700 summary: Default response value: - id: 1296269 @@ -104431,7 +104677,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '403': *29 @@ -104614,9 +104860,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *340 examples: - default: *339 + default: *342 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -104660,11 +104906,11 @@ paths: application/json: schema: type: array - items: *533 + items: *536 examples: - default: *691 + default: *694 headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104685,12 +104931,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *229 + - *232 responses: '204': description: Response '403': *29 - '409': *52 + '409': *54 '404': *6 '304': *37 x-github: @@ -104714,11 +104960,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *229 + - *232 responses: '204': description: Response - '409': *52 + '409': *54 '304': *37 '404': *6 '403': *29 @@ -104747,7 +104993,7 @@ paths: application/json: schema: type: array - items: &692 + items: &695 title: Social account description: Social media account type: object @@ -104762,12 +105008,12 @@ paths: - provider - url examples: - default: &693 + default: &696 value: - provider: twitter url: https://twitter.com/github headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104824,9 +105070,9 @@ paths: application/json: schema: type: array - items: *692 + items: *695 examples: - default: *693 + default: *696 '422': *15 '304': *37 '404': *6 @@ -104913,7 +105159,7 @@ paths: application/json: schema: type: array - items: &694 + items: &697 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -104933,7 +105179,7 @@ paths: - title - created_at examples: - default: &725 + default: &728 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104944,7 +105190,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104997,9 +105243,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: &695 + default: &698 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -105029,7 +105275,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: - - &696 + - &699 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -105041,9 +105287,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *695 + default: *698 '404': *6 '304': *37 '403': *29 @@ -105066,7 +105312,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: - - *696 + - *699 responses: '204': description: Response @@ -105095,7 +105341,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &726 + - &729 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 @@ -105108,7 +105354,7 @@ paths: - created - updated default: created - - *53 + - *55 - *17 - *19 responses: @@ -105118,13 +105364,13 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default-response: *697 + default-response: *700 application/vnd.github.v3.star+json: schema: type: array - items: &727 + items: &730 title: Starred Repository description: Starred Repository type: object @@ -105132,7 +105378,7 @@ paths: starred_at: type: string format: date-time - repo: *71 + repo: *73 required: - starred_at - repo @@ -105260,7 +105506,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -105280,8 +105526,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: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response if this repository is starred by you @@ -105309,8 +105555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -105334,8 +105580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *334 - - *335 + - *337 + - *338 responses: '204': description: Response @@ -105368,11 +105614,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *257 + default: *260 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -105407,7 +105653,7 @@ paths: application/json: schema: type: array - items: *330 + items: *333 examples: default: value: @@ -105458,7 +105704,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -105485,7 +105731,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *97 + - *99 responses: '200': description: Response @@ -105493,10 +105739,10 @@ paths: application/json: schema: oneOf: - - *671 - - *670 + - *674 + - *673 examples: - default-response: &701 + default-response: &704 summary: Default response value: login: octocat @@ -105531,7 +105777,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &702 + response-with-git-hub-plan-information: &705 summary: Response with GitHub plan information value: login: octocat @@ -105588,14 +105834,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &699 + - &702 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *269 + - *272 requestBody: required: true description: Details of the draft item to create in the project. @@ -105629,9 +105875,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *278 examples: - draft_issue: *276 + draft_issue: *279 '304': *37 '403': *29 '401': *25 @@ -105654,7 +105900,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *698 + - *701 - *17 responses: '200': @@ -105665,7 +105911,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: Link: example: ; rel="next" @@ -105689,8 +105935,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *699 - - *269 + - *702 + - *272 requestBody: required: true content: @@ -105761,17 +106007,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *700 + schema: *703 examples: table_view: summary: Response for creating a table view - value: *280 + value: *283 board_view: summary: Response for creating a board view with filter - value: *280 + value: *283 roadmap_view: summary: Response for creating a roadmap view - value: *280 + value: *283 '304': *37 '403': *29 '401': *25 @@ -105805,7 +106051,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *63 + - *65 responses: '200': description: Response @@ -105813,11 +106059,11 @@ paths: application/json: schema: oneOf: - - *671 - - *670 + - *674 + - *673 examples: - default-response: *701 - response-with-git-hub-plan-information: *702 + default-response: *704 + response-with-git-hub-plan-information: *705 '404': *6 x-github: githubCloudOnly: false @@ -105841,9 +106087,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *45 - - *46 - - *63 + - *47 + - *48 + - *65 requestBody: required: true content: @@ -105867,8 +106113,8 @@ paths: required: - subject_digests examples: - default: *703 - withPredicateType: *704 + default: *706 + withPredicateType: *707 responses: '200': description: Response @@ -105921,7 +106167,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *705 + default: *708 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105954,7 +106200,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *63 + - *65 requestBody: required: true content: @@ -106019,7 +106265,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *63 + - *65 - name: subject_digest description: Subject Digest in: path @@ -106050,7 +106296,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *63 + - *65 - name: attestation_id description: Attestation ID in: path @@ -106086,9 +106332,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations parameters: - *17 - - *45 - - *46 - - *63 + - *47 + - *48 + - *65 - name: subject_digest description: Subject Digest in: path @@ -106141,12 +106387,12 @@ paths: initiator: type: string examples: - default: *395 + default: *398 '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -106186,7 +106432,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *63 + - *65 responses: '200': description: Response @@ -106194,9 +106440,9 @@ paths: application/json: schema: type: array - items: *251 + items: *254 examples: - default: *688 + default: *691 '403': *29 '401': *25 x-github: @@ -106219,7 +106465,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106229,7 +106475,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -106291,8 +106537,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *63 - - *67 + - *65 + - *69 - *17 - *19 responses: @@ -106302,7 +106548,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -106379,7 +106625,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106389,7 +106635,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -106447,7 +106693,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106459,9 +106705,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106478,7 +106724,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106490,9 +106736,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106509,7 +106755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *63 + - *65 - name: target_user in: path required: true @@ -106536,8 +106782,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *63 - - *84 + - *65 + - *86 - *17 - *19 responses: @@ -106547,11 +106793,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -106570,7 +106816,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106580,11 +106826,11 @@ paths: application/json: schema: type: array - items: *679 + items: *682 examples: - default: *706 + default: *709 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106606,7 +106852,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *63 + - *65 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -106678,7 +106924,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *63 + - *65 responses: '200': description: Response @@ -106686,7 +106932,7 @@ paths: application/json: schema: *22 examples: - default: *530 + default: *533 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106704,7 +106950,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106739,7 +106985,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106759,7 +107005,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106769,11 +107015,11 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106810,8 +107056,8 @@ paths: - docker - nuget - container - - *687 - - *63 + - *690 + - *65 - *19 - *17 responses: @@ -106821,12 +107067,12 @@ paths: application/json: schema: type: array - items: *251 + items: *254 examples: - default: *688 + default: *691 '403': *29 '401': *25 - '400': *689 + '400': *692 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106846,17 +107092,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *253 - - *254 - - *63 + - *256 + - *257 + - *65 responses: '200': description: Response content: application/json: - schema: *251 + schema: *254 examples: - default: *707 + default: *710 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106877,9 +107123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *253 - - *254 - - *63 + - *256 + - *257 + - *65 responses: '204': description: Response @@ -106911,9 +107157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *253 - - *254 - - *63 + - *256 + - *257 + - *65 - name: token description: package token schema: @@ -106945,9 +107191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *253 - - *254 - - *63 + - *256 + - *257 + - *65 responses: '200': description: Response @@ -106955,7 +107201,7 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: default: value: @@ -107013,16 +107259,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *253 - - *254 - *256 - - *63 + - *257 + - *259 + - *65 responses: '200': description: Response content: application/json: - schema: *255 + schema: *258 examples: default: value: @@ -107057,10 +107303,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *253 - - *254 - - *63 - *256 + - *257 + - *65 + - *259 responses: '204': description: Response @@ -107092,10 +107338,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *253 - - *254 - - *63 - *256 + - *257 + - *65 + - *259 responses: '204': description: Response @@ -107119,15 +107365,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *63 + - *65 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -107136,11 +107382,11 @@ paths: application/json: schema: type: array - items: *267 + items: *270 examples: - default: *268 + default: *271 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -107160,18 +107406,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *269 - - *63 + - *272 + - *65 responses: '200': description: Response content: application/json: - schema: *267 + schema: *270 examples: - default: *268 + default: *271 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -107191,11 +107437,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *269 - - *63 + - *272 + - *65 - *17 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -107203,11 +107449,11 @@ paths: application/json: schema: type: array - items: *273 + items: *276 examples: - default: *708 + default: *711 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -107226,8 +107472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *63 - - *269 + - *65 + - *272 requestBody: required: true content: @@ -107265,7 +107511,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *709 + items: *712 required: - name - data_type @@ -107281,7 +107527,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *710 + iteration_configuration: *713 required: - name - data_type @@ -107303,20 +107549,20 @@ paths: value: name: Due date data_type: date - single_select_field: *711 - iteration_field: *712 + single_select_field: *714 + iteration_field: *715 responses: '201': description: Response content: application/json: - schema: *273 + schema: *276 examples: - text_field: *713 - number_field: *714 - date_field: *715 - single_select_field: *716 - iteration_field: *717 + text_field: *716 + number_field: *717 + date_field: *718 + single_select_field: *719 + iteration_field: *720 '304': *37 '403': *29 '401': *25 @@ -107337,19 +107583,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *269 - - *718 - - *63 + - *272 + - *721 + - *65 responses: '200': description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *719 + default: *722 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -107370,10 +107616,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *269 - - *63 - - *45 - - *46 + - *272 + - *65 + - *47 + - *48 - *17 - 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) @@ -107403,11 +107649,11 @@ paths: application/json: schema: type: array - items: *277 + items: *280 examples: - default: *278 + default: *281 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -107426,8 +107672,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *63 - - *269 + - *65 + - *272 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -107497,22 +107743,22 @@ paths: description: Response content: application/json: - schema: *275 + schema: *278 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *276 + value: *279 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *276 + value: *279 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *276 + value: *279 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *276 + value: *279 '304': *37 '403': *29 '401': *25 @@ -107532,9 +107778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *269 - - *63 - - *279 + - *272 + - *65 + - *282 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -107554,11 +107800,11 @@ paths: description: Response content: application/json: - schema: *277 + schema: *280 examples: - default: *278 + default: *281 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -107577,9 +107823,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *269 - - *63 - - *279 + - *272 + - *65 + - *282 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -107649,13 +107895,13 @@ paths: description: Response content: application/json: - schema: *277 + schema: *280 examples: - text_field: *278 - number_field: *278 - date_field: *278 - single_select_field: *278 - iteration_field: *278 + text_field: *281 + number_field: *281 + date_field: *281 + single_select_field: *281 + iteration_field: *281 '401': *25 '403': *29 '404': *6 @@ -107675,9 +107921,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *269 - - *63 - - *279 + - *272 + - *65 + - *282 responses: '204': description: Response @@ -107699,9 +107945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *269 - - *63 - - *720 + - *272 + - *65 + - *723 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -107717,8 +107963,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -107727,11 +107973,11 @@ paths: application/json: schema: type: array - items: *277 + items: *280 examples: - default: *278 + default: *281 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -107757,7 +108003,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107767,7 +108013,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -107832,7 +108078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107842,7 +108088,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -107905,7 +108151,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *63 + - *65 - name: type description: Limit results to repositories of the specified type. in: query @@ -107948,11 +108194,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *257 + default: *260 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107972,12 +108218,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *63 - - *116 + - *65 - *118 - - *117 - - *721 + - *120 - *119 + - *724 + - *121 responses: '200': description: Response when getting a billing premium request usage report @@ -108084,8 +108330,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108105,10 +108351,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *63 - - *116 - - *722 - - *117 + - *65 + - *118 + - *725 + - *119 responses: '200': description: Response when getting a billing usage report @@ -108178,8 +108424,8 @@ paths: repositoryName: user/example '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108202,13 +108448,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *63 - - *116 + - *65 - *118 - - *117 - - *723 + - *120 - *119 - - *724 + - *726 + - *121 + - *727 responses: '200': description: Response when getting a billing usage summary @@ -108313,8 +108559,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108332,7 +108578,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -108342,11 +108588,11 @@ paths: application/json: schema: type: array - items: *692 + items: *695 examples: - default: *693 + default: *696 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108364,7 +108610,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -108374,11 +108620,11 @@ paths: application/json: schema: type: array - items: *694 + items: *697 examples: - default: *725 + default: *728 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108400,9 +108646,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *63 - - *726 - - *53 + - *65 + - *729 + - *55 - *17 - *19 responses: @@ -108413,13 +108659,13 @@ paths: schema: anyOf: - type: array - items: *727 + items: *730 - type: array - items: *71 + items: *73 examples: - default-response: *697 + default-response: *700 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108436,7 +108682,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -108446,11 +108692,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *257 + default: *260 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108576,7 +108822,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &728 + enterprise: &731 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -108634,7 +108880,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &729 + installation: &732 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -108653,7 +108899,7 @@ x-webhooks: required: - id - node_id - organization: &730 + organization: &733 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -108713,13 +108959,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &731 + repository: &734 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &763 + properties: &766 id: description: Unique identifier of the repository example: 42 @@ -108739,8 +108985,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true organization: title: Simple User @@ -109419,7 +109665,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &764 + required: &767 - archive_url - assignees_url - blobs_url @@ -109493,7 +109739,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &765 + x-github-breaking-changes: &768 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -109584,10 +109830,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -109663,11 +109909,11 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - rule: &732 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + rule: &735 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) @@ -109890,11 +110136,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - rule: *732 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + rule: *735 sender: *4 required: - action @@ -110077,11 +110323,11 @@ x-webhooks: - everyone required: - from - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - rule: *732 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + rule: *735 sender: *4 required: - action @@ -110165,7 +110411,7 @@ x-webhooks: type: string enum: - completed - check_run: &734 + check_run: &737 title: CheckRun description: A check performed on the code of a given code change type: object @@ -110218,8 +110464,8 @@ x-webhooks: type: string pull_requests: type: array - items: *82 - repository: *153 + items: *84 + repository: *156 status: example: completed type: string @@ -110256,7 +110502,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *733 + deployment: *736 details_url: example: https://example.com type: string @@ -110306,7 +110552,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *82 + items: *84 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -110341,10 +110587,10 @@ x-webhooks: - output - app - pull_requests - installation: *729 - enterprise: *728 - organization: *730 - repository: *731 + installation: *732 + enterprise: *731 + organization: *733 + repository: *734 sender: *4 required: - check_run @@ -110735,11 +110981,11 @@ x-webhooks: type: string enum: - created - check_run: *734 - installation: *729 - enterprise: *728 - organization: *730 - repository: *731 + check_run: *737 + installation: *732 + enterprise: *731 + organization: *733 + repository: *734 sender: *4 required: - check_run @@ -111133,11 +111379,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *734 - installation: *729 - enterprise: *728 - organization: *730 - repository: *731 + check_run: *737 + installation: *732 + enterprise: *731 + organization: *733 + repository: *734 requested_action: description: The action requested by the user. type: object @@ -111540,11 +111786,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *734 - installation: *729 - enterprise: *728 - organization: *730 - repository: *731 + check_run: *737 + installation: *732 + enterprise: *731 + organization: *733 + repository: *734 sender: *4 required: - check_run @@ -112514,10 +112760,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -113206,10 +113452,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -113892,10 +114138,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -114061,7 +114307,7 @@ x-webhooks: required: - login - id - dismissed_comment: *427 + dismissed_comment: *430 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -114206,20 +114452,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &735 + commit_oid: &738 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *728 - installation: *729 - organization: *730 - ref: &736 + enterprise: *731 + installation: *732 + organization: *733 + ref: &739 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *731 + repository: *734 sender: *4 required: - action @@ -114384,7 +114630,7 @@ x-webhooks: required: - login - id - dismissed_comment: *427 + dismissed_comment: *430 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -114614,12 +114860,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *735 - enterprise: *728 - installation: *729 - organization: *730 - ref: *736 - repository: *731 + commit_oid: *738 + enterprise: *731 + installation: *732 + organization: *733 + ref: *739 + repository: *734 sender: *4 required: - action @@ -114714,7 +114960,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *427 + dismissed_comment: *430 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114885,12 +115131,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *735 - enterprise: *728 - installation: *729 - organization: *730 - ref: *736 - repository: *731 + commit_oid: *738 + enterprise: *731 + installation: *732 + organization: *733 + ref: *739 + repository: *734 sender: *4 required: - action @@ -115056,7 +115302,7 @@ x-webhooks: required: - login - id - dismissed_comment: *427 + dismissed_comment: *430 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -115222,12 +115468,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *735 - enterprise: *728 - installation: *729 - organization: *730 - ref: *736 - repository: *731 + commit_oid: *738 + enterprise: *731 + installation: *732 + organization: *733 + ref: *739 + repository: *734 sender: *4 required: - action @@ -115326,7 +115572,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *427 + dismissed_comment: *430 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115501,16 +115747,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *731 + repository: *734 sender: *4 required: - action @@ -115607,7 +115853,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *427 + dismissed_comment: *430 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -115747,12 +115993,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *735 - enterprise: *728 - installation: *729 - organization: *730 - ref: *736 - repository: *731 + commit_oid: *738 + enterprise: *731 + installation: *732 + organization: *733 + ref: *739 + repository: *734 sender: *4 required: - action @@ -115918,7 +116164,7 @@ x-webhooks: required: - login - id - dismissed_comment: *427 + dismissed_comment: *430 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -116063,10 +116309,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -116321,10 +116567,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -116404,18 +116650,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *730 - pusher_type: &737 + organization: *733 + pusher_type: &740 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &738 + ref: &741 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -116425,7 +116671,7 @@ x-webhooks: enum: - tag - branch - repository: *731 + repository: *734 sender: *4 required: - ref @@ -116507,10 +116753,10 @@ x-webhooks: type: string enum: - created - definition: *281 - enterprise: *728 - installation: *729 - organization: *730 + definition: *284 + enterprise: *731 + installation: *732 + organization: *733 sender: *4 required: - action @@ -116595,9 +116841,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 sender: *4 required: - action @@ -116674,10 +116920,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *281 - enterprise: *728 - installation: *729 - organization: *730 + definition: *284 + enterprise: *731 + installation: *732 + organization: *733 sender: *4 required: - action @@ -116754,10 +117000,10 @@ x-webhooks: type: string enum: - updated - definition: *281 - enterprise: *728 - installation: *729 - organization: *730 + definition: *284 + enterprise: *731 + installation: *732 + organization: *733 sender: *4 required: - action @@ -116834,19 +117080,19 @@ x-webhooks: type: string enum: - updated - enterprise: *728 - installation: *729 - repository: *731 - organization: *730 + enterprise: *731 + installation: *732 + repository: *734 + organization: *733 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *285 + items: *288 old_property_values: type: array description: The old custom property values for the repository. - items: *285 + items: *288 required: - action - repository @@ -116922,18 +117168,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *728 - installation: *729 - organization: *730 - pusher_type: *737 - ref: *738 + enterprise: *731 + installation: *732 + organization: *733 + pusher_type: *740 + ref: *741 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *731 + repository: *734 sender: *4 required: - ref @@ -117013,11 +117259,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *489 - installation: *729 - organization: *730 - enterprise: *728 - repository: *731 + alert: *492 + installation: *732 + organization: *733 + enterprise: *731 + repository: *734 sender: *4 required: - action @@ -117097,11 +117343,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *489 - installation: *729 - organization: *730 - enterprise: *728 - repository: *731 + alert: *492 + installation: *732 + organization: *733 + enterprise: *731 + repository: *734 sender: *4 required: - action @@ -117182,11 +117428,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *489 - installation: *729 - organization: *730 - enterprise: *728 - repository: *731 + alert: *492 + installation: *732 + organization: *733 + enterprise: *731 + repository: *734 sender: *4 required: - action @@ -117267,11 +117513,11 @@ x-webhooks: type: string enum: - created - alert: *489 - installation: *729 - organization: *730 - enterprise: *728 - repository: *731 + alert: *492 + installation: *732 + organization: *733 + enterprise: *731 + repository: *734 sender: *4 required: - action @@ -117350,11 +117596,11 @@ x-webhooks: type: string enum: - dismissed - alert: *489 - installation: *729 - organization: *730 - enterprise: *728 - repository: *731 + alert: *492 + installation: *732 + organization: *733 + enterprise: *731 + repository: *734 sender: *4 required: - action @@ -117433,11 +117679,11 @@ x-webhooks: type: string enum: - fixed - alert: *489 - installation: *729 - organization: *730 - enterprise: *728 - repository: *731 + alert: *492 + installation: *732 + organization: *733 + enterprise: *731 + repository: *734 sender: *4 required: - action @@ -117517,11 +117763,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *489 - installation: *729 - organization: *730 - enterprise: *728 - repository: *731 + alert: *492 + installation: *732 + organization: *733 + enterprise: *731 + repository: *734 sender: *4 required: - action @@ -117600,11 +117846,11 @@ x-webhooks: type: string enum: - reopened - alert: *489 - installation: *729 - organization: *730 - enterprise: *728 - repository: *731 + alert: *492 + installation: *732 + organization: *733 + enterprise: *731 + repository: *734 sender: *4 required: - action @@ -117681,9 +117927,9 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - key: &739 + enterprise: *731 + installation: *732 + key: &742 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -117719,8 +117965,8 @@ x-webhooks: - verified - created_at - read_only - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -117797,11 +118043,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - key: *739 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + key: *742 + organization: *733 + repository: *734 sender: *4 required: - action @@ -118357,12 +118603,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - workflow: &745 + workflow: &748 title: Workflow type: object nullable: true @@ -119103,15 +119349,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *740 - required: *741 + properties: *743 + required: *744 nullable: true pull_requests: type: array - items: *585 - repository: *731 - organization: *730 - installation: *729 + items: *588 + repository: *734 + organization: *733 + installation: *732 sender: *4 responses: '200': @@ -119182,7 +119428,7 @@ x-webhooks: type: string enum: - approved - approver: &742 + approver: &745 type: object properties: avatar_url: @@ -119225,11 +119471,11 @@ x-webhooks: type: string comment: type: string - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - reviewers: &743 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + reviewers: &746 type: array items: type: object @@ -119308,7 +119554,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &744 + workflow_job_run: &747 type: object properties: conclusion: @@ -120039,18 +120285,18 @@ x-webhooks: type: string enum: - rejected - approver: *742 + approver: *745 comment: type: string - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - reviewers: *743 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + reviewers: *746 sender: *4 since: type: string - workflow_job_run: *744 + workflow_job_run: *747 workflow_job_runs: type: array items: @@ -120754,13 +121000,13 @@ x-webhooks: type: string enum: - requested - enterprise: *728 + enterprise: *731 environment: type: string - installation: *729 - organization: *730 - repository: *731 - requestor: &750 + installation: *732 + organization: *733 + repository: *734 + requestor: &753 title: User type: object nullable: true @@ -122649,12 +122895,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - workflow: *745 + workflow: *748 workflow_run: title: Deployment Workflow Run type: object @@ -123334,7 +123580,7 @@ x-webhooks: type: string enum: - answered - answer: &748 + answer: &751 type: object properties: author_association: @@ -123491,11 +123737,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -123622,11 +123868,11 @@ x-webhooks: - from required: - category - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -123709,11 +123955,11 @@ x-webhooks: type: string enum: - closed - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -123795,7 +124041,7 @@ x-webhooks: type: string enum: - created - comment: &747 + comment: &750 type: object properties: author_association: @@ -123952,11 +124198,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124039,12 +124285,12 @@ x-webhooks: type: string enum: - deleted - comment: *747 - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + comment: *750 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124139,12 +124385,12 @@ x-webhooks: - from required: - body - comment: *747 - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + comment: *750 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124228,11 +124474,11 @@ x-webhooks: type: string enum: - created - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124314,11 +124560,11 @@ x-webhooks: type: string enum: - deleted - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124418,11 +124664,11 @@ x-webhooks: type: string required: - from - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124504,10 +124750,10 @@ x-webhooks: type: string enum: - labeled - discussion: *746 - enterprise: *728 - installation: *729 - label: &749 + discussion: *749 + enterprise: *731 + installation: *732 + label: &752 title: Label type: object properties: @@ -124539,8 +124785,8 @@ x-webhooks: - color - default - description - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124623,11 +124869,11 @@ x-webhooks: type: string enum: - locked - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124709,11 +124955,11 @@ x-webhooks: type: string enum: - pinned - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124795,11 +125041,11 @@ x-webhooks: type: string enum: - reopened - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124884,16 +125130,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *746 - new_repository: *731 + new_discussion: *749 + new_repository: *734 required: - new_discussion - new_repository - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -124976,10 +125222,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *746 - old_answer: *748 - organization: *730 - repository: *731 + discussion: *749 + old_answer: *751 + organization: *733 + repository: *734 sender: *4 required: - action @@ -125061,12 +125307,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *746 - enterprise: *728 - installation: *729 - label: *749 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + label: *752 + organization: *733 + repository: *734 sender: *4 required: - action @@ -125149,11 +125395,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -125235,11 +125481,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *746 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + discussion: *749 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -125312,7 +125558,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *728 + enterprise: *731 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -125972,9 +126218,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *729 - organization: *730 - repository: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - forkee @@ -126120,9 +126366,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 pages: description: The pages that were updated. type: array @@ -126159,7 +126405,7 @@ x-webhooks: - action - sha - html_url - repository: *731 + repository: *734 sender: *4 required: - pages @@ -126235,10 +126481,10 @@ x-webhooks: type: string enum: - created - enterprise: *728 + enterprise: *731 installation: *22 - organization: *730 - repositories: &751 + organization: *733 + repositories: &754 description: An array of repository objects that the installation can access. type: array @@ -126264,8 +126510,8 @@ x-webhooks: - name - full_name - private - repository: *731 - requester: *750 + repository: *734 + requester: *753 sender: *4 required: - action @@ -126340,11 +126586,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 + enterprise: *731 installation: *22 - organization: *730 - repositories: *751 - repository: *731 + organization: *733 + repositories: *754 + repository: *734 requester: nullable: true sender: *4 @@ -126420,11 +126666,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *728 + enterprise: *731 installation: *22 - organization: *730 - repositories: *751 - repository: *731 + organization: *733 + repositories: *754 + repository: *734 requester: nullable: true sender: *4 @@ -126500,10 +126746,10 @@ x-webhooks: type: string enum: - added - enterprise: *728 + enterprise: *731 installation: *22 - organization: *730 - repositories_added: &752 + organization: *733 + repositories_added: &755 description: An array of repository objects, which were added to the installation. type: array @@ -126549,15 +126795,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *731 - repository_selection: &753 + repository: *734 + repository_selection: &756 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *750 + requester: *753 sender: *4 required: - action @@ -126636,10 +126882,10 @@ x-webhooks: type: string enum: - removed - enterprise: *728 + enterprise: *731 installation: *22 - organization: *730 - repositories_added: *752 + organization: *733 + repositories_added: *755 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -126666,9 +126912,9 @@ x-webhooks: - name - full_name - private - repository: *731 - repository_selection: *753 - requester: *750 + repository: *734 + repository_selection: *756 + requester: *753 sender: *4 required: - action @@ -126747,11 +126993,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *728 + enterprise: *731 installation: *22 - organization: *730 - repositories: *751 - repository: *731 + organization: *733 + repositories: *754 + repository: *734 requester: nullable: true sender: *4 @@ -126929,10 +127175,10 @@ x-webhooks: type: string required: - from - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 target_type: type: string @@ -127011,11 +127257,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *728 + enterprise: *731 installation: *22 - organization: *730 - repositories: *751 - repository: *731 + organization: *733 + repositories: *754 + repository: *734 requester: nullable: true sender: *4 @@ -127139,8 +127385,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 reactions: title: Reactions type: object @@ -127189,8 +127435,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *562 - required: *563 + properties: *565 + required: *566 nullable: true user: title: User @@ -127275,8 +127521,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128065,8 +128311,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128082,7 +128328,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -128415,8 +128661,8 @@ x-webhooks: - state - locked - assignee - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -128496,7 +128742,7 @@ x-webhooks: type: string enum: - deleted - comment: &754 + comment: &757 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -128653,8 +128899,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *562 - required: *563 + properties: *565 + required: *566 nullable: true required: - url @@ -128669,8 +128915,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129455,8 +129701,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129472,7 +129718,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -129807,8 +130053,8 @@ x-webhooks: - state - locked - assignee - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -129888,7 +130134,7 @@ x-webhooks: type: string enum: - edited - changes: &784 + changes: &787 description: The changes to the comment. type: object properties: @@ -129900,9 +130146,9 @@ x-webhooks: type: string required: - from - comment: *754 - enterprise: *728 - installation: *729 + comment: *757 + enterprise: *731 + installation: *732 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130690,8 +130936,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130707,7 +130953,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -131040,8 +131286,8 @@ x-webhooks: - state - locked - assignee - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -131122,9 +131368,9 @@ x-webhooks: type: string enum: - pinned - comment: *754 - enterprise: *728 - installation: *729 + comment: *757 + enterprise: *731 + installation: *732 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131914,8 +132160,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131931,7 +132177,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -132266,8 +132512,8 @@ x-webhooks: - state - locked - assignee - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -132347,9 +132593,9 @@ x-webhooks: type: string enum: - unpinned - comment: *754 - enterprise: *728 - installation: *729 + comment: *757 + enterprise: *731 + installation: *732 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133139,8 +133385,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133156,7 +133402,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -133491,8 +133737,8 @@ x-webhooks: - state - locked - assignee - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -133575,15 +133821,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 + blocked_issue: *79 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - blocking_issue_repo: *71 - installation: *729 - organization: *730 - repository: *731 + blocking_issue: *79 + blocking_issue_repo: *73 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -133666,15 +133912,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 + blocked_issue: *79 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - blocking_issue_repo: *71 - installation: *729 - organization: *730 - repository: *731 + blocking_issue: *79 + blocking_issue_repo: *73 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -133756,15 +134002,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 - blocked_issue_repo: *71 + blocked_issue: *79 + blocked_issue_repo: *73 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - installation: *729 - organization: *730 - repository: *731 + blocking_issue: *79 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -133847,15 +134093,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 - blocked_issue_repo: *71 + blocked_issue: *79 + blocked_issue_repo: *73 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - installation: *729 - organization: *730 - repository: *731 + blocking_issue: *79 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -133935,10 +134181,10 @@ x-webhooks: type: string enum: - assigned - assignee: *750 - enterprise: *728 - installation: *729 - issue: &757 + assignee: *753 + enterprise: *731 + installation: *732 + issue: &760 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -134727,14 +134973,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134750,7 +134996,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -134851,8 +135097,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -134932,8 +135178,8 @@ x-webhooks: type: string enum: - closed - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135727,14 +135973,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135750,7 +135996,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -135986,8 +136232,8 @@ x-webhooks: required: - state - closed_at - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -136066,8 +136312,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136852,14 +137098,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136875,7 +137121,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -136975,8 +137221,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -137055,8 +137301,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137863,14 +138109,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137886,7 +138132,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -137965,7 +138211,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &755 + milestone: &758 title: Milestone description: A collection of related issues and pull requests. type: object @@ -138103,8 +138349,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -138203,8 +138449,8 @@ x-webhooks: type: string required: - from - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138993,14 +139239,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139013,7 +139259,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *233 + type: *236 title: description: Title of the issue type: string @@ -139117,9 +139363,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *749 - organization: *730 - repository: *731 + label: *752 + organization: *733 + repository: *734 sender: *4 required: - action @@ -139199,8 +139445,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139988,14 +140234,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140008,7 +140254,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *233 + type: *236 title: description: Title of the issue type: string @@ -140112,9 +140358,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *749 - organization: *730 - repository: *731 + label: *752 + organization: *733 + repository: *734 sender: *4 required: - action @@ -140194,8 +140440,8 @@ x-webhooks: type: string enum: - locked - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141007,14 +141253,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141027,7 +141273,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *233 + type: *236 title: description: Title of the issue type: string @@ -141108,8 +141354,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -141188,8 +141434,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141995,14 +142241,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142018,7 +142264,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -142096,9 +142342,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *755 - organization: *730 - repository: *731 + milestone: *758 + organization: *733 + repository: *734 sender: *4 required: - action @@ -142961,11 +143207,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142993,8 +143239,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true user: title: User @@ -143066,7 +143312,7 @@ x-webhooks: required: - login - id - type: *233 + type: *236 required: - id - number @@ -143550,8 +143796,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144335,11 +144581,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144355,7 +144601,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -144368,8 +144614,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true user: title: User @@ -144463,8 +144709,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -144544,9 +144790,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *728 - installation: *729 - issue: &756 + enterprise: *731 + installation: *732 + issue: &759 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145329,14 +145575,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145352,7 +145598,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -145452,8 +145698,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -145532,8 +145778,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146343,14 +146589,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146444,9 +146690,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *233 - organization: *730 - repository: *731 + type: *236 + organization: *733 + repository: *734 sender: *4 required: - action @@ -147312,14 +147558,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147335,7 +147581,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -147918,11 +148164,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *728 - installation: *729 - issue: *756 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + issue: *759 + organization: *733 + repository: *734 sender: *4 required: - action @@ -148002,12 +148248,12 @@ x-webhooks: type: string enum: - typed - enterprise: *728 - installation: *729 - issue: *757 - type: *233 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + issue: *760 + type: *236 + organization: *733 + repository: *734 sender: *4 required: - action @@ -148088,7 +148334,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &787 + assignee: &790 title: User type: object nullable: true @@ -148158,11 +148404,11 @@ x-webhooks: required: - login - id - enterprise: *728 - installation: *729 - issue: *757 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + issue: *760 + organization: *733 + repository: *734 sender: *4 required: - action @@ -148241,12 +148487,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *728 - installation: *729 - issue: *757 - label: *749 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + issue: *760 + label: *752 + organization: *733 + repository: *734 sender: *4 required: - action @@ -148326,8 +148572,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149137,14 +149383,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *663 - issue_dependencies_summary: *664 + sub_issues_summary: *666 + issue_dependencies_summary: *667 issue_field_values: type: array - items: *547 + items: *550 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149160,7 +149406,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *233 + type: *236 updated_at: type: string format: date-time @@ -149238,8 +149484,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -149319,11 +149565,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *728 - installation: *729 - issue: *756 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + issue: *759 + organization: *733 + repository: *734 sender: *4 required: - action @@ -149402,12 +149648,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *728 - installation: *729 - issue: *757 - type: *233 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + issue: *760 + type: *236 + organization: *733 + repository: *734 sender: *4 required: - action @@ -149487,11 +149733,11 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - label: *749 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + label: *752 + organization: *733 + repository: *734 sender: *4 required: - action @@ -149569,11 +149815,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - label: *749 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + label: *752 + organization: *733 + repository: *734 sender: *4 required: - action @@ -149683,11 +149929,11 @@ x-webhooks: type: string required: - from - enterprise: *728 - installation: *729 - label: *749 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + label: *752 + organization: *733 + repository: *734 sender: *4 required: - action @@ -149769,9 +150015,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *728 - installation: *729 - marketplace_purchase: &758 + enterprise: *731 + installation: *732 + marketplace_purchase: &761 title: Marketplace Purchase type: object required: @@ -149854,8 +150100,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *730 - previous_marketplace_purchase: &759 + organization: *733 + previous_marketplace_purchase: &762 title: Marketplace Purchase type: object properties: @@ -149935,7 +150181,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *731 + repository: *734 sender: *4 required: - action @@ -150015,10 +150261,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *728 - installation: *729 - marketplace_purchase: *758 - organization: *730 + enterprise: *731 + installation: *732 + marketplace_purchase: *761 + organization: *733 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150101,7 +150347,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *731 + repository: *734 sender: *4 required: - action @@ -150183,10 +150429,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *728 - installation: *729 - marketplace_purchase: *758 - organization: *730 + enterprise: *731 + installation: *732 + marketplace_purchase: *761 + organization: *733 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -150268,7 +150514,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *731 + repository: *734 sender: *4 required: - action @@ -150349,8 +150595,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 marketplace_purchase: title: Marketplace Purchase type: object @@ -150432,9 +150678,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *730 - previous_marketplace_purchase: *759 - repository: *731 + organization: *733 + previous_marketplace_purchase: *762 + repository: *734 sender: *4 required: - action @@ -150514,12 +150760,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *728 - installation: *729 - marketplace_purchase: *758 - organization: *730 - previous_marketplace_purchase: *759 - repository: *731 + enterprise: *731 + installation: *732 + marketplace_purchase: *761 + organization: *733 + previous_marketplace_purchase: *762 + repository: *734 sender: *4 required: - action @@ -150621,11 +150867,11 @@ x-webhooks: type: string required: - to - enterprise: *728 - installation: *729 - member: *750 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + member: *753 + organization: *733 + repository: *734 sender: *4 required: - action @@ -150725,11 +150971,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *728 - installation: *729 - member: *750 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + member: *753 + organization: *733 + repository: *734 sender: *4 required: - action @@ -150808,11 +151054,11 @@ x-webhooks: type: string enum: - removed - enterprise: *728 - installation: *729 - member: *750 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + member: *753 + organization: *733 + repository: *734 sender: *4 required: - action @@ -150890,11 +151136,11 @@ x-webhooks: type: string enum: - added - enterprise: *728 - installation: *729 - member: *750 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + member: *753 + organization: *733 + repository: *734 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150970,7 +151216,7 @@ x-webhooks: required: - login - id - team: &760 + team: &763 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -151193,11 +151439,11 @@ x-webhooks: type: string enum: - removed - enterprise: *728 - installation: *729 - member: *750 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + member: *753 + organization: *733 + repository: *734 scope: description: The scope of the membership. Currently, can only be `team`. @@ -151274,7 +151520,7 @@ x-webhooks: required: - login - id - team: *760 + team: *763 required: - action - scope @@ -151356,8 +151602,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *729 - merge_group: &762 + installation: *732 + merge_group: &765 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -151376,15 +151622,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *761 + head_commit: *764 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -151470,10 +151716,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *729 - merge_group: *762 - organization: *730 - repository: *731 + installation: *732 + merge_group: *765 + organization: *733 + repository: *734 sender: *4 required: - action @@ -151546,7 +151792,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 + enterprise: *731 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -151655,17 +151901,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *729 - organization: *730 + installation: *732 + organization: *733 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *763 - required: *764 - x-github-breaking-changes: *765 + properties: *766 + required: *767 + x-github-breaking-changes: *768 nullable: true sender: *4 required: @@ -151746,11 +151992,11 @@ x-webhooks: type: string enum: - closed - enterprise: *728 - installation: *729 - milestone: *755 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + milestone: *758 + organization: *733 + repository: *734 sender: *4 required: - action @@ -151829,9 +152075,9 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - milestone: &766 + enterprise: *731 + installation: *732 + milestone: &769 title: Milestone description: A collection of related issues and pull requests. type: object @@ -151968,8 +152214,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -152048,11 +152294,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - milestone: *755 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + milestone: *758 + organization: *733 + repository: *734 sender: *4 required: - action @@ -152162,11 +152408,11 @@ x-webhooks: type: string required: - from - enterprise: *728 - installation: *729 - milestone: *755 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + milestone: *758 + organization: *733 + repository: *734 sender: *4 required: - action @@ -152246,11 +152492,11 @@ x-webhooks: type: string enum: - opened - enterprise: *728 - installation: *729 - milestone: *766 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + milestone: *769 + organization: *733 + repository: *734 sender: *4 required: - action @@ -152329,11 +152575,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *750 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + blocked_user: *753 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -152412,11 +152658,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *750 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + blocked_user: *753 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -152495,9 +152741,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - membership: &767 + enterprise: *731 + installation: *732 + membership: &770 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -152604,8 +152850,8 @@ x-webhooks: - role - organization_url - user - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 required: - action @@ -152683,11 +152929,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *728 - installation: *729 - membership: *767 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + membership: *770 + organization: *733 + repository: *734 sender: *4 required: - action @@ -152766,8 +153012,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -152883,10 +153129,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 - user: *750 + user: *753 required: - action - invitation @@ -152964,11 +153210,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *728 - installation: *729 - membership: *767 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + membership: *770 + organization: *733 + repository: *734 sender: *4 required: - action @@ -153055,11 +153301,11 @@ x-webhooks: properties: from: type: string - enterprise: *728 - installation: *729 - membership: *767 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + membership: *770 + organization: *733 + repository: *734 sender: *4 required: - action @@ -153136,9 +153382,9 @@ x-webhooks: type: string enum: - published - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 package: description: Information about the package. type: object @@ -153637,7 +153883,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &768 + items: &771 title: Ruby Gems metadata type: object properties: @@ -153732,7 +153978,7 @@ x-webhooks: - owner - package_version - registry - repository: *731 + repository: *734 sender: *4 required: - action @@ -153808,9 +154054,9 @@ x-webhooks: type: string enum: - updated - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 package: description: Information about the package. type: object @@ -154163,7 +154409,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *768 + items: *771 source_url: type: string format: uri @@ -154233,7 +154479,7 @@ x-webhooks: - owner - package_version - registry - repository: *731 + repository: *734 sender: *4 required: - action @@ -154409,12 +154655,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *728 + enterprise: *731 id: type: integer - installation: *729 - organization: *730 - repository: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - id @@ -154491,7 +154737,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &769 + personal_access_token_request: &772 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -154637,10 +154883,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *728 - organization: *730 + enterprise: *731 + organization: *733 sender: *4 - installation: *729 + installation: *732 required: - action - personal_access_token_request @@ -154717,11 +154963,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *769 - enterprise: *728 - organization: *730 + personal_access_token_request: *772 + enterprise: *731 + organization: *733 sender: *4 - installation: *729 + installation: *732 required: - action - personal_access_token_request @@ -154797,11 +155043,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *769 - enterprise: *728 - organization: *730 + personal_access_token_request: *772 + enterprise: *731 + organization: *733 sender: *4 - installation: *729 + installation: *732 required: - action - personal_access_token_request @@ -154876,11 +155122,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *769 - organization: *730 - enterprise: *728 + personal_access_token_request: *772 + organization: *733 + enterprise: *731 sender: *4 - installation: *729 + installation: *732 required: - action - personal_access_token_request @@ -154985,7 +155231,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *770 + last_response: *773 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -155017,8 +155263,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 zen: description: Random string of GitHub zen. @@ -155263,10 +155509,10 @@ x-webhooks: - from required: - note - enterprise: *728 - installation: *729 - organization: *730 - project_card: &771 + enterprise: *731 + installation: *732 + organization: *733 + project_card: &774 title: Project Card type: object properties: @@ -155385,7 +155631,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *731 + repository: *734 sender: *4 required: - action @@ -155466,11 +155712,11 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - organization: *730 - project_card: *771 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + project_card: *774 + repository: *734 sender: *4 required: - action @@ -155550,9 +155796,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 project_card: title: Project Card type: object @@ -155680,9 +155926,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *763 - required: *764 - x-github-breaking-changes: *765 + properties: *766 + required: *767 + x-github-breaking-changes: *768 nullable: true sender: *4 required: @@ -155776,11 +156022,11 @@ x-webhooks: - from required: - note - enterprise: *728 - installation: *729 - organization: *730 - project_card: *771 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + project_card: *774 + repository: *734 sender: *4 required: - action @@ -155874,9 +156120,9 @@ x-webhooks: - from required: - column_id - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 project_card: allOf: - title: Project Card @@ -156066,7 +156312,7 @@ x-webhooks: type: string required: - after_id - repository: *731 + repository: *734 sender: *4 required: - action @@ -156146,10 +156392,10 @@ x-webhooks: type: string enum: - closed - enterprise: *728 - installation: *729 - organization: *730 - project: &773 + enterprise: *731 + installation: *732 + organization: *733 + project: &776 title: Project type: object properties: @@ -156273,7 +156519,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *731 + repository: *734 sender: *4 required: - action @@ -156353,10 +156599,10 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - organization: *730 - project_column: &772 + enterprise: *731 + installation: *732 + organization: *733 + project_column: &775 title: Project Column type: object properties: @@ -156395,7 +156641,7 @@ x-webhooks: - name - created_at - updated_at - repository: *731 + repository: *734 sender: *4 required: - action @@ -156474,19 +156720,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - organization: *730 - project_column: *772 + enterprise: *731 + installation: *732 + organization: *733 + project_column: *775 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *763 - required: *764 - x-github-breaking-changes: *765 + properties: *766 + required: *767 + x-github-breaking-changes: *768 nullable: true sender: *4 required: @@ -156576,11 +156822,11 @@ x-webhooks: type: string required: - from - enterprise: *728 - installation: *729 - organization: *730 - project_column: *772 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + project_column: *775 + repository: *734 sender: *4 required: - action @@ -156660,11 +156906,11 @@ x-webhooks: type: string enum: - moved - enterprise: *728 - installation: *729 - organization: *730 - project_column: *772 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + project_column: *775 + repository: *734 sender: *4 required: - action @@ -156744,11 +156990,11 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - organization: *730 - project: *773 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + project: *776 + repository: *734 sender: *4 required: - action @@ -156828,19 +157074,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - organization: *730 - project: *773 + enterprise: *731 + installation: *732 + organization: *733 + project: *776 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *763 - required: *764 - x-github-breaking-changes: *765 + properties: *766 + required: *767 + x-github-breaking-changes: *768 nullable: true sender: *4 required: @@ -156942,11 +157188,11 @@ x-webhooks: type: string required: - from - enterprise: *728 - installation: *729 - organization: *730 - project: *773 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + project: *776 + repository: *734 sender: *4 required: - action @@ -157025,11 +157271,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *728 - installation: *729 - organization: *730 - project: *773 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + project: *776 + repository: *734 sender: *4 required: - action @@ -157110,9 +157356,9 @@ x-webhooks: type: string enum: - closed - installation: *729 - organization: *730 - projects_v2: *267 + installation: *732 + organization: *733 + projects_v2: *270 sender: *4 required: - action @@ -157193,9 +157439,9 @@ x-webhooks: type: string enum: - created - installation: *729 - organization: *730 - projects_v2: *267 + installation: *732 + organization: *733 + projects_v2: *270 sender: *4 required: - action @@ -157276,9 +157522,9 @@ x-webhooks: type: string enum: - deleted - installation: *729 - organization: *730 - projects_v2: *267 + installation: *732 + organization: *733 + projects_v2: *270 sender: *4 required: - action @@ -157395,9 +157641,9 @@ x-webhooks: type: string to: type: string - installation: *729 - organization: *730 - projects_v2: *267 + installation: *732 + organization: *733 + projects_v2: *270 sender: *4 required: - action @@ -157480,7 +157726,7 @@ x-webhooks: type: string enum: - archived - changes: &777 + changes: &780 type: object properties: archived_at: @@ -157494,9 +157740,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *729 - organization: *730 - projects_v2_item: &774 + installation: *732 + organization: *733 + projects_v2_item: &777 title: Projects v2 Item description: An item belonging to a project type: object @@ -157514,7 +157760,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *274 + content_type: *277 creator: *4 created_at: type: string @@ -157631,9 +157877,9 @@ x-webhooks: nullable: true to: type: string - installation: *729 - organization: *730 - projects_v2_item: *774 + installation: *732 + organization: *733 + projects_v2_item: *777 sender: *4 required: - action @@ -157715,9 +157961,9 @@ x-webhooks: type: string enum: - created - installation: *729 - organization: *730 - projects_v2_item: *774 + installation: *732 + organization: *733 + projects_v2_item: *777 sender: *4 required: - action @@ -157798,9 +158044,9 @@ x-webhooks: type: string enum: - deleted - installation: *729 - organization: *730 - projects_v2_item: *774 + installation: *732 + organization: *733 + projects_v2_item: *777 sender: *4 required: - action @@ -157906,7 +158152,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &775 + - &778 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -157928,7 +158174,7 @@ x-webhooks: required: - id - name - - &776 + - &779 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -157962,8 +158208,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *775 - - *776 + - *778 + - *779 required: - field_value - type: object @@ -157979,9 +158225,9 @@ x-webhooks: nullable: true required: - body - installation: *729 - organization: *730 - projects_v2_item: *774 + installation: *732 + organization: *733 + projects_v2_item: *777 sender: *4 required: - action @@ -158076,9 +158322,9 @@ x-webhooks: to: type: string nullable: true - installation: *729 - organization: *730 - projects_v2_item: *774 + installation: *732 + organization: *733 + projects_v2_item: *777 sender: *4 required: - action @@ -158161,10 +158407,10 @@ x-webhooks: type: string enum: - restored - changes: *777 - installation: *729 - organization: *730 - projects_v2_item: *774 + changes: *780 + installation: *732 + organization: *733 + projects_v2_item: *777 sender: *4 required: - action @@ -158246,9 +158492,9 @@ x-webhooks: type: string enum: - reopened - installation: *729 - organization: *730 - projects_v2: *267 + installation: *732 + organization: *733 + projects_v2: *270 sender: *4 required: - action @@ -158329,14 +158575,14 @@ x-webhooks: type: string enum: - created - installation: *729 - organization: *730 - projects_v2_status_update: &780 + installation: *732 + organization: *733 + projects_v2_status_update: &783 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *778 - required: *779 + properties: *781 + required: *782 sender: *4 required: - action @@ -158417,9 +158663,9 @@ x-webhooks: type: string enum: - deleted - installation: *729 - organization: *730 - projects_v2_status_update: *780 + installation: *732 + organization: *733 + projects_v2_status_update: *783 sender: *4 required: - action @@ -158555,9 +158801,9 @@ x-webhooks: type: string format: date nullable: true - installation: *729 - organization: *730 - projects_v2_status_update: *780 + installation: *732 + organization: *733 + projects_v2_status_update: *783 sender: *4 required: - action @@ -158628,10 +158874,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - repository @@ -158708,13 +158954,13 @@ x-webhooks: type: string enum: - assigned - assignee: *750 - enterprise: *728 - installation: *729 - number: &781 + assignee: *753 + enterprise: *731 + installation: *732 + number: &784 description: The pull request number. type: integer - organization: *730 + organization: *733 pull_request: title: Pull Request type: object @@ -161027,7 +161273,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 sender: *4 required: - action @@ -161124,11 +161370,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 number: type: integer - organization: *730 + organization: *733 pull_request: title: Pull Request type: object @@ -163436,7 +163682,7 @@ x-webhooks: - draft reason: type: string - repository: *731 + repository: *734 sender: *4 required: - action @@ -163533,11 +163779,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 number: type: integer - organization: *730 + organization: *733 pull_request: title: Pull Request type: object @@ -165845,7 +166091,7 @@ x-webhooks: - draft reason: type: string - repository: *731 + repository: *734 sender: *4 required: - action @@ -165942,13 +166188,13 @@ x-webhooks: type: string enum: - closed - enterprise: *728 - installation: *729 - number: *781 - organization: *730 - pull_request: &782 + enterprise: *731 + installation: *732 + number: *784 + organization: *733 + pull_request: &785 allOf: - - *585 + - *588 - type: object properties: allow_auto_merge: @@ -166010,7 +166256,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *731 + repository: *734 sender: *4 required: - action @@ -166091,12 +166337,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *728 - installation: *729 - number: *781 - organization: *730 - pull_request: *782 - repository: *731 + enterprise: *731 + installation: *732 + number: *784 + organization: *733 + pull_request: *785 + repository: *734 sender: *4 required: - action @@ -166176,11 +166422,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *728 - milestone: *569 - number: *781 - organization: *730 - pull_request: &783 + enterprise: *731 + milestone: *572 + number: *784 + organization: *733 + pull_request: &786 title: Pull Request type: object properties: @@ -168515,7 +168761,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *731 + repository: *734 sender: *4 required: - action @@ -168594,11 +168840,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 number: type: integer - organization: *730 + organization: *733 pull_request: title: Pull Request type: object @@ -170910,7 +171156,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *731 + repository: *734 sender: *4 required: - action @@ -171042,12 +171288,12 @@ x-webhooks: type: string required: - from - enterprise: *728 - installation: *729 - number: *781 - organization: *730 - pull_request: *782 - repository: *731 + enterprise: *731 + installation: *732 + number: *784 + organization: *733 + pull_request: *785 + repository: *734 sender: *4 required: - action @@ -171127,11 +171373,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 number: type: integer - organization: *730 + organization: *733 pull_request: title: Pull Request type: object @@ -173428,7 +173674,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 sender: *4 required: - action @@ -173516,11 +173762,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *728 - installation: *729 - label: *749 - number: *781 - organization: *730 + enterprise: *731 + installation: *732 + label: *752 + number: *784 + organization: *733 pull_request: title: Pull Request type: object @@ -175832,7 +176078,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 sender: *4 required: - action @@ -175928,10 +176174,10 @@ x-webhooks: type: string enum: - locked - enterprise: *728 - installation: *729 - number: *781 - organization: *730 + enterprise: *731 + installation: *732 + number: *784 + organization: *733 pull_request: title: Pull Request type: object @@ -178241,7 +178487,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 sender: *4 required: - action @@ -178336,12 +178582,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *728 - milestone: *569 - number: *781 - organization: *730 - pull_request: *783 - repository: *731 + enterprise: *731 + milestone: *572 + number: *784 + organization: *733 + pull_request: *786 + repository: *734 sender: *4 required: - action @@ -178420,12 +178666,12 @@ x-webhooks: type: string enum: - opened - enterprise: *728 - installation: *729 - number: *781 - organization: *730 - pull_request: *782 - repository: *731 + enterprise: *731 + installation: *732 + number: *784 + organization: *733 + pull_request: *785 + repository: *734 sender: *4 required: - action @@ -178506,12 +178752,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *728 - installation: *729 - number: *781 - organization: *730 - pull_request: *782 - repository: *731 + enterprise: *731 + installation: *732 + number: *784 + organization: *733 + pull_request: *785 + repository: *734 sender: *4 required: - action @@ -178591,12 +178837,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *728 - installation: *729 - number: *781 - organization: *730 - pull_request: *782 - repository: *731 + enterprise: *731 + installation: *732 + number: *784 + organization: *733 + pull_request: *785 + repository: *734 sender: *4 required: - action @@ -178962,9 +179208,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 pull_request: type: object properties: @@ -181164,7 +181410,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *731 + repository: *734 sender: *4 required: - action @@ -181259,7 +181505,7 @@ x-webhooks: type: string enum: - deleted - comment: &785 + comment: &788 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -181544,9 +181790,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 pull_request: type: object properties: @@ -183734,7 +183980,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *731 + repository: *734 sender: *4 required: - action @@ -183829,11 +184075,11 @@ x-webhooks: type: string enum: - edited - changes: *784 - comment: *785 - enterprise: *728 - installation: *729 - organization: *730 + changes: *787 + comment: *788 + enterprise: *731 + installation: *732 + organization: *733 pull_request: type: object properties: @@ -186024,7 +186270,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *731 + repository: *734 sender: *4 required: - action @@ -186120,9 +186366,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 pull_request: title: Simple Pull Request type: object @@ -188325,7 +188571,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *731 + repository: *734 review: description: The review that was affected. type: object @@ -188587,9 +188833,9 @@ x-webhooks: type: string required: - from - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 pull_request: title: Simple Pull Request type: object @@ -190643,8 +190889,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *731 - review: &786 + repository: *734 + review: &789 description: The review that was affected. type: object properties: @@ -190885,12 +191131,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 number: description: The pull request number. type: integer - organization: *730 + organization: *733 pull_request: title: Pull Request type: object @@ -193203,7 +193449,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 requested_reviewer: title: User type: object @@ -193287,12 +193533,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 number: description: The pull request number. type: integer - organization: *730 + organization: *733 pull_request: title: Pull Request type: object @@ -195612,7 +195858,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 requested_team: title: Team description: Groups of organization members that gives permissions @@ -195827,12 +196073,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 number: description: The pull request number. type: integer - organization: *730 + organization: *733 pull_request: title: Pull Request type: object @@ -198147,7 +198393,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 requested_reviewer: title: User type: object @@ -198232,12 +198478,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *728 - installation: *729 + enterprise: *731 + installation: *732 number: description: The pull request number. type: integer - organization: *730 + organization: *733 pull_request: title: Pull Request type: object @@ -200543,7 +200789,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 requested_team: title: Team description: Groups of organization members that gives permissions @@ -200747,9 +200993,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 pull_request: title: Simple Pull Request type: object @@ -202954,8 +203200,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *731 - review: *786 + repository: *734 + review: *789 sender: *4 required: - action @@ -203050,9 +203296,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 pull_request: title: Simple Pull Request type: object @@ -205152,7 +205398,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *731 + repository: *734 sender: *4 thread: type: object @@ -205547,9 +205793,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 pull_request: title: Simple Pull Request type: object @@ -207635,7 +207881,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *731 + repository: *734 sender: *4 thread: type: object @@ -208033,10 +208279,10 @@ x-webhooks: type: string before: type: string - enterprise: *728 - installation: *729 - number: *781 - organization: *730 + enterprise: *731 + installation: *732 + number: *784 + organization: *733 pull_request: title: Pull Request type: object @@ -210337,7 +210583,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 sender: *4 required: - action @@ -210434,11 +210680,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *787 - enterprise: *728 - installation: *729 - number: *781 - organization: *730 + assignee: *790 + enterprise: *731 + installation: *732 + number: *784 + organization: *733 pull_request: title: Pull Request type: object @@ -212751,7 +212997,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 sender: *4 required: - action @@ -212845,11 +213091,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *728 - installation: *729 - label: *749 - number: *781 - organization: *730 + enterprise: *731 + installation: *732 + label: *752 + number: *784 + organization: *733 pull_request: title: Pull Request type: object @@ -215152,7 +215398,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 sender: *4 required: - action @@ -215248,10 +215494,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *728 - installation: *729 - number: *781 - organization: *730 + enterprise: *731 + installation: *732 + number: *784 + organization: *733 pull_request: title: Pull Request type: object @@ -217546,7 +217792,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *731 + repository: *734 sender: *4 required: - action @@ -217761,7 +218007,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *728 + enterprise: *731 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -217853,8 +218099,8 @@ x-webhooks: - url - author - committer - installation: *729 - organization: *730 + installation: *732 + organization: *733 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -218444,9 +218690,9 @@ x-webhooks: type: string enum: - published - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 registry_package: type: object properties: @@ -218892,7 +219138,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *768 + items: *771 summary: type: string tag_name: @@ -218946,7 +219192,7 @@ x-webhooks: - owner - package_version - registry - repository: *731 + repository: *734 sender: *4 required: - action @@ -219024,9 +219270,9 @@ x-webhooks: type: string enum: - updated - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 registry_package: type: object properties: @@ -219334,7 +219580,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *768 + items: *771 summary: type: string tag_name: @@ -219383,7 +219629,7 @@ x-webhooks: - owner - package_version - registry - repository: *731 + repository: *734 sender: *4 required: - action @@ -219460,10 +219706,10 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - organization: *730 - release: &788 + enterprise: *731 + installation: *732 + organization: *733 + release: &791 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219781,7 +220027,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *731 + repository: *734 sender: *4 required: - action @@ -219858,11 +220104,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - organization: *730 - release: *788 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + release: *791 + repository: *734 sender: *4 required: - action @@ -219979,11 +220225,11 @@ x-webhooks: type: boolean required: - to - enterprise: *728 - installation: *729 - organization: *730 - release: *788 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + release: *791 + repository: *734 sender: *4 required: - action @@ -220061,9 +220307,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -220385,7 +220631,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *731 + repository: *734 sender: *4 required: - action @@ -220461,10 +220707,10 @@ x-webhooks: type: string enum: - published - enterprise: *728 - installation: *729 - organization: *730 - release: &789 + enterprise: *731 + installation: *732 + organization: *733 + release: &792 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -220783,7 +221029,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *731 + repository: *734 sender: *4 required: - action @@ -220859,11 +221105,11 @@ x-webhooks: type: string enum: - released - enterprise: *728 - installation: *729 - organization: *730 - release: *788 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + release: *791 + repository: *734 sender: *4 required: - action @@ -220939,11 +221185,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *728 - installation: *729 - organization: *730 - release: *789 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + release: *792 + repository: *734 sender: *4 required: - action @@ -221019,11 +221265,11 @@ x-webhooks: type: string enum: - published - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - repository_advisory: *649 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + repository_advisory: *652 sender: *4 required: - action @@ -221099,11 +221345,11 @@ x-webhooks: type: string enum: - reported - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - repository_advisory: *649 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + repository_advisory: *652 sender: *4 required: - action @@ -221179,10 +221425,10 @@ x-webhooks: type: string enum: - archived - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -221259,10 +221505,10 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -221340,10 +221586,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -221427,10 +221673,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -221542,10 +221788,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -221617,10 +221863,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 status: type: string @@ -221701,10 +221947,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -221781,10 +222027,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -221878,10 +222124,10 @@ x-webhooks: - name required: - repository - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -221961,11 +222207,11 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - repository_ruleset: *316 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + repository_ruleset: *319 sender: *4 required: - action @@ -222043,11 +222289,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - repository_ruleset: *316 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + repository_ruleset: *319 sender: *4 required: - action @@ -222125,11 +222371,11 @@ x-webhooks: type: string enum: - edited - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - repository_ruleset: *316 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + repository_ruleset: *319 changes: type: object properties: @@ -222148,16 +222394,16 @@ x-webhooks: properties: added: type: array - items: *290 + items: *293 deleted: type: array - items: *290 + items: *293 updated: type: array items: type: object properties: - condition: *290 + condition: *293 changes: type: object properties: @@ -222190,16 +222436,16 @@ x-webhooks: properties: added: type: array - items: *605 + items: *608 deleted: type: array - items: *605 + items: *608 updated: type: array items: type: object properties: - rule: *605 + rule: *608 changes: type: object properties: @@ -222433,10 +222679,10 @@ x-webhooks: - from required: - owner - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -222514,10 +222760,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -222595,7 +222841,7 @@ x-webhooks: type: string enum: - create - alert: &790 + alert: &793 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -222717,10 +222963,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -222926,10 +223172,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -223007,11 +223253,11 @@ x-webhooks: type: string enum: - reopen - alert: *790 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + alert: *793 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -223210,10 +223456,10 @@ x-webhooks: enum: - fixed - open - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -223291,11 +223537,11 @@ x-webhooks: type: string enum: - assigned - alert: &791 + alert: &794 type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -223303,8 +223549,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri @@ -223410,10 +223656,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -223491,11 +223737,11 @@ x-webhooks: type: string enum: - created - alert: *791 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + alert: *794 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -223576,11 +223822,11 @@ x-webhooks: type: string enum: - created - alert: *791 - installation: *729 - location: *792 - organization: *730 - repository: *731 + alert: *794 + installation: *732 + location: *795 + organization: *733 + repository: *734 sender: *4 required: - location @@ -223818,11 +224064,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *791 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + alert: *794 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -223900,11 +224146,11 @@ x-webhooks: type: string enum: - reopened - alert: *791 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + alert: *794 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -223982,11 +224228,11 @@ x-webhooks: type: string enum: - resolved - alert: *791 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + alert: *794 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -224064,12 +224310,12 @@ x-webhooks: type: string enum: - unassigned - alert: *791 + alert: *794 assignee: *4 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -224147,11 +224393,11 @@ x-webhooks: type: string enum: - validated - alert: *791 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + alert: *794 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -224277,10 +224523,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *731 - enterprise: *728 - installation: *729 - organization: *730 + repository: *734 + enterprise: *731 + installation: *732 + organization: *733 sender: *4 required: - action @@ -224358,11 +224604,11 @@ x-webhooks: type: string enum: - published - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - security_advisory: &793 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + security_advisory: &796 description: The details of the security advisory, including summary, description, and severity. type: object @@ -224378,7 +224624,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *55 + cvss_severities: *57 cwes: type: array items: @@ -224563,11 +224809,11 @@ x-webhooks: type: string enum: - updated - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 - security_advisory: *793 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 + security_advisory: *796 sender: *4 required: - action @@ -224640,10 +224886,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -224660,7 +224906,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *55 + cvss_severities: *57 cwes: type: array items: @@ -224835,11 +225081,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *289 - enterprise: *728 - installation: *729 - organization: *730 - repository: *337 + security_and_analysis: *292 + enterprise: *731 + installation: *732 + organization: *733 + repository: *340 sender: *4 required: - changes @@ -224917,12 +225163,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - sponsorship: &794 + sponsorship: &797 type: object properties: created_at: @@ -225223,12 +225469,12 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - sponsorship: *794 + sponsorship: *797 required: - action - sponsorship @@ -225316,12 +225562,12 @@ x-webhooks: type: string required: - from - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - sponsorship: *794 + sponsorship: *797 required: - action - changes @@ -225398,17 +225644,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &795 + effective_date: &798 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: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - sponsorship: *794 + sponsorship: *797 required: - action - sponsorship @@ -225482,7 +225728,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &796 + changes: &799 type: object properties: tier: @@ -225526,13 +225772,13 @@ x-webhooks: - from required: - tier - effective_date: *795 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + effective_date: *798 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - sponsorship: *794 + sponsorship: *797 required: - action - changes @@ -225609,13 +225855,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *796 - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + changes: *799 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - sponsorship: *794 + sponsorship: *797 required: - action - changes @@ -225689,10 +225935,10 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -225775,10 +226021,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -226198,15 +226444,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *728 + enterprise: *731 id: description: The unique identifier of the status. type: integer - installation: *729 + installation: *732 name: type: string - organization: *730 - repository: *731 + organization: *733 + repository: *734 sender: *4 sha: description: The Commit SHA. @@ -226315,15 +226561,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - parent_issue_repo: *71 + parent_issue: *79 + parent_issue_repo: *73 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - installation: *729 - organization: *730 - repository: *731 + sub_issue: *79 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -226407,15 +226653,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - parent_issue_repo: *71 + parent_issue: *79 + parent_issue_repo: *73 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - installation: *729 - organization: *730 - repository: *731 + sub_issue: *79 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -226499,15 +226745,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - sub_issue_repo: *71 + sub_issue: *79 + sub_issue_repo: *73 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - installation: *729 - organization: *730 - repository: *731 + parent_issue: *79 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -226591,15 +226837,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - sub_issue_repo: *71 + sub_issue: *79 + sub_issue_repo: *73 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - installation: *729 - organization: *730 - repository: *731 + parent_issue: *79 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -226676,12 +226922,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - team: &797 + team: &800 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -226904,9 +227150,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 repository: title: Repository description: A git repository @@ -227364,7 +227610,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *797 + team: *800 required: - action - team @@ -227440,9 +227686,9 @@ x-webhooks: type: string enum: - created - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 repository: title: Repository description: A git repository @@ -227900,7 +228146,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *797 + team: *800 required: - action - team @@ -227977,9 +228223,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 repository: title: Repository description: A git repository @@ -228437,7 +228683,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *797 + team: *800 required: - action - team @@ -228581,9 +228827,9 @@ x-webhooks: - from required: - permissions - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 repository: title: Repository description: A git repository @@ -229041,7 +229287,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *797 + team: *800 required: - action - changes @@ -229119,9 +229365,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *728 - installation: *729 - organization: *730 + enterprise: *731 + installation: *732 + organization: *733 repository: title: Repository description: A git repository @@ -229579,7 +229825,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *797 + team: *800 required: - action - team @@ -229655,10 +229901,10 @@ x-webhooks: type: string enum: - started - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 required: - action @@ -229731,16 +229977,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *728 + enterprise: *731 inputs: type: object nullable: true additionalProperties: true - installation: *729 - organization: *730 + installation: *732 + organization: *733 ref: type: string - repository: *731 + repository: *734 sender: *4 workflow: type: string @@ -229822,10 +230068,10 @@ x-webhooks: type: string enum: - completed - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 workflow_job: allOf: @@ -230062,7 +230308,7 @@ x-webhooks: type: string required: - conclusion - deployment: *495 + deployment: *498 required: - action - repository @@ -230141,10 +230387,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 workflow_job: allOf: @@ -230404,7 +230650,7 @@ x-webhooks: required: - status - steps - deployment: *495 + deployment: *498 required: - action - repository @@ -230483,10 +230729,10 @@ x-webhooks: type: string enum: - queued - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 workflow_job: type: object @@ -230621,7 +230867,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *495 + deployment: *498 required: - action - repository @@ -230700,10 +230946,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 workflow_job: type: object @@ -230839,7 +231085,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *495 + deployment: *498 required: - action - repository @@ -230919,12 +231165,12 @@ x-webhooks: type: string enum: - completed - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - workflow: *745 + workflow: *748 workflow_run: title: Workflow Run type: object @@ -231923,12 +232169,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - workflow: *745 + workflow: *748 workflow_run: title: Workflow Run type: object @@ -232912,12 +233158,12 @@ x-webhooks: type: string enum: - requested - enterprise: *728 - installation: *729 - organization: *730 - repository: *731 + enterprise: *731 + installation: *732 + organization: *733 + repository: *734 sender: *4 - workflow: *745 + workflow: *748 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index ecf8bebed6..500b5eed8c 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -20709,6 +20709,345 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/actions/permissions": { "get": { "summary": "Get GitHub Actions permissions for an enterprise", @@ -123218,6 +123557,340 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 5a83421ba4..ff8c22eb72 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -446,7 +446,7 @@ paths: The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs. schema: type: string - - &108 + - &110 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For @@ -455,7 +455,7 @@ paths: required: false schema: type: string - - &109 + - &111 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For @@ -464,7 +464,7 @@ paths: required: false schema: type: string - - &110 + - &112 name: direction description: The direction to sort the results by. in: query @@ -685,7 +685,7 @@ paths: required: - vector_string - score - cvss_severities: &130 + cvss_severities: &132 type: object nullable: true properties: @@ -725,7 +725,7 @@ paths: required: - vector_string - score - epss: &131 + epss: &133 type: object nullable: true readOnly: true @@ -863,7 +863,7 @@ paths: - subscriptions_url - type - url - type: &451 + type: &454 type: string description: The type of credit the user is receiving. enum: @@ -996,7 +996,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &264 + schema: &266 title: Validation Error Simple description: Validation Error Simple type: object @@ -1029,7 +1029,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &766 + - &769 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1147,7 +1147,7 @@ paths: GitHub. type: object nullable: true - properties: &220 + properties: &222 id: description: Unique identifier of the GitHub app example: 37 @@ -1169,7 +1169,7 @@ paths: title: Enterprise description: An enterprise on GitHub. type: object - properties: &139 + properties: &141 description: description: A short description of the enterprise. type: string @@ -1211,7 +1211,7 @@ paths: avatar_url: type: string format: uri - required: &140 + required: &142 - id - node_id - name @@ -1280,7 +1280,7 @@ paths: about itself. example: 5 type: integer - required: &221 + required: &223 - id - node_id - owner @@ -1585,7 +1585,7 @@ paths: schema: type: integer default: 30 - - &355 + - &358 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 @@ -1601,7 +1601,7 @@ paths: application/json: schema: type: array - items: &356 + items: &359 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1681,7 +1681,7 @@ paths: - installation_id - repository_id examples: - default: &357 + default: &360 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1713,7 +1713,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &776 + schema: &779 title: Scim Error description: Scim Error type: object @@ -1740,7 +1740,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &263 + schema: &265 title: Validation Error description: Validation Error type: object @@ -1809,7 +1809,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &361 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1923,7 +1923,7 @@ paths: - request - response examples: - default: &359 + default: &362 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2124,7 +2124,7 @@ paths: parameters: - *17 - *19 - - &232 + - &234 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2757,7 +2757,7 @@ paths: application/json: schema: *22 examples: - default: &88 + default: &90 value: id: 1 account: @@ -2907,11 +2907,11 @@ paths: - selected repositories: type: array - items: &78 + items: &80 title: Repository description: A repository on GitHub. type: object - properties: &428 + properties: &431 id: description: Unique identifier of the repository example: 42 @@ -2931,7 +2931,7 @@ paths: title: License Simple description: License Simple type: object - properties: &228 + properties: &230 key: type: string example: mit @@ -2953,7 +2953,7 @@ paths: html_url: type: string format: uri - required: &229 + required: &231 - key - name - url @@ -3367,7 +3367,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &429 + required: &432 - archive_url - assignees_url - blobs_url @@ -7676,7 +7676,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &267 type: object properties: total_active_caches_count: @@ -7691,7 +7691,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &266 + default: &268 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -7884,7 +7884,7 @@ paths: - public_ip_enabled - platform examples: - default: &267 + default: &269 value: total_count: 2 runners: @@ -8179,7 +8179,7 @@ paths: application/json: schema: *49 examples: - default: &268 + default: &270 value: id: 1 platform: linux-x64 @@ -8319,7 +8319,7 @@ paths: application/json: schema: *52 examples: - default: &269 + default: &271 value: version: 1.0.0 size_gb: 75 @@ -8483,7 +8483,7 @@ paths: description: Response content: application/json: - schema: &270 + schema: &272 type: object properties: public_ips: @@ -8508,7 +8508,7 @@ paths: required: - public_ips examples: - default: &271 + default: &273 value: public_ips: current_usage: 17 @@ -8548,7 +8548,7 @@ paths: type: array items: *56 examples: - default: &272 + default: &274 value: id: 4-core cpu_cores: 4 @@ -8775,6 +8775,147 @@ paths: githubCloudOnly: true category: actions subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - *41 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &59 + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included + in the OIDC token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization + or enterprise level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *41 + requestBody: + required: true + content: + application/json: + schema: &275 + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC + token + required: + - custom_property_name + examples: + default: &60 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *59 + examples: + default: *60 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *41 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/actions/permissions": get: summary: Get GitHub Actions permissions for an enterprise @@ -8798,7 +8939,7 @@ paths: schema: type: object properties: - enabled_organizations: &59 + enabled_organizations: &61 type: string description: The policy that controls the organizations in the enterprise that are allowed to run GitHub Actions. @@ -8811,7 +8952,7 @@ paths: description: The API URL to use to get or set the selected organizations that are allowed to run GitHub Actions, when `enabled_organizations` is set to `selected`. - allowed_actions: &60 + allowed_actions: &62 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -8819,12 +8960,12 @@ paths: - all - local_only - selected - selected_actions_url: &275 + selected_actions_url: &278 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` is set to `selected`. - sha_pinning_required: &61 + sha_pinning_required: &63 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -8866,9 +9007,9 @@ paths: schema: type: object properties: - enabled_organizations: *59 - allowed_actions: *60 - sha_pinning_required: *61 + enabled_organizations: *61 + allowed_actions: *62 + sha_pinning_required: *63 required: - enabled_organizations examples: @@ -8899,7 +9040,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &277 + schema: &280 type: object properties: days: @@ -8917,7 +9058,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &777 + '401': &780 description: Authorization failure '404': *6 x-github: @@ -8945,7 +9086,7 @@ paths: required: true content: application/json: - schema: &278 + schema: &281 type: object properties: days: @@ -8980,7 +9121,7 @@ paths: description: Response content: application/json: - schema: &62 + schema: &64 type: object properties: approval_policy: @@ -8994,7 +9135,7 @@ paths: required: - approval_policy examples: - default: &279 + default: &282 value: approval_policy: first_time_contributors '404': *6 @@ -9023,7 +9164,7 @@ paths: required: true content: application/json: - schema: *62 + schema: *64 examples: default: summary: Set approval policy to first time contributors @@ -9052,7 +9193,7 @@ paths: description: Response content: application/json: - schema: &280 + schema: &283 type: object required: - run_workflows_from_fork_pull_requests @@ -9078,7 +9219,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &63 + default: &65 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -9106,7 +9247,7 @@ paths: required: true content: application/json: - schema: &281 + schema: &284 type: object required: - run_workflows_from_fork_pull_requests @@ -9129,7 +9270,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *63 + default: *65 responses: '204': description: Empty response for successful settings update @@ -9169,11 +9310,11 @@ paths: type: number organizations: type: array - items: &73 + items: &75 title: Organization Simple description: A GitHub organization. type: object - properties: &121 + properties: &123 login: type: string example: github @@ -9214,7 +9355,7 @@ paths: type: string example: A great organization nullable: true - required: &122 + required: &124 - login - url - id @@ -9231,7 +9372,7 @@ paths: - total_count - organizations examples: - default: &74 + default: &76 value: total_count: 1 organizations: @@ -9310,7 +9451,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *41 - - &64 + - &66 name: org_id description: The unique identifier of the organization. in: path @@ -9339,7 +9480,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *41 - - *64 + - *66 responses: '204': description: Response @@ -9368,7 +9509,7 @@ paths: description: Response content: application/json: - schema: &65 + schema: &67 type: object properties: github_owned_allowed: @@ -9389,7 +9530,7 @@ paths: items: type: string examples: - default: &66 + default: &68 value: github_owned_allowed: true verified_allowed: false @@ -9422,9 +9563,9 @@ paths: required: true content: application/json: - schema: *65 + schema: *67 examples: - selected_actions: *66 + selected_actions: *68 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9529,17 +9670,17 @@ paths: description: Success response content: application/json: - schema: &284 + schema: &287 type: object properties: - default_workflow_permissions: &67 + default_workflow_permissions: &69 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &68 + can_approve_pull_request_reviews: &70 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -9547,7 +9688,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &69 + default: &71 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -9577,13 +9718,13 @@ paths: required: true content: application/json: - schema: &285 + schema: &288 type: object properties: - default_workflow_permissions: *67 - can_approve_pull_request_reviews: *68 + default_workflow_permissions: *69 + can_approve_pull_request_reviews: *70 examples: - default: *69 + default: *71 responses: '204': description: Success response @@ -9628,7 +9769,7 @@ paths: type: number runner_groups: type: array - items: &70 + items: &72 type: object properties: id: @@ -9807,9 +9948,9 @@ paths: description: Response content: application/json: - schema: *70 + schema: *72 examples: - default: &71 + default: &73 value: id: 2 name: octo-runner-group @@ -9844,7 +9985,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-enterprise parameters: - *41 - - &72 + - &74 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -9856,9 +9997,9 @@ paths: description: Response content: application/json: - schema: *70 + schema: *72 examples: - default: *71 + default: *73 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9878,7 +10019,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-enterprise parameters: - *41 - - *72 + - *74 requestBody: required: false content: @@ -9930,7 +10071,7 @@ paths: description: Response content: application/json: - schema: *70 + schema: *72 examples: default: value: @@ -9966,7 +10107,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-enterprise parameters: - *41 - - *72 + - *74 responses: '204': description: Response @@ -9990,7 +10131,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *72 + - *74 - *17 - *19 responses: @@ -10005,12 +10146,12 @@ paths: type: number organizations: type: array - items: *73 + items: *75 required: - total_count - organizations examples: - default: *74 + default: *76 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -10030,7 +10171,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-organization-access-for-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *72 + - *74 requestBody: required: true content: @@ -10076,8 +10217,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *72 - - *64 + - *74 + - *66 responses: '204': description: Response @@ -10100,8 +10241,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *72 - - *64 + - *74 + - *66 responses: '204': description: Response @@ -10125,7 +10266,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-enterprise parameters: - *41 - - *72 + - *74 - *17 - *19 responses: @@ -10140,7 +10281,7 @@ paths: type: number runners: type: array - items: &76 + items: &78 title: Self hosted runners description: A self hosted runner type: object @@ -10169,7 +10310,7 @@ paths: type: boolean labels: type: array - items: &80 + items: &82 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -10202,7 +10343,7 @@ paths: - total_count - runners examples: - default: &77 + default: &79 value: total_count: 2 runners: @@ -10262,7 +10403,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-enterprise parameters: - *41 - - *72 + - *74 requestBody: required: true content: @@ -10307,8 +10448,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-enterprise parameters: - *41 - - *72 - - &75 + - *74 + - &77 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -10337,8 +10478,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-enterprise parameters: - *41 - - *72 - - *75 + - *74 + - *77 responses: '204': description: Response @@ -10381,9 +10522,9 @@ paths: type: number runners: type: array - items: *76 + items: *78 examples: - default: *77 + default: *79 headers: Link: *47 x-github: @@ -10413,7 +10554,7 @@ paths: application/json: schema: type: array - items: &289 + items: &292 title: Runner Application description: Runner Application type: object @@ -10438,7 +10579,7 @@ paths: - download_url - filename examples: - default: &290 + default: &293 value: - os: osx architecture: x64 @@ -10522,7 +10663,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &291 + '201': &294 description: Response content: application/json: @@ -10532,7 +10673,7 @@ paths: - runner - encoded_jit_config properties: - runner: *76 + runner: *78 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -10561,7 +10702,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': &119 + '409': &121 description: Conflict content: application/json: @@ -10599,7 +10740,7 @@ paths: description: Response content: application/json: - schema: &79 + schema: &81 title: Authentication Token description: Authentication Token type: object @@ -10621,7 +10762,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *78 + items: *80 single_file: type: string example: config.yaml @@ -10637,7 +10778,7 @@ paths: - token - expires_at examples: - default: &292 + default: &295 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -10675,9 +10816,9 @@ paths: description: Response content: application/json: - schema: *79 + schema: *81 examples: - default: &293 + default: &296 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -10701,15 +10842,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 + - *77 responses: '200': description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: &294 + default: &297 value: id: 23 name: MBP @@ -10749,7 +10890,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-enterprise parameters: - *41 - - *75 + - *77 responses: '204': description: Response @@ -10774,9 +10915,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 + - *77 responses: - '200': &81 + '200': &83 description: Response content: application/json: @@ -10790,7 +10931,7 @@ paths: type: integer labels: type: array - items: *80 + items: *82 examples: default: value: @@ -10828,7 +10969,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 + - *77 requestBody: required: true content: @@ -10852,7 +10993,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -10875,7 +11016,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 + - *77 requestBody: required: true content: @@ -10900,7 +11041,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -10923,9 +11064,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 + - *77 responses: - '200': &295 + '200': &298 description: Response content: application/json: @@ -10939,7 +11080,7 @@ paths: type: integer labels: type: array - items: *80 + items: *82 examples: default: value: @@ -10980,8 +11121,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 - - &296 + - *77 + - &299 name: name description: The name of a self-hosted runner's custom label. in: path @@ -10989,7 +11130,7 @@ paths: schema: type: string responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -11014,20 +11155,20 @@ paths: description: Response content: application/json: - schema: &86 + schema: &88 title: Announcement Banner description: Announcement at either the repository, organization, or enterprise level type: object properties: - announcement: &82 + announcement: &84 type: string description: The announcement text in GitHub Flavored Markdown. For more information about GitHub Flavored Markdown, see "[Basic writing and formatting syntax](https://docs.github.com/enterprise-cloud@latest//github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)." example: Very **important** announcement about _something_. nullable: true - expires_at: &83 + expires_at: &85 type: string format: date-time description: 'The time at which the announcement expires. This @@ -11037,7 +11178,7 @@ paths: it to an empty string.' example: '"2021-01-01T00:00:00.000-07:00"' nullable: true - user_dismissible: &84 + user_dismissible: &86 type: boolean description: Whether an announcement can be dismissed by the user. example: false @@ -11048,7 +11189,7 @@ paths: - expires_at - user_dismissible examples: - default: &85 + default: &87 summary: Announcement banner value: announcement: Very **important** announcement about _something_. @@ -11072,18 +11213,18 @@ paths: required: true content: application/json: - schema: &303 + schema: &306 title: Enterprise Announcement description: Enterprise global announcement type: object properties: - announcement: *82 - expires_at: *83 - user_dismissible: *84 + announcement: *84 + expires_at: *85 + user_dismissible: *86 required: - announcement examples: - default: *85 + default: *87 parameters: - *41 responses: @@ -11091,9 +11232,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *85 + default: *87 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -11189,7 +11330,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#get-repositories-belonging-to-an-enterprise-owned-organization parameters: - *41 - - &87 + - &89 name: org description: The organization name. The name is not case sensitive. in: path @@ -11206,7 +11347,7 @@ paths: application/json: schema: type: array - items: &89 + items: &91 title: Accessible Repository description: A repository that may be made accessible to a GitHub App. @@ -11257,7 +11398,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#list-github-apps-installed-on-an-enterprise-owned-organization parameters: - *41 - - *87 + - *89 - *17 - *19 responses: @@ -11352,7 +11493,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#install-a-github-app-on-an-enterprise-owned-organization parameters: - *41 - - *87 + - *89 responses: '200': description: A GitHub App installation that was installed previously. @@ -11360,14 +11501,14 @@ paths: application/json: schema: *22 examples: - default: *88 + default: *90 '201': description: A GitHub App installation. content: application/json: schema: *22 examples: - default: *88 + default: *90 requestBody: required: true content: @@ -11435,7 +11576,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#uninstall-a-github-app-from-an-enterprise-owned-organization parameters: - *41 - - *87 + - *89 - *23 responses: '204': @@ -11463,7 +11604,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#get-the-repositories-accessible-to-a-given-github-app-installation parameters: - *41 - - *87 + - *89 - *23 - *17 - *19 @@ -11475,7 +11616,7 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: default: value: @@ -11504,7 +11645,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#toggle-installation-repository-access-between-selected-and-all-repositories parameters: - *41 - - *87 + - *89 - *23 requestBody: required: true @@ -11544,7 +11685,7 @@ paths: application/json: schema: *22 examples: - default: *88 + default: *90 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -11565,7 +11706,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#grant-repository-access-to-an-organization-installation parameters: - *41 - - *87 + - *89 - *23 responses: '200': @@ -11575,7 +11716,7 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: default: value: @@ -11626,7 +11767,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#remove-repository-access-from-an-organization-installation parameters: - *41 - - *87 + - *89 - *23 responses: '200': @@ -11636,7 +11777,7 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: default: value: @@ -11713,7 +11854,7 @@ paths: required: false schema: type: string - - &306 + - &309 name: include description: |- The event types to include: @@ -11731,7 +11872,7 @@ paths: - web - git - all - - &307 + - &310 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. @@ -11739,7 +11880,7 @@ paths: required: false schema: type: string - - &308 + - &311 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. @@ -11747,7 +11888,7 @@ paths: required: false schema: type: string - - &309 + - &312 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -11769,7 +11910,7 @@ paths: application/json: schema: type: array - items: &310 + items: &313 type: object properties: "@timestamp": @@ -11891,7 +12032,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &311 + default: &314 value: - "@timestamp": 1606929874512 action: team.add_member @@ -12070,7 +12211,7 @@ paths: vendor_specific: type: object oneOf: - - &93 + - &95 title: AzureBlobConfig description: Azure Blob Config for audit log streaming configuration. type: object @@ -12089,7 +12230,7 @@ paths: - key_id - encrypted_sas_url - container - - &94 + - &96 title: AzureHubConfig description: Azure Event Hubs Config for audit log streaming configuration. type: object @@ -12108,7 +12249,7 @@ paths: - name - encrypted_connstring - key_id - - &95 + - &97 title: AmazonS3OIDCConfig description: Amazon S3 OIDC Config for audit log streaming configuration. type: object @@ -12136,7 +12277,7 @@ paths: - bucket - key_id - region - - &96 + - &98 title: AmazonS3AccessKeysConfig description: Amazon S3 Access Keys Config for audit log streaming configuration. @@ -12170,7 +12311,7 @@ paths: - encrypted_secret_key - key_id - region - - &97 + - &99 title: SplunkConfig description: Splunk Config for Audit Log Stream Configuration type: object @@ -12198,7 +12339,7 @@ paths: - key_id - port - ssl_verify - - &98 + - &100 title: HecConfig description: Hec Config for Audit Log Stream Configuration type: object @@ -12230,7 +12371,7 @@ paths: - key_id - port - ssl_verify - - &99 + - &101 title: GoogleCloudConfig description: Google Cloud Config for audit log streaming configuration. type: object @@ -12248,7 +12389,7 @@ paths: - bucket - key_id - encrypted_json_credentials - - &100 + - &102 title: DatadogConfig description: Datadog Config for audit log streaming configuration. type: object @@ -12279,7 +12420,7 @@ paths: - stream_type - vendor_specific examples: - default: &101 + default: &103 value: enabled: false stream_type: Azure Event Hubs @@ -12293,7 +12434,7 @@ paths: description: The audit log stream configuration was created successfully. content: application/json: - schema: &90 + schema: &92 title: Get an audit log streaming configuration description: Get an audit log streaming configuration for an enterprise. type: object @@ -12324,7 +12465,7 @@ paths: - created_at - updated_at examples: - default: &91 + default: &93 value: id: 1 stream_type: Splunk @@ -12353,7 +12494,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#list-one-audit-log-streaming-configuration-via-a-stream-id parameters: - *41 - - &92 + - &94 name: stream_id description: The ID of the audit log stream configuration. in: path @@ -12365,9 +12506,9 @@ paths: description: Lists one audit log stream configuration via stream ID. content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -12387,7 +12528,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#update-an-existing-audit-log-stream-configuration parameters: - *41 - - *92 + - *94 requestBody: required: true content: @@ -12413,28 +12554,28 @@ paths: vendor_specific: type: object oneOf: - - *93 - - *94 - *95 - *96 - *97 - *98 - *99 - *100 + - *101 + - *102 required: - enabled - stream_type - vendor_specific examples: - default: *101 + default: *103 responses: '200': description: Successful update content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '422': description: Validation error content: @@ -12465,7 +12606,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#delete-an-audit-log-streaming-configuration-for-an-enterprise parameters: - *41 - - *92 + - *94 responses: '204': description: The audit log stream configuration was deleted successfully. @@ -12492,13 +12633,13 @@ paths: subcategory: bypass-requests parameters: - *41 - - &102 + - &104 name: organization_name description: The name of the organization to filter on. in: query schema: type: string - - &103 + - &105 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -12506,7 +12647,7 @@ paths: required: false schema: type: string - - &104 + - &106 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -12514,7 +12655,7 @@ paths: required: false schema: type: string - - &105 + - &107 name: time_period description: |- The time period to filter by. @@ -12530,7 +12671,7 @@ paths: - week - month default: day - - &106 + - &108 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -12557,7 +12698,7 @@ paths: application/json: schema: type: array - items: &312 + items: &315 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -12674,7 +12815,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: &107 + items: &109 title: Bypass response description: A response made by a delegated bypasser to a bypass request. @@ -12718,7 +12859,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &313 + default: &316 value: - id: 21 number: 42 @@ -12809,11 +12950,11 @@ paths: subcategory: delegated-bypass parameters: - *41 - - *102 - - *103 - *104 - *105 - *106 + - *107 + - *108 - *17 - *19 responses: @@ -12823,7 +12964,7 @@ paths: application/json: schema: type: array - items: &315 + items: &318 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -12937,7 +13078,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: *107 + items: *109 url: type: string format: uri @@ -12948,7 +13089,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &316 + default: &319 value: - id: 21 number: 42 @@ -13033,17 +13174,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &321 + - &324 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`, but not both. in: query required: false - schema: &111 + schema: &113 type: string description: The name of the tool used to generate the code scanning analysis. - - &322 + - &325 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 @@ -13051,22 +13192,22 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &112 + schema: &114 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *108 - - *109 + - *110 + - *111 - *19 - *17 - - *110 + - *112 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &323 + schema: &326 type: string description: State of a code scanning alert. enum: @@ -13099,42 +13240,42 @@ paths: application/json: schema: type: array - items: &324 + items: &327 type: object properties: - number: &128 + number: &130 type: integer description: The security alert number. readOnly: true - created_at: &135 + created_at: &137 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &136 + updated_at: &138 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - url: &133 + url: &135 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &134 + html_url: &136 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &542 + instances_url: &545 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &113 + state: &115 type: string description: State of a code scanning alert. nullable: true @@ -13142,7 +13283,7 @@ paths: - open - dismissed - fixed - fixed_at: &138 + fixed_at: &140 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -13156,14 +13297,14 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: &137 + dismissed_at: &139 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissed_reason: &543 + dismissed_reason: &546 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -13172,13 +13313,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &544 + dismissed_comment: &547 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &545 + rule: &548 type: object properties: id: @@ -13231,42 +13372,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &546 + tool: &549 type: object properties: - name: *111 + name: *113 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *112 - most_recent_instance: &547 + guid: *114 + most_recent_instance: &550 type: object properties: - ref: &540 + ref: &543 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &557 + analysis_key: &560 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: &558 + environment: &561 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: &559 + category: &562 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *113 + state: *115 commit_sha: type: string message: @@ -13274,7 +13415,7 @@ paths: properties: text: type: string - location: &560 + location: &563 type: object description: Describe a region within a file for the alert. properties: @@ -13295,7 +13436,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: &561 + items: &564 type: string description: A classification of the file. For example to identify it as generated. @@ -13305,11 +13446,11 @@ paths: - generated - test - library - repository: &120 + repository: &122 title: Simple Repository description: A GitHub repository. type: object - properties: &259 + properties: &261 id: type: integer format: int64 @@ -13536,7 +13677,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &260 + required: &262 - archive_url - assignees_url - blobs_url @@ -13608,7 +13749,7 @@ paths: - most_recent_instance - repository examples: - default: &325 + default: &328 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -13839,7 +13980,7 @@ paths: headers: Link: *47 '404': *6 - '503': &196 + '503': &198 description: Service unavailable content: application/json: @@ -13883,8 +14024,8 @@ paths: schema: type: integer default: 30 - - *108 - - *109 + - *110 + - *111 responses: '200': description: Response @@ -13892,7 +14033,7 @@ paths: application/json: schema: type: array - items: &114 + items: &116 type: object description: A code security configuration properties: @@ -14282,7 +14423,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &118 + code_scanning_options: &120 type: object description: Security Configuration feature options for code scanning nullable: true @@ -14299,7 +14440,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &117 + code_scanning_default_setup_options: &119 type: object description: Feature options for code scanning default setup nullable: true @@ -14424,9 +14565,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *114 + schema: *116 examples: - default: &115 + default: &117 value: id: 1325 target_type: enterprise @@ -14484,7 +14625,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &330 type: array description: A list of default code security configurations items: @@ -14498,9 +14639,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *114 + configuration: *116 examples: - default: &328 + default: &331 value: - default_for_new_repos: public configuration: @@ -14589,7 +14730,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *41 - - &116 + - &118 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -14601,9 +14742,9 @@ paths: description: Response content: application/json: - schema: *114 + schema: *116 examples: - default: *115 + default: *117 '304': *37 '403': *29 '404': *6 @@ -14628,7 +14769,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *41 - - *116 + - *118 requestBody: required: true content: @@ -14707,8 +14848,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *117 - code_scanning_options: *118 + code_scanning_default_setup_options: *119 + code_scanning_options: *120 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -14804,13 +14945,13 @@ paths: description: Response content: application/json: - schema: *114 + schema: *116 examples: - default: *115 + default: *117 '304': *37 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14834,14 +14975,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *41 - - *116 + - *118 responses: - '204': &155 + '204': &157 description: A header with no content is returned. '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14866,7 +15007,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *41 - - *116 + - *118 requestBody: required: true content: @@ -14893,7 +15034,7 @@ paths: '202': *39 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -14918,7 +15059,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *41 - - *116 + - *118 requestBody: required: true content: @@ -14958,12 +15099,12 @@ paths: - none - private_and_internal - public - configuration: *114 + configuration: *116 examples: default: value: default_for_new_repos: all - configuration: &326 + configuration: &329 value: id: 1325 target_type: organization @@ -15020,7 +15161,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *41 - - *116 + - *118 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -15029,8 +15170,8 @@ paths: schema: type: integer default: 30 - - *108 - - *109 + - *110 + - *111 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -15048,7 +15189,7 @@ paths: application/json: schema: type: array - items: &329 + items: &332 type: object description: Repositories associated with a code security configuration and attachment status @@ -15066,13 +15207,13 @@ paths: - failed - updating - removed_by_enterprise - repository: *120 + repository: *122 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: &330 + repository: &333 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -15537,7 +15678,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &146 + items: &148 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -15554,14 +15695,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *121 - required: *122 + properties: *123 + required: *124 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &317 + - &320 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -15636,7 +15777,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &394 + properties: &397 id: description: Unique identifier of the team type: integer @@ -15708,7 +15849,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &395 + required: &398 - id - node_id - url @@ -15734,7 +15875,7 @@ paths: - slug - parent - type - - &145 + - &147 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -15844,7 +15985,7 @@ paths: - created_at additionalProperties: false examples: - default: &147 + default: &149 value: total_seats: 2 seats: @@ -16381,7 +16522,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': &332 + '413': &335 description: Payload Too Large content: application/json: @@ -16803,7 +16944,7 @@ paths: application/json: schema: type: array - items: &209 + items: &211 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -17110,7 +17251,7 @@ paths: - date additionalProperties: true examples: - default: &210 + default: &212 value: - date: '2024-06-24' total_active_users: 24 @@ -17212,7 +17353,7 @@ paths: '500': *40 '403': *29 '404': *6 - '422': &211 + '422': &213 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -17242,7 +17383,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-enterprise-usage-metrics-for-a-specific-day parameters: - *41 - - &123 + - &125 name: day description: The day to request data for, in `YYYY-MM-DD` format. in: query @@ -17256,7 +17397,7 @@ paths: description: Response content: application/json: - schema: &124 + schema: &126 type: object title: Copilot Metrics 1 Day Report description: Links to download the Copilot usage metrics report for @@ -17277,7 +17418,7 @@ paths: - download_links - report_day examples: - default: &125 + default: &127 value: download_links: - https://example.com/copilot-usage-report-1.json @@ -17315,7 +17456,7 @@ paths: description: Response content: application/json: - schema: &126 + schema: &128 type: object title: Copilot Metrics 28 Day Report description: Links to download the latest Copilot usage metrics report @@ -17343,7 +17484,7 @@ paths: - report_start_day - report_end_day examples: - default: &127 + default: &129 value: download_links: - https://example.com/copilot-usage-report-1.json @@ -17377,15 +17518,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-users-usage-metrics-for-a-specific-day parameters: - *41 - - *123 + - *125 responses: '200': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *125 + default: *127 '500': *40 '403': *29 '404': *6 @@ -17418,9 +17559,9 @@ paths: description: Response content: application/json: - schema: *126 + schema: *128 examples: - default: *127 + default: *129 '500': *40 '403': *29 '404': *6 @@ -17448,7 +17589,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &337 + - &340 name: state in: query description: |- @@ -17457,7 +17598,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &338 + - &341 name: severity in: query description: |- @@ -17466,7 +17607,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &339 + - &342 name: ecosystem in: query description: |- @@ -17475,14 +17616,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &340 + - &343 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &341 + - &344 name: epss_percentage in: query description: |- @@ -17494,7 +17635,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 - - &602 + - &605 name: has in: query description: |- @@ -17508,7 +17649,7 @@ paths: type: string enum: - patch - - &342 + - &345 name: assignee in: query description: |- @@ -17517,7 +17658,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &343 + - &346 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -17527,7 +17668,7 @@ paths: enum: - development - runtime - - &344 + - &347 name: sort in: query description: |- @@ -17542,9 +17683,9 @@ paths: - updated - epss_percentage default: created + - *112 - *110 - - *108 - - *109 + - *111 - *17 responses: '200': @@ -17553,11 +17694,11 @@ paths: application/json: schema: type: array - items: &345 + items: &348 type: object description: A Dependabot alert. properties: - number: *128 + number: *130 state: type: string description: The state of the Dependabot alert. @@ -17572,7 +17713,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &129 + package: &131 type: object description: Details for the vulnerable package. readOnly: true @@ -17616,7 +17757,7 @@ paths: - unknown - direct - transitive - security_advisory: &603 + security_advisory: &606 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17646,13 +17787,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &132 + items: &134 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *129 + package: *131 severity: type: string description: The severity of the vulnerability. @@ -17718,8 +17859,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *130 - epss: *131 + cvss_severities: *132 + epss: *133 cwes: type: array description: Details for the advisory pertaining to Common @@ -17818,12 +17959,12 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *132 - url: *133 - html_url: *134 - created_at: *135 - updated_at: *136 - dismissed_at: *137 + security_vulnerability: *134 + url: *135 + html_url: *136 + created_at: *137 + updated_at: *138 + dismissed_at: *139 dismissed_by: title: Simple User description: A GitHub user. @@ -17847,15 +17988,15 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *138 - auto_dismissed_at: &604 + fixed_at: *140 + auto_dismissed_at: &607 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &605 + dismissal_request: &608 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -17898,7 +18039,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *120 + repository: *122 required: - number - state @@ -17917,7 +18058,7 @@ paths: - repository additionalProperties: false examples: - default: &346 + default: &349 value: - number: 2 state: dismissed @@ -18300,7 +18441,7 @@ paths: roles: type: array description: The list of enterprise roles available to the enterprise. - items: &144 + items: &146 title: Enterprise Role description: Enterprise custom roles type: object @@ -18334,8 +18475,8 @@ paths: title: Enterprise description: An enterprise on GitHub. type: object - properties: *139 - required: *140 + properties: *141 + required: *142 nullable: true created_at: description: The date and time the role was created. @@ -18428,7 +18569,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-all-enterprise-roles-from-a-team parameters: - *41 - - &141 + - &143 name: team_slug description: The slug of the enterprise team name. in: path @@ -18471,8 +18612,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#assign-an-enterprise-role-to-a-team parameters: - *41 - - *141 - - &142 + - *143 + - &144 name: role_id description: The unique identifier of the role. in: path @@ -18514,8 +18655,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-an-enterprise-role-from-a-team parameters: - *41 - - *141 - - *142 + - *143 + - *144 responses: '204': description: Response @@ -18549,7 +18690,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-all-enterprise-roles-from-a-user parameters: - *41 - - &143 + - &145 name: username description: The handle for the GitHub user account. in: path @@ -18589,8 +18730,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#assign-an-enterprise-role-to-an-enterprise-user parameters: - *41 - - *143 - - *142 + - *145 + - *144 responses: '204': description: Response @@ -18623,8 +18764,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-enterprise-user-role-assignment parameters: - *41 - - *143 - - *142 + - *145 + - *144 responses: '204': description: Response @@ -18658,13 +18799,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#get-an-enterprise-role parameters: - *41 - - *142 + - *144 responses: '200': description: Response content: application/json: - schema: *144 + schema: *146 examples: default: value: @@ -18718,7 +18859,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#list-teams-that-are-assigned-to-an-enterprise-role parameters: - *41 - - *142 + - *144 - *17 - *19 responses: @@ -18728,9 +18869,9 @@ paths: application/json: schema: type: array - items: *145 + items: *147 examples: - default: &212 + default: &214 value: - id: 1 name: Justice League @@ -18769,7 +18910,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#list-users-that-are-assigned-to-an-enterprise-role parameters: - *41 - - *142 + - *144 - *17 - *19 responses: @@ -18801,7 +18942,7 @@ paths: description: Enterprise Team the user has gotten the role through type: array - items: *145 + items: *147 examples: default: value: @@ -18893,7 +19034,7 @@ paths: application/json: schema: *22 examples: - default: &371 + default: &374 value: id: 1 account: @@ -19034,7 +19175,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-an-enterprise-user parameters: - *41 - - *143 + - *145 responses: '200': description: The user's GitHub Copilot seat details, including usage. @@ -19050,9 +19191,9 @@ paths: teams or multiple organizations are only counted once. seats: type: array - items: *146 + items: *148 examples: - default: *147 + default: *149 '500': *40 '401': *25 '403': *29 @@ -19095,7 +19236,7 @@ paths: type: integer network_configurations: type: array - items: &148 + items: &150 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -19147,7 +19288,7 @@ paths: - name - created_on examples: - default: &456 + default: &459 value: total_count: 2 network_configurations: @@ -19226,9 +19367,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: &149 + default: &151 value: id: 123456789ABCDEF name: My network configuration @@ -19255,7 +19396,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise parameters: - *41 - - &150 + - &152 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -19267,9 +19408,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *149 + default: *151 headers: Link: *47 x-github: @@ -19289,7 +19430,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise parameters: - *41 - - *150 + - *152 requestBody: required: true content: @@ -19329,9 +19470,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *149 + default: *151 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19349,7 +19490,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise parameters: - *41 - - *150 + - *152 responses: '204': description: Response @@ -19372,7 +19513,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &457 + - &460 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -19384,7 +19525,7 @@ paths: description: Response content: application/json: - schema: &458 + schema: &461 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -19418,7 +19559,7 @@ paths: - subnet_id - region examples: - default: &459 + default: &462 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -19457,7 +19598,7 @@ paths: application/json: schema: type: array - items: &151 + items: &153 title: Custom Property for Organization description: Custom property defined for an organization allOf: @@ -19525,7 +19666,7 @@ paths: - property_name - value_type examples: - default: &152 + default: &154 value: - property_name: environment url: https://api.github.com/enterprises/github/org-properties/schema/environment @@ -19585,7 +19726,7 @@ paths: type: array description: The array of organization custom properties to create or update. - items: *151 + items: *153 minItems: 1 maxItems: 100 required: @@ -19618,9 +19759,9 @@ paths: application/json: schema: type: array - items: *151 + items: *153 examples: - default: *152 + default: *154 '403': *29 '404': *6 '422': *7 @@ -19647,7 +19788,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties-for-orgs#get-an-organization-custom-property-definition-from-an-enterprise parameters: - *41 - - &153 + - &155 name: custom_property_name description: The custom property name in: path @@ -19659,9 +19800,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: &154 + default: &156 value: property_name: environment url: https://api.github.com/enterprises/github/org-properties/schema/environment @@ -19698,7 +19839,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties-for-orgs#create-or-update-an-organization-custom-property-definition-on-an-enterprise parameters: - *41 - - *153 + - *155 requestBody: required: true content: @@ -19767,9 +19908,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *154 + default: *156 '403': *29 '404': *6 '422': *7 @@ -19795,9 +19936,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties-for-orgs#remove-an-organization-custom-property-definition-from-an-enterprise parameters: - *41 - - *153 + - *155 responses: - '204': *155 + '204': *157 '403': *29 '404': *6 '422': *7 @@ -19846,7 +19987,7 @@ paths: example: Hello-World properties: type: array - items: &156 + items: &158 title: Custom Property Value description: Custom property name and associated value type: object @@ -19929,7 +20070,7 @@ paths: type: array description: List of custom property names and associated values to apply to the organizations. - items: *156 + items: *158 required: - organization_logins - properties @@ -19979,7 +20120,7 @@ paths: application/json: schema: type: array - items: &157 + items: &159 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -20047,7 +20188,7 @@ paths: - property_name - value_type examples: - default: &158 + default: &160 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -20105,7 +20246,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *157 + items: *159 minItems: 1 maxItems: 100 required: @@ -20135,9 +20276,9 @@ paths: application/json: schema: type: array - items: *157 + items: *159 examples: - default: *158 + default: *160 '403': *29 '404': *6 x-github: @@ -20160,16 +20301,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#promote-a-custom-property-to-an-enterprise parameters: - *41 - - *87 - - *153 + - *89 + - *155 responses: '200': description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: &159 + default: &161 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -20202,15 +20343,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *41 - - *153 + - *155 responses: '200': description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 '403': *29 '404': *6 x-github: @@ -20232,12 +20373,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#create-or-update-a-custom-property-for-an-enterprise parameters: - *41 - - *153 + - *155 requestBody: required: true content: application/json: - schema: &427 + schema: &430 title: Custom Property Set Payload description: Custom property set payload type: object @@ -20303,9 +20444,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 '403': *29 '404': *6 x-github: @@ -20327,9 +20468,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *41 - - *153 + - *155 responses: - '204': *155 + '204': *157 '403': *29 '404': *6 x-github: @@ -20369,7 +20510,7 @@ paths: - push - repository default: branch - enforcement: &168 + enforcement: &170 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -20382,7 +20523,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &169 + items: &171 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -20423,7 +20564,7 @@ paths: - pull_request - exempt default: always - conditions: &193 + conditions: &195 title: Enterprise ruleset conditions type: object description: |- @@ -20436,7 +20577,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &160 + - &162 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -20462,7 +20603,7 @@ paths: type: string required: - organization_name - - &163 + - &165 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -20491,7 +20632,7 @@ paths: is prevented. required: - repository_name - - &162 + - &164 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -20519,8 +20660,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *160 - - &165 + - *162 + - &167 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -20533,7 +20674,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &161 + items: &163 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -20564,16 +20705,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *161 + items: *163 required: - repository_property - - *162 + - *164 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &164 + - &166 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -20590,22 +20731,22 @@ paths: type: integer required: - organization_id - - *163 - - *162 + - *165 + - *164 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: + - *166 + - *167 - *164 - - *165 - - *162 - type: object title: organization_property_and_repository_name description: Conditions to target organizations by property and all repositories allOf: - - &167 + - &169 title: Repository ruleset conditions for organization properties type: object description: Parameters for a organization property condition @@ -20618,7 +20759,7 @@ paths: description: The organization properties and values to include. All of these properties must match for the condition to pass. - items: &166 + items: &168 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a organization @@ -20642,28 +20783,28 @@ paths: description: The organization properties and values to exclude. The condition will not pass if any of these properties match. - items: *166 + items: *168 required: - organization_property - - *163 - - *162 + - *165 + - *164 - type: object title: organization_property_and_repository_property description: Conditions to target organizations by property and repositories by property allOf: + - *169 - *167 - - *165 - - *162 + - *164 rules: type: array description: An array of rules within the ruleset. - items: &194 + items: &196 title: Repository Rule type: object description: A repository rule. oneOf: - - &170 + - &172 title: creation description: Only allow users with bypass permission to create matching refs. @@ -20675,7 +20816,7 @@ paths: type: string enum: - creation - - &171 + - &173 title: update description: Only allow users with bypass permission to update matching refs. @@ -20696,7 +20837,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &172 + - &174 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -20708,7 +20849,7 @@ paths: type: string enum: - deletion - - &173 + - &175 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -20720,7 +20861,7 @@ paths: type: string enum: - required_linear_history - - &174 + - &176 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -20744,7 +20885,7 @@ paths: type: string required: - required_deployment_environments - - &175 + - &177 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -20756,7 +20897,7 @@ paths: type: string enum: - required_signatures - - &176 + - &178 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -20859,7 +21000,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &177 + - &179 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -20906,7 +21047,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &178 + - &180 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -20918,7 +21059,7 @@ paths: type: string enum: - non_fast_forward - - &179 + - &181 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -20955,7 +21096,7 @@ paths: required: - operator - pattern - - &180 + - &182 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -20992,7 +21133,7 @@ paths: required: - operator - pattern - - &181 + - &183 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -21029,7 +21170,7 @@ paths: required: - operator - pattern - - &182 + - &184 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -21066,7 +21207,7 @@ paths: required: - operator - pattern - - &183 + - &185 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -21103,7 +21244,7 @@ paths: required: - operator - pattern - - &184 + - &186 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -21127,7 +21268,7 @@ paths: type: string required: - restricted_file_paths - - &185 + - &187 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -21151,7 +21292,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &186 + - &188 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -21174,7 +21315,7 @@ paths: type: string required: - restricted_file_extensions - - &187 + - &189 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -21198,7 +21339,7 @@ paths: maximum: 100 required: - max_file_size - - &188 + - &190 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -21247,7 +21388,7 @@ paths: - repository_id required: - workflows - - &189 + - &191 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -21307,7 +21448,7 @@ paths: - tool required: - code_scanning_tools - - &190 + - &192 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code review @@ -21357,7 +21498,7 @@ paths: description: Response content: application/json: - schema: &191 + schema: &193 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -21392,11 +21533,11 @@ paths: source: type: string description: The name of the source - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 + items: *171 current_user_can_bypass: type: string description: |- @@ -21428,8 +21569,8 @@ paths: conditions: nullable: true anyOf: - - *162 - - &433 + - *164 + - &436 title: Organization ruleset conditions type: object description: |- @@ -21443,14 +21584,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *162 - - *163 + - *164 + - *165 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *162 + - *164 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -21472,20 +21613,20 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *162 - - *165 + - *164 + - *167 rules: type: array - items: &732 + items: &735 title: Repository Rule type: object description: A repository rule. oneOf: - - *170 - - *171 - *172 - *173 - - &730 + - *174 + - *175 + - &733 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -21563,8 +21704,6 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - *174 - - *175 - *176 - *177 - *178 @@ -21580,6 +21719,8 @@ paths: - *188 - *189 - *190 + - *191 + - *192 created_at: type: string format: date-time @@ -21587,7 +21728,7 @@ paths: type: string format: date-time examples: - default: &192 + default: &194 value: id: 21 name: super cool ruleset @@ -21646,9 +21787,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *192 + default: *194 '404': *6 '500': *40 x-github: @@ -21692,16 +21833,16 @@ paths: - tag - push - repository - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 - conditions: *193 + items: *171 + conditions: *195 rules: description: An array of rules within the ruleset. type: array - items: *194 + items: *196 examples: default: value: @@ -21725,9 +21866,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *192 + default: *194 '404': *6 '500': *40 x-github: @@ -21789,7 +21930,7 @@ paths: application/json: schema: type: array - items: &195 + items: &197 title: Ruleset version type: object description: The historical version of a ruleset @@ -21813,7 +21954,7 @@ paths: type: string format: date-time examples: - default: &436 + default: &439 value: - version_id: 3 actor: @@ -21866,9 +22007,9 @@ paths: description: Response content: application/json: - schema: &437 + schema: &440 allOf: - - *195 + - *197 - type: object required: - state @@ -21921,7 +22062,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &438 + - &441 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -21932,7 +22073,7 @@ paths: enum: - open - resolved - - &439 + - &442 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -21942,7 +22083,7 @@ paths: required: false schema: type: string - - &440 + - &443 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -21951,7 +22092,7 @@ paths: required: false schema: type: string - - &441 + - &444 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -21970,7 +22111,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &442 + - &445 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. @@ -21982,11 +22123,11 @@ paths: - created - updated default: created - - *110 + - *112 - *17 - - *108 - - *109 - - &443 + - *110 + - *111 + - &446 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -21995,7 +22136,7 @@ paths: required: false schema: type: string - - &444 + - &447 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -22004,7 +22145,7 @@ paths: schema: type: boolean default: false - - &445 + - &448 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -22013,7 +22154,7 @@ paths: schema: type: boolean default: false - - &446 + - &449 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -22029,11 +22170,11 @@ paths: application/json: schema: type: array - items: &447 + items: &450 type: object properties: - number: *128 - created_at: *135 + number: *130 + created_at: *137 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -22041,21 +22182,21 @@ paths: format: date-time readOnly: true nullable: true - url: *133 - html_url: *134 + url: *135 + html_url: *136 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &744 + state: &747 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: &745 + resolution: &748 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -22089,7 +22230,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *120 + repository: *122 push_protection_bypassed: type: boolean description: Whether push protection was bypassed for the detected @@ -22162,8 +22303,8 @@ paths: pull request. ' - oneOf: &746 - - &748 + oneOf: &749 + - &751 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -22215,7 +22356,7 @@ paths: - blob_url - commit_sha - commit_url - - &749 + - &752 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. @@ -22270,7 +22411,7 @@ paths: - page_url - commit_sha - commit_url - - &750 + - &753 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -22284,7 +22425,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &751 + - &754 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -22298,7 +22439,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &752 + - &755 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -22312,7 +22453,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &753 + - &756 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22326,7 +22467,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &754 + - &757 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22340,7 +22481,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &755 + - &758 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22354,7 +22495,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &756 + - &759 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. @@ -22368,7 +22509,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &757 + - &760 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. @@ -22382,7 +22523,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &758 + - &761 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. @@ -22396,7 +22537,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &759 + - &762 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. @@ -22410,7 +22551,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &760 + - &763 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -22437,7 +22578,7 @@ paths: required: *21 nullable: true examples: - default: &448 + default: &451 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -22615,7 +22756,7 @@ paths: headers: Link: *47 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -22646,13 +22787,13 @@ paths: description: Response content: application/json: - schema: &449 + schema: &452 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. type: object properties: - pattern_config_version: &198 + pattern_config_version: &200 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -22661,7 +22802,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &197 + items: &199 type: object properties: token_type: @@ -22727,9 +22868,9 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *197 + items: *199 examples: - default: &450 + default: &453 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -22784,7 +22925,7 @@ paths: schema: type: object properties: - pattern_config_version: *198 + pattern_config_version: *200 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -22810,7 +22951,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *198 + custom_pattern_version: *200 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -22846,7 +22987,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 "/enterprises/{enterprise}/settings/billing/advanced-security": get: @@ -22865,7 +23006,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &453 + - &456 name: advanced_security_product in: query description: | @@ -22885,7 +23026,7 @@ paths: description: Success content: application/json: - schema: &454 + schema: &457 type: object properties: total_advanced_security_committers: @@ -22940,7 +23081,7 @@ paths: required: - repositories examples: - default: &455 + default: &458 value: total_advanced_security_committers: 2 total_count: 2 @@ -23350,7 +23491,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/budgets#get-a-budget-by-id parameters: - *41 - - &199 + - &201 name: budget_id description: The ID corresponding to the budget. in: path @@ -23447,7 +23588,7 @@ paths: '404': *6 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -23688,7 +23829,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/budgets#delete-a-budget parameters: - *41 - - *199 + - *201 responses: '200': description: Response when deleting a budget @@ -23715,7 +23856,7 @@ paths: '404': *6 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -23814,7 +23955,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -23943,7 +24084,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#get-a-cost-center-by-id parameters: - *41 - - &201 + - &203 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -24000,7 +24141,7 @@ paths: - name - resources examples: - default: &200 + default: &202 value: id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -24014,7 +24155,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24103,13 +24244,13 @@ paths: - name - resources examples: - default: *200 + default: *202 '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24127,7 +24268,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#delete-a-cost-center parameters: - *41 - - *201 + - *203 responses: '200': description: Response when deleting a cost center @@ -24166,7 +24307,7 @@ paths: '404': *6 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24187,7 +24328,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#add-resources-to-a-cost-center parameters: - *41 - - *201 + - *203 requestBody: required: true content: @@ -24257,9 +24398,9 @@ paths: previous_cost_center: yet-another-cost-center '400': *14 '403': *29 - '409': *119 + '409': *121 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24279,7 +24420,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#remove-resources-from-a-cost-center parameters: - *41 - - *201 + - *203 requestBody: required: true content: @@ -24326,7 +24467,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24347,7 +24488,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-premium-request-usage-report-for-an-enterprise parameters: - *41 - - &204 + - &206 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -24356,7 +24497,7 @@ paths: required: false schema: type: integer - - &206 + - &208 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current @@ -24365,7 +24506,7 @@ paths: required: false schema: type: integer - - &205 + - &207 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -24374,7 +24515,7 @@ paths: required: false schema: type: integer - - &207 + - &209 name: organization description: The organization name to query usage for. The name is not case sensitive. @@ -24394,7 +24535,7 @@ paths: required: false schema: type: string - - &208 + - &210 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -24533,7 +24674,7 @@ paths: '403': *29 '404': *6 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24566,7 +24707,7 @@ paths: usage_report_exports: type: array description: List of usage report exports - items: &202 + items: &204 type: object properties: id: @@ -24656,7 +24797,7 @@ paths: '403': *29 '404': *6 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24722,9 +24863,9 @@ paths: description: Report export request accepted content: application/json: - schema: *202 + schema: *204 examples: - usage-report-export: &203 + usage-report-export: &205 value: id: a1b2c3d4-e5f6-7890-abcd-ef1234567890 report_type: detailed @@ -24740,7 +24881,7 @@ paths: '403': *29 '404': *6 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24774,14 +24915,14 @@ paths: description: Usage report export details content: application/json: - schema: *202 + schema: *204 examples: - usage-report-export: *203 + usage-report-export: *205 '401': *25 '403': *29 '404': *6 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24802,7 +24943,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-usage-report-for-an-enterprise parameters: - *41 - - *204 + - *206 - 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 @@ -24811,7 +24952,7 @@ paths: required: false schema: type: integer - - *205 + - *207 - name: cost_center_id description: The ID corresponding to a cost center. The default value is no cost center. @@ -24894,7 +25035,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24918,17 +25059,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-usage-summary-for-an-enterprise parameters: - *41 - - *204 - *206 - - *205 + - *208 - *207 + - *209 - name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *208 + - *210 - name: sku description: The SKU to query for usage. in: query @@ -25061,7 +25202,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25095,7 +25236,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-enterprise-team parameters: - *41 - - *141 + - *143 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -25127,13 +25268,13 @@ paths: application/json: schema: type: array - items: *209 + items: *211 examples: - default: *210 + default: *212 '500': *40 '403': *29 '404': *6 - '422': *211 + '422': *213 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -25160,9 +25301,9 @@ paths: application/json: schema: type: array - items: *145 + items: *147 examples: - default: *212 + default: *214 headers: Link: *47 '403': *29 @@ -25237,9 +25378,9 @@ paths: description: Response content: application/json: - schema: *145 + schema: *147 examples: - default: &217 + default: &219 value: id: 1 name: Justice League @@ -25268,7 +25409,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *41 - - &213 + - &215 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -25287,7 +25428,7 @@ paths: type: array items: *4 examples: - default: &214 + default: &216 value: - login: octocat id: 1 @@ -25326,7 +25467,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *41 - - *213 + - *215 requestBody: required: true content: @@ -25357,7 +25498,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -25375,7 +25516,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *41 - - *213 + - *215 requestBody: required: true content: @@ -25406,7 +25547,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -25424,8 +25565,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *41 - - *213 - - *143 + - *215 + - *145 responses: '200': description: User is a member of the enterprise team. @@ -25433,7 +25574,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &215 + exampleKey1: &217 value: login: octocat id: 1 @@ -25469,8 +25610,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *41 - - *213 - - *143 + - *215 + - *145 responses: '201': description: Successfully added team member @@ -25478,7 +25619,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *215 + exampleKey1: *217 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -25496,8 +25637,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *41 - - *213 - - *143 + - *215 + - *145 responses: '204': description: Response @@ -25519,7 +25660,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *41 - - *213 + - *215 - *17 - *19 responses: @@ -25529,9 +25670,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: &216 + default: &218 value: login: github id: 1 @@ -25562,7 +25703,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *41 - - *213 + - *215 requestBody: required: true content: @@ -25590,9 +25731,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: &256 + default: &258 value: - login: github id: 1 @@ -25623,7 +25764,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *41 - - *213 + - *215 requestBody: required: true content: @@ -25664,16 +25805,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *41 - - *213 - - *87 + - *215 + - *89 responses: '200': description: The team is assigned to the organization content: application/json: - schema: *73 + schema: *75 examples: - default: *216 + default: *218 '404': description: The team is not assigned to the organization x-github: @@ -25692,16 +25833,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *41 - - *213 - - *87 + - *215 + - *89 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *73 + schema: *75 examples: - default: *216 + default: *218 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -25718,8 +25859,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *41 - - *213 - - *87 + - *215 + - *89 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -25743,7 +25884,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *41 - - &218 + - &220 name: team_slug description: The slug of the team name. in: path @@ -25755,9 +25896,9 @@ paths: description: Response content: application/json: - schema: *145 + schema: *147 examples: - default: *217 + default: *219 headers: Link: *47 '403': *29 @@ -25777,7 +25918,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *41 - - *218 + - *220 requestBody: required: true content: @@ -25832,9 +25973,9 @@ paths: description: Response content: application/json: - schema: *145 + schema: *147 examples: - default: *217 + default: *219 headers: Link: *47 '403': *29 @@ -25857,7 +25998,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *41 - - *218 + - *220 responses: '204': description: Response @@ -25956,7 +26097,7 @@ paths: application/json: schema: type: array - items: &251 + items: &253 title: Event description: Event type: object @@ -25966,7 +26107,7 @@ paths: type: type: string nullable: true - actor: &219 + actor: &221 title: Actor description: Actor type: object @@ -26006,7 +26147,7 @@ paths: - id - name - url - org: *219 + org: *221 payload: oneOf: - title: CreateEvent @@ -26052,7 +26193,7 @@ paths: properties: action: type: string - discussion: &885 + discussion: &888 title: Discussion description: A Discussion in a repository. type: object @@ -26339,7 +26480,7 @@ paths: - id labels: type: array - items: &224 + items: &226 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -26414,12 +26555,12 @@ paths: properties: action: type: string - issue: &225 + issue: &227 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &665 + properties: &668 id: type: integer format: int64 @@ -26532,7 +26673,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &416 + properties: &419 url: type: string format: uri @@ -26602,7 +26743,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &417 + required: &420 - closed_issues - creator - description @@ -26681,7 +26822,7 @@ paths: timeline_url: type: string format: uri - type: &381 + type: &384 title: Issue Type description: The type of issue. type: object @@ -26731,7 +26872,7 @@ paths: - node_id - name - description - repository: *78 + repository: *80 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -26742,9 +26883,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *220 - required: *221 - author_association: &222 + properties: *222 + required: *223 + author_association: &224 title: author_association type: string example: OWNER @@ -26759,7 +26900,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &223 + reactions: &225 title: Reaction Rollup type: object properties: @@ -26795,7 +26936,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &804 + sub_issues_summary: &807 title: Sub-issues Summary type: object properties: @@ -26820,7 +26961,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &226 + properties: &228 id: description: Unique identifier of the issue comment example: 42 @@ -26863,7 +27004,7 @@ paths: issue_url: type: string format: uri - author_association: *222 + author_association: *224 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -26874,15 +27015,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 - reactions: *223 + properties: *222 + required: *223 + reactions: *225 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &687 + properties: &690 pinned_at: type: string format: date-time @@ -26894,11 +27035,11 @@ paths: properties: *20 required: *21 nullable: true - required: &688 + required: &691 - pinned_at - pinned_by nullable: true - required: &227 + required: &229 - id - node_id - html_url @@ -26908,7 +27049,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &805 + issue_dependencies_summary: &808 title: Issue Dependencies Summary type: object properties: @@ -26927,7 +27068,7 @@ paths: - total_blocking issue_field_values: type: array - items: &672 + items: &675 title: Issue Field Value description: A value assigned to an issue field type: object @@ -26988,7 +27129,7 @@ paths: - node_id - data_type - value - required: &666 + required: &669 - assignee - closed_at - comments @@ -27013,10 +27154,10 @@ paths: assignees: type: array items: *4 - label: *224 + label: *226 labels: type: array - items: *224 + items: *226 required: - action - issue @@ -27025,14 +27166,14 @@ paths: properties: action: type: string - issue: *225 - comment: &661 + issue: *227 + comment: &664 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 required: - action - issue @@ -27207,8 +27348,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true allow_forking: type: boolean @@ -27297,7 +27438,7 @@ paths: type: string number: type: integer - pull_request: &230 + pull_request: &232 title: Pull Request Minimal type: object properties: @@ -27368,10 +27509,10 @@ paths: assignees: type: array items: *4 - label: *224 + label: *226 labels: type: array - items: *224 + items: *226 required: - action - number @@ -27381,7 +27522,7 @@ paths: properties: action: type: string - pull_request: *230 + pull_request: *232 comment: type: object properties: @@ -27632,7 +27773,7 @@ paths: - pull_request updated_at: type: string - pull_request: *230 + pull_request: *232 required: - action - review @@ -27681,7 +27822,7 @@ paths: updated_at: type: string format: date-time - reactions: *223 + reactions: *225 required: - action - comment @@ -27692,7 +27833,7 @@ paths: type: string release: allOf: - - &723 + - &726 title: Release description: A release. type: object @@ -27763,7 +27904,7 @@ paths: author: *4 assets: type: array - items: &724 + items: &727 title: Release Asset description: Data related to a release. type: object @@ -27838,7 +27979,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *223 + reactions: *225 required: - assets_url - upload_url @@ -27930,7 +28071,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28011,7 +28152,7 @@ paths: _links: type: object properties: - timeline: &231 + timeline: &233 title: Link With Type description: Hypermedia Link with Type type: object @@ -28023,17 +28164,17 @@ paths: required: - href - type - user: *231 - security_advisories: *231 - current_user: *231 - current_user_public: *231 - current_user_actor: *231 - current_user_organization: *231 + user: *233 + security_advisories: *233 + current_user: *233 + current_user_public: *233 + current_user_actor: *233 + current_user_organization: *233 current_user_organizations: type: array - items: *231 - repository_discussions: *231 - repository_discussions_category: *231 + items: *233 + repository_discussions: *233 + repository_discussions_category: *233 required: - timeline - user @@ -28095,7 +28236,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *232 + - *234 - *17 - *19 responses: @@ -28105,7 +28246,7 @@ paths: application/json: schema: type: array - items: &233 + items: &235 title: Base Gist description: Base Gist type: object @@ -28204,7 +28345,7 @@ paths: - created_at - updated_at examples: - default: &234 + default: &236 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -28325,7 +28466,7 @@ paths: description: Response content: application/json: - schema: &235 + schema: &237 title: Gist Simple description: Gist Simple type: object @@ -28342,7 +28483,7 @@ paths: url: type: string format: uri - user: &811 + user: &814 title: Public User description: Public User type: object @@ -28704,7 +28845,7 @@ paths: truncated: type: boolean examples: - default: &236 + default: &238 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -28808,7 +28949,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *232 + - *234 - *17 - *19 responses: @@ -28818,9 +28959,9 @@ paths: application/json: schema: type: array - items: *233 + items: *235 examples: - default: *234 + default: *236 headers: Link: *47 '422': *15 @@ -28842,7 +28983,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *232 + - *234 - *17 - *19 responses: @@ -28852,9 +28993,9 @@ paths: application/json: schema: type: array - items: *233 + items: *235 examples: - default: *234 + default: *236 headers: Link: *47 '401': *25 @@ -28882,7 +29023,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &237 + - &239 name: gist_id description: The unique identifier of the gist. in: path @@ -28894,10 +29035,10 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: - default: *236 - '403': &240 + default: *238 + '403': &242 description: Forbidden Gist content: application/json: @@ -28945,7 +29086,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *237 + - *239 requestBody: required: true content: @@ -29005,9 +29146,9 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: - updateGist: *236 + updateGist: *238 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -29165,7 +29306,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *237 + - *239 responses: '204': description: Response @@ -29194,7 +29335,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *237 + - *239 - *17 - *19 responses: @@ -29204,7 +29345,7 @@ paths: application/json: schema: type: array - items: &238 + items: &240 title: Gist Comment description: A comment made to a gist. type: object @@ -29239,7 +29380,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *222 + author_association: *224 required: - url - id @@ -29304,7 +29445,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *237 + - *239 requestBody: required: true content: @@ -29329,9 +29470,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *240 examples: - default: &239 + default: &241 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -29389,8 +29530,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *237 - - &241 + - *239 + - &243 name: comment_id description: The unique identifier of the comment. in: path @@ -29403,12 +29544,12 @@ paths: description: Response content: application/json: - schema: *238 + schema: *240 examples: - default: *239 + default: *241 '304': *37 '404': *6 - '403': *240 + '403': *242 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29430,8 +29571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *237 - - *241 + - *239 + - *243 requestBody: required: true content: @@ -29456,9 +29597,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *240 examples: - default: *239 + default: *241 '404': *6 x-github: githubCloudOnly: false @@ -29475,8 +29616,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *237 - - *241 + - *239 + - *243 responses: '204': description: Response @@ -29499,7 +29640,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *237 + - *239 - *17 - *19 responses: @@ -29600,7 +29741,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *237 + - *239 - *17 - *19 responses: @@ -29610,7 +29751,7 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: default: value: @@ -29675,13 +29816,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *237 + - *239 responses: '201': description: Response content: application/json: - schema: *233 + schema: *235 examples: default: value: @@ -29752,7 +29893,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *237 + - *239 responses: '204': description: Response if gist is starred @@ -29782,7 +29923,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *237 + - *239 responses: '204': description: Response @@ -29804,7 +29945,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *237 + - *239 responses: '204': description: Response @@ -29833,7 +29974,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *237 + - *239 - name: sha in: path required: true @@ -29844,9 +29985,9 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: - default: *236 + default: *238 '422': *15 '404': *6 '403': *29 @@ -30007,7 +30148,7 @@ paths: type: array items: allOf: - - *78 + - *80 repository_selection: type: string example: selected @@ -30214,7 +30355,7 @@ paths: - closed - all default: open - - &384 + - &387 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -30232,8 +30373,8 @@ paths: - updated - comments default: created - - *110 - - *232 + - *112 + - *234 - name: collab in: query required: false @@ -30263,9 +30404,9 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: &385 + default: &388 value: - id: 1 node_id: MDU6SXNzdWUx @@ -30549,8 +30690,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 examples: default: value: @@ -30835,7 +30976,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &242 + X-CommonMarker-Version: &244 example: 0.17.4 schema: type: string @@ -30890,7 +31031,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *242 + X-CommonMarker-Version: *244 content: text/html: schema: @@ -30919,7 +31060,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &245 + - &247 name: account_id description: account_id parameter in: path @@ -30931,7 +31072,7 @@ paths: description: Response content: application/json: - schema: &244 + schema: &246 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -30961,7 +31102,7 @@ paths: nullable: true id: type: integer - plan: &243 + plan: &245 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -31050,7 +31191,7 @@ paths: nullable: true updated_at: type: string - plan: *243 + plan: *245 required: - url - id @@ -31058,7 +31199,7 @@ paths: - login - marketplace_purchase examples: - default: &246 + default: &248 value: url: https://api.github.com/orgs/github type: Organization @@ -31143,9 +31284,9 @@ paths: application/json: schema: type: array - items: *243 + items: *245 examples: - default: &247 + default: &249 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -31185,14 +31326,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &248 + - &250 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &249 + - &251 name: sort description: The property to sort the results by. in: query @@ -31222,9 +31363,9 @@ paths: application/json: schema: type: array - items: *244 + items: *246 examples: - default: &250 + default: &252 value: - url: https://api.github.com/orgs/github type: Organization @@ -31298,15 +31439,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *245 + - *247 responses: '200': description: Response content: application/json: - schema: *244 + schema: *246 examples: - default: *246 + default: *248 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -31338,9 +31479,9 @@ paths: application/json: schema: type: array - items: *243 + items: *245 examples: - default: *247 + default: *249 headers: Link: *47 '401': *25 @@ -31363,8 +31504,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *248 - - *249 + - *250 + - *251 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -31384,9 +31525,9 @@ paths: application/json: schema: type: array - items: *244 + items: *246 examples: - default: *250 + default: *252 headers: Link: *47 '401': *25 @@ -31650,14 +31791,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &468 + - &471 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &469 + - &472 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -31674,7 +31815,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -31719,7 +31860,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &474 + '301': &477 description: Moved permanently content: application/json: @@ -31741,7 +31882,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &697 + - &700 name: all description: If `true`, show notifications marked as read. in: query @@ -31749,7 +31890,7 @@ paths: schema: type: boolean default: false - - &698 + - &701 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -31758,8 +31899,8 @@ paths: schema: type: boolean default: false - - *232 - - &699 + - *234 + - &702 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: @@ -31784,18 +31925,18 @@ paths: application/json: schema: type: array - items: &252 + items: &254 title: Thread description: Thread type: object properties: id: type: string - repository: &288 + repository: &291 title: Minimal Repository description: Minimal Repository type: object - properties: &350 + properties: &353 id: type: integer format: int64 @@ -32083,7 +32224,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &430 + security_and_analysis: &433 nullable: true type: object properties: @@ -32204,7 +32345,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &351 + required: &354 - archive_url - assignees_url - blobs_url @@ -32292,7 +32433,7 @@ paths: - url - subscription_url examples: - default: &700 + default: &703 value: - id: '1' repository: @@ -32458,7 +32599,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &253 + - &255 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -32472,7 +32613,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *254 examples: default: value: @@ -32575,7 +32716,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *253 + - *255 responses: '205': description: Reset Content @@ -32598,7 +32739,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *253 + - *255 responses: '204': description: No content @@ -32621,13 +32762,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *253 + - *255 responses: '200': description: Response content: application/json: - schema: &254 + schema: &256 title: Thread Subscription description: Thread Subscription type: object @@ -32664,7 +32805,7 @@ paths: - url - subscribed examples: - default: &255 + default: &257 value: subscribed: true ignored: false @@ -32695,7 +32836,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *253 + - *255 requestBody: required: false content: @@ -32716,9 +32857,9 @@ paths: description: Response content: application/json: - schema: *254 + schema: *256 examples: - default: *255 + default: *257 '304': *37 '403': *29 '401': *25 @@ -32741,7 +32882,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *253 + - *255 responses: '204': description: Response @@ -32836,9 +32977,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *256 + default: *258 headers: Link: example: ; rel="next" @@ -32889,7 +33030,7 @@ paths: type: integer custom_roles: type: array - items: &333 + items: &336 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -32937,7 +33078,7 @@ paths: - created_at - updated_at examples: - default: &334 + default: &337 value: id: 8030 name: Security Engineer @@ -32984,13 +33125,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &257 + schema: &259 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -33023,12 +33164,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *257 + schema: *259 examples: selected_actions: *44 responses: @@ -33057,13 +33198,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &258 + schema: &260 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -33096,12 +33237,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *258 + schema: *260 examples: selected_actions: *46 responses: @@ -33130,7 +33271,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-organization parameters: - - *87 + - *89 - name: page in: query description: The page number of results to fetch. @@ -33174,8 +33315,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *259 - required: *260 + properties: *261 + required: *262 nullable: true additionalProperties: false examples: @@ -33281,7 +33422,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -33347,7 +33488,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *87 + - *89 requestBody: required: true content: @@ -33399,7 +33540,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties-for-orgs#get-all-custom-property-values-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -33407,9 +33548,9 @@ paths: application/json: schema: type: array - items: *156 + items: *158 examples: - default: &706 + default: &709 value: - property_name: environment value: production @@ -33443,7 +33584,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties-for-orgs#create-or-update-custom-property-values-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -33455,11 +33596,11 @@ paths: type: array description: A list of custom property names and associated values to apply to the organization. - items: *156 + items: *158 required: - properties examples: - default: &707 + default: &710 value: properties: - property_name: environment @@ -33500,13 +33641,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &261 + schema: &263 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -33839,7 +33980,7 @@ paths: - updated_at - archived_at examples: - default-response: &262 + default-response: &264 value: login: github id: 1 @@ -33941,7 +34082,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#update-an-organization parameters: - - *87 + - *89 requestBody: required: false content: @@ -34164,18 +34305,18 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *262 + default: *264 '422': description: Validation failed content: application/json: schema: oneOf: - - *263 - - *264 - '409': *119 + - *265 + - *266 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34198,7 +34339,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#delete-an-organization parameters: - - *87 + - *89 responses: '202': *39 '404': *6 @@ -34223,15 +34364,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *265 + schema: *267 examples: - default: *266 + default: *268 headers: Link: *47 x-github: @@ -34254,7 +34395,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -34272,7 +34413,7 @@ paths: type: integer repository_cache_usages: type: array - items: &481 + items: &484 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -34327,7 +34468,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -34347,7 +34488,7 @@ paths: type: array items: *48 examples: - default: *267 + default: *269 headers: Link: *47 x-github: @@ -34367,7 +34508,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -34466,7 +34607,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34504,7 +34645,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - - *87 + - *89 - *50 responses: '200': @@ -34513,7 +34654,7 @@ paths: application/json: schema: *49 examples: - default: *268 + default: *270 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34532,7 +34673,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *87 + - *89 - *50 responses: '204': @@ -34557,7 +34698,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - *50 - - *87 + - *89 responses: '200': description: Response @@ -34595,7 +34736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - - *87 + - *89 - *50 - *53 responses: @@ -34605,7 +34746,7 @@ paths: application/json: schema: *52 examples: - default: *269 + default: *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34624,7 +34765,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - - *87 + - *89 - *50 - *53 responses: @@ -34647,7 +34788,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34683,7 +34824,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34718,15 +34859,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *270 + schema: *272 examples: - default: *271 + default: *273 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34744,7 +34885,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34762,7 +34903,7 @@ paths: type: array items: *56 examples: - default: *272 + default: *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34780,7 +34921,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34824,7 +34965,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *87 + - *89 - *58 responses: '200': @@ -34853,7 +34994,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *87 + - *89 - *58 requestBody: required: true @@ -34924,7 +35065,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *87 + - *89 - *58 responses: '202': @@ -34939,6 +35080,111 @@ paths: enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - *89 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *59 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *89 + requestBody: + required: true + content: + application/json: + schema: *275 + examples: + default: *60 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *59 + examples: + default: *60 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *89 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -34953,13 +35199,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *87 + - *89 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &273 + schema: &276 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -34973,7 +35219,7 @@ paths: required: - include_claim_keys examples: - default: &274 + default: &277 value: include_claim_keys: - repo @@ -34995,20 +35241,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 responses: '201': description: Empty response content: application/json: - schema: &299 + schema: &302 title: Empty Object description: An object without any properties. type: object @@ -35038,7 +35284,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -35047,7 +35293,7 @@ paths: schema: type: object properties: - enabled_repositories: &276 + enabled_repositories: &279 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -35060,9 +35306,9 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: *60 - selected_actions_url: *275 - sha_pinning_required: *61 + allowed_actions: *62 + selected_actions_url: *278 + sha_pinning_required: *63 required: - enabled_repositories examples: @@ -35092,7 +35338,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -35103,9 +35349,9 @@ paths: schema: type: object properties: - enabled_repositories: *276 - allowed_actions: *60 - sha_pinning_required: *61 + enabled_repositories: *279 + allowed_actions: *62 + sha_pinning_required: *63 required: - enabled_repositories examples: @@ -35133,13 +35379,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *277 + schema: *280 examples: response: summary: Example response @@ -35165,12 +35411,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *278 + schema: *281 examples: application/json: value: @@ -35180,7 +35426,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 x-github: enabledForGitHubApps: true @@ -35200,15 +35446,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *62 + schema: *64 examples: - default: *279 + default: *282 '404': *6 x-github: enabledForGitHubApps: true @@ -35227,7 +35473,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -35237,7 +35483,7 @@ paths: required: true content: application/json: - schema: *62 + schema: *64 examples: default: summary: Set approval policy to first time contributors @@ -35259,15 +35505,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: *63 + default: *65 '403': *29 '404': *6 x-github: @@ -35285,14 +35531,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *281 + schema: *284 examples: - default: *63 + default: *65 responses: '204': description: Empty response for successful settings update @@ -35322,7 +35568,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -35340,9 +35586,9 @@ paths: type: number repositories: type: array - items: *78 + items: *80 examples: - default: &283 + default: &286 value: total_count: 1 repositories: @@ -35482,7 +35728,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -35526,8 +35772,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *87 - - &282 + - *89 + - &285 name: repository_id description: The unique identifier of the repository. in: path @@ -35555,8 +35801,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *87 - - *282 + - *89 + - *285 responses: '204': description: Response @@ -35579,15 +35825,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -35610,7 +35856,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -35618,9 +35864,9 @@ paths: required: false content: application/json: - schema: *65 + schema: *67 examples: - selected_actions: *66 + selected_actions: *68 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -35640,7 +35886,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -35688,7 +35934,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -35715,7 +35961,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 x-github: enabledForGitHubApps: true @@ -35735,7 +35981,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -35750,9 +35996,9 @@ paths: type: integer repositories: type: array - items: *78 + items: *80 examples: - default: *283 + default: *286 '403': *29 '404': *6 x-github: @@ -35772,7 +36018,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -35820,14 +36066,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *87 - - *282 + - *89 + - *285 responses: '204': description: No content '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 x-github: enabledForGitHubApps: true @@ -35847,14 +36093,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *87 - - *282 + - *89 + - *285 responses: '204': description: No content '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 x-github: enabledForGitHubApps: true @@ -35876,15 +36122,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *284 + schema: *287 examples: - default: *69 + default: *71 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35905,7 +36151,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Success response @@ -35916,9 +36162,9 @@ paths: required: false content: application/json: - schema: *285 + schema: *288 examples: - default: *69 + default: *71 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35938,7 +36184,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *87 + - *89 - *17 - *19 - name: visible_to_repository @@ -35963,7 +36209,7 @@ paths: type: number runner_groups: type: array - items: &286 + items: &289 type: object properties: id: @@ -36079,7 +36325,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -36151,9 +36397,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: &287 + default: &290 value: id: 2 name: octo-runner-group @@ -36188,14 +36434,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *87 - - *72 + - *89 + - *74 responses: '200': description: Response content: application/json: - schema: *286 + schema: *289 examples: default: value: @@ -36231,8 +36477,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *87 - - *72 + - *89 + - *74 requestBody: required: true content: @@ -36286,9 +36532,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *287 + default: *290 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -36307,8 +36553,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *87 - - *72 + - *89 + - *74 responses: '204': description: Response @@ -36331,8 +36577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *87 - - *72 + - *89 + - *74 - *17 - *19 responses: @@ -36352,7 +36598,7 @@ paths: type: array items: *48 examples: - default: *267 + default: *269 headers: Link: *47 x-github: @@ -36374,8 +36620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *87 - - *72 + - *89 + - *74 - *19 - *17 responses: @@ -36393,9 +36639,9 @@ paths: type: number repositories: type: array - items: *288 + items: *291 examples: - default: &814 + default: &817 value: total_count: 1 repositories: @@ -36647,8 +36893,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *87 - - *72 + - *89 + - *74 requestBody: required: true content: @@ -36692,9 +36938,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *87 - - *72 - - *282 + - *89 + - *74 + - *285 responses: '204': description: Response @@ -36716,9 +36962,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *87 - - *72 - - *282 + - *89 + - *74 + - *285 responses: '204': description: Response @@ -36741,8 +36987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *87 - - *72 + - *89 + - *74 - *17 - *19 responses: @@ -36760,9 +37006,9 @@ paths: type: number runners: type: array - items: *76 + items: *78 examples: - default: *77 + default: *79 headers: Link: *47 x-github: @@ -36783,8 +37029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *87 - - *72 + - *89 + - *74 requestBody: required: true content: @@ -36828,9 +37074,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *87 - - *72 - - *75 + - *89 + - *74 + - *77 responses: '204': description: Response @@ -36852,9 +37098,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *87 - - *72 - - *75 + - *89 + - *74 + - *77 responses: '204': description: Response @@ -36884,7 +37130,7 @@ paths: in: query schema: type: string - - *87 + - *89 - *17 - *19 responses: @@ -36902,9 +37148,9 @@ paths: type: integer runners: type: array - items: *76 + items: *78 examples: - default: *77 + default: *79 headers: Link: *47 x-github: @@ -36928,7 +37174,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -36936,9 +37182,9 @@ paths: application/json: schema: type: array - items: *289 + items: *292 examples: - default: *290 + default: *293 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36960,7 +37206,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -37003,10 +37249,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *291 + '201': *294 '404': *6 '422': *7 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37034,15 +37280,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *87 + - *89 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: - default: *292 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37070,15 +37316,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *87 + - *89 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: - default: *293 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37100,16 +37346,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 + - *89 + - *77 responses: '200': description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: *294 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37130,8 +37376,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *87 - - *75 + - *89 + - *77 responses: '204': description: Response @@ -37157,10 +37403,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 + - *89 + - *77 responses: - '200': *81 + '200': *83 '404': *6 x-github: githubCloudOnly: false @@ -37182,8 +37428,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 + - *89 + - *77 requestBody: required: true content: @@ -37207,7 +37453,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -37231,8 +37477,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 + - *89 + - *77 requestBody: required: true content: @@ -37257,7 +37503,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -37281,10 +37527,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 + - *89 + - *77 responses: - '200': *295 + '200': *298 '404': *6 x-github: githubCloudOnly: false @@ -37311,11 +37557,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 - - *296 + - *89 + - *77 + - *299 responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -37340,7 +37586,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-organization-secrets parameters: - - *87 + - *89 - *17 - *19 responses: @@ -37358,7 +37604,7 @@ paths: type: integer secrets: type: array - items: &297 + items: &300 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -37431,13 +37677,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-public-key parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &501 + schema: &504 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -37466,7 +37712,7 @@ paths: - key_id - key examples: - default: &502 + default: &505 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -37491,8 +37737,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - - *87 - - &298 + - *89 + - &301 name: secret_name description: The name of the secret. in: path @@ -37504,7 +37750,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *300 examples: default: value: @@ -37534,8 +37780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -37592,7 +37838,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -37618,8 +37864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 responses: '204': description: Response @@ -37645,8 +37891,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - *19 - *17 responses: @@ -37664,9 +37910,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: &302 + default: &305 value: total_count: 1 repositories: @@ -37758,8 +38004,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -37811,8 +38057,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -37845,8 +38091,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -37878,8 +38124,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - - *87 - - &486 + - *89 + - &489 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -37903,7 +38149,7 @@ paths: type: integer variables: type: array - items: &300 + items: &303 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -37988,7 +38234,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-organization-variable parameters: - - *87 + - *89 requestBody: required: true content: @@ -38036,7 +38282,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -38061,8 +38307,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - - *87 - - &301 + - *89 + - &304 name: name description: The name of the variable. in: path @@ -38074,7 +38320,7 @@ paths: description: Response content: application/json: - schema: *300 + schema: *303 examples: default: value: @@ -38104,8 +38350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 requestBody: required: true content: @@ -38167,8 +38413,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 responses: '204': description: Response @@ -38194,8 +38440,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 - *19 - *17 responses: @@ -38213,9 +38459,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: *302 + default: *305 '409': description: Response when the visibility of the variable is not set to `selected` @@ -38241,8 +38487,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 requestBody: required: true content: @@ -38291,8 +38537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 - name: repository_id in: path required: true @@ -38326,8 +38572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 - name: repository_id in: path required: true @@ -38358,15 +38604,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#get-announcement-banner-for-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *85 + default: *87 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -38385,19 +38631,19 @@ paths: required: true content: application/json: - schema: *303 + schema: *306 examples: - default: *85 + default: *87 parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *85 + default: *87 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -38413,7 +38659,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#remove-announcement-banner-from-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -38446,7 +38692,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *87 + - *89 requestBody: required: true content: @@ -38562,7 +38808,7 @@ paths: type: integer deployment_records: type: array - items: &304 + items: &307 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -38606,7 +38852,7 @@ paths: with the deployment record. nullable: true examples: - default: &305 + default: &308 value: total_count: 1 deployment_records: @@ -38641,7 +38887,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *87 + - *89 - name: cluster in: path description: The cluster name. @@ -38777,9 +39023,9 @@ paths: type: integer deployment_records: type: array - items: *304 + items: *307 examples: - default: *305 + default: *308 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38799,7 +39045,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *87 + - *89 requestBody: required: true content: @@ -38951,7 +39197,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *87 + - *89 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -38976,9 +39222,9 @@ paths: type: integer deployment_records: type: array - items: *304 + items: *307 examples: - default: *305 + default: *308 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38998,7 +39244,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *87 + - *89 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -39081,9 +39327,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *108 - - *109 - - *87 + - *110 + - *111 + - *89 requestBody: required: true content: @@ -39107,12 +39353,12 @@ paths: required: - subject_digests examples: - default: &844 + default: &847 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &845 + withPredicateType: &848 value: subject_digests: - sha256:abc123 @@ -39170,7 +39416,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &846 + default: &849 value: attestations_subject_digests: - sha256:abc: @@ -39279,7 +39525,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *87 + - *89 requestBody: required: true content: @@ -39344,7 +39590,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *87 + - *89 - name: subject_digest description: Subject Digest in: path @@ -39377,9 +39623,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *108 - - *109 - - *87 + - *110 + - *111 + - *89 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -39427,7 +39673,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-id parameters: - - *87 + - *89 - name: attestation_id description: Attestation ID in: path @@ -39463,9 +39709,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestations parameters: - *17 - - *108 - - *109 - - *87 + - *110 + - *111 + - *89 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -39520,7 +39766,7 @@ paths: initiator: type: string examples: - default: &515 + default: &518 value: attestations: - bundle: @@ -39638,7 +39884,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-the-audit-log-for-an-organization parameters: - - *87 + - *89 - name: phrase description: A search phrase. For more information, see [Searching the audit log](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization#searching-the-audit-log). @@ -39646,10 +39892,10 @@ paths: required: false schema: type: string - - *306 - - *307 - - *308 - *309 + - *310 + - *311 + - *312 - *17 responses: '200': @@ -39658,9 +39904,9 @@ paths: application/json: schema: type: array - items: *310 + items: *313 examples: - default: *311 + default: *314 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -39677,7 +39923,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -39689,7 +39935,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39708,8 +39954,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: If the user is blocked @@ -39734,8 +39980,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -39755,8 +40001,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -39782,17 +40028,17 @@ paths: category: orgs subcategory: bypass-requests parameters: - - *87 - - &314 + - *89 + - &317 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - *103 - - *104 - *105 - *106 + - *107 + - *108 - *17 - *19 responses: @@ -39802,9 +40048,9 @@ paths: application/json: schema: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 '404': *6 '500': *40 "/orgs/{org}/bypass-requests/secret-scanning": @@ -39827,12 +40073,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *87 - - *314 - - *103 - - *104 + - *89 + - *317 - *105 - *106 + - *107 + - *108 - *17 - *19 responses: @@ -39842,9 +40088,9 @@ paths: application/json: schema: type: array - items: *315 + items: *318 examples: - default: *316 + default: *319 '404': *6 '500': *40 "/orgs/{org}/campaigns": @@ -39863,15 +40109,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *87 + - *89 - *19 - *17 - - *110 + - *112 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &318 + schema: &321 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -39897,7 +40143,7 @@ paths: application/json: schema: type: array - items: &319 + items: &322 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -39928,7 +40174,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *317 + items: *320 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -39946,7 +40192,7 @@ paths: type: string format: date-time nullable: true - state: *318 + state: *321 contact_link: description: The contact link of the campaign. type: string @@ -40043,7 +40289,7 @@ paths: headers: Link: *47 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40067,7 +40313,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -40166,9 +40412,9 @@ paths: description: Response content: application/json: - schema: *319 + schema: *322 examples: - default: &320 + default: &323 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -40217,7 +40463,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40239,7 +40485,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *87 + - *89 - name: campaign_number description: The campaign number. in: path @@ -40251,16 +40497,16 @@ paths: description: Response content: application/json: - schema: *319 + schema: *322 examples: - default: *320 + default: *323 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40281,7 +40527,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#update-a-campaign parameters: - - *87 + - *89 - name: campaign_number description: The campaign number. in: path @@ -40330,7 +40576,7 @@ paths: type: string format: uri nullable: true - state: *318 + state: *321 examples: default: value: @@ -40340,9 +40586,9 @@ paths: description: Response content: application/json: - schema: *319 + schema: *322 examples: - default: *320 + default: *323 '400': description: Bad Request content: @@ -40354,7 +40600,7 @@ paths: content: application/json: schema: *3 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40375,7 +40621,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *87 + - *89 - name: campaign_number description: The campaign number. in: path @@ -40386,7 +40632,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40408,20 +40654,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *87 - - *321 - - *322 - - *108 - - *109 + - *89 + - *324 + - *325 + - *110 + - *111 - *19 - *17 - - *110 + - *112 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: *323 + schema: *326 - name: sort description: The property by which to sort the results. in: query @@ -40437,7 +40683,7 @@ paths: be returned. in: query required: false - schema: &541 + schema: &544 type: string description: Severity of a code scanning alert. enum: @@ -40463,13 +40709,13 @@ paths: application/json: schema: type: array - items: *324 + items: *327 examples: - default: *325 + default: *328 headers: Link: *47 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40491,7 +40737,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *87 + - *89 - name: target_type in: query description: The target type of the code security configuration @@ -40510,8 +40756,8 @@ paths: schema: type: integer default: 30 - - *108 - - *109 + - *110 + - *111 responses: '200': description: Response @@ -40519,7 +40765,7 @@ paths: application/json: schema: type: array - items: *114 + items: *116 examples: default: value: @@ -40602,7 +40848,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#create-a-code-security-configuration parameters: - - *87 + - *89 requestBody: required: true content: @@ -40689,7 +40935,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *118 + code_scanning_options: *120 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -40698,7 +40944,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *117 + code_scanning_default_setup_options: *119 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -40837,9 +41083,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *114 + schema: *116 examples: - default: *326 + default: *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40861,15 +41107,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-default-code-security-configurations parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *327 + schema: *330 examples: - default: *328 + default: *331 '304': *37 '403': *29 '404': *6 @@ -40895,7 +41141,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *87 + - *89 requestBody: required: true content: @@ -40921,11 +41167,11 @@ paths: - 32 - 91 responses: - '204': *155 + '204': *157 '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40947,16 +41193,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-a-code-security-configuration parameters: - - *87 - - *116 + - *89 + - *118 responses: '200': description: Response content: application/json: - schema: *114 + schema: *116 examples: - default: *326 + default: *329 '304': *37 '403': *29 '404': *6 @@ -40980,8 +41226,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-code-security-configuration parameters: - - *87 - - *116 + - *89 + - *118 requestBody: required: true content: @@ -41068,8 +41314,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *117 - code_scanning_options: *118 + code_scanning_default_setup_options: *119 + code_scanning_options: *120 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -41194,7 +41440,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *114 + schema: *116 examples: default: value: @@ -41253,14 +41499,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *87 - - *116 + - *89 + - *118 responses: - '204': *155 + '204': *157 '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41284,8 +41530,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *87 - - *116 + - *89 + - *118 requestBody: required: true content: @@ -41348,8 +41594,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *87 - - *116 + - *89 + - *118 requestBody: required: true content: @@ -41389,12 +41635,12 @@ paths: - none - private_and_internal - public - configuration: *114 + configuration: *116 examples: default: value: default_for_new_repos: all - configuration: *326 + configuration: *329 '403': *29 '404': *6 x-github: @@ -41418,8 +41664,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *87 - - *116 + - *89 + - *118 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -41428,8 +41674,8 @@ paths: schema: type: integer default: 30 - - *108 - - *109 + - *110 + - *111 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -41447,13 +41693,13 @@ paths: application/json: schema: type: array - items: *329 + items: *332 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *330 + repository: *333 '403': *29 '404': *6 x-github: @@ -41477,7 +41723,7 @@ paths: parameters: - *17 - *19 - - *87 + - *89 responses: '200': description: Response @@ -41493,7 +41739,7 @@ paths: type: integer codespaces: type: array - items: &386 + items: &389 type: object title: Codespace description: A codespace. @@ -41518,12 +41764,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *288 + repository: *291 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &573 + properties: &576 name: type: string description: The name of the machine. @@ -41565,7 +41811,7 @@ paths: - ready - in_progress nullable: true - required: &574 + required: &577 - name - display_name - operating_system @@ -41770,7 +42016,7 @@ paths: - pulls_url - recent_folders examples: - default: &387 + default: &390 value: total_count: 3 codespaces: @@ -42202,7 +42448,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *87 + - *89 deprecated: true requestBody: required: true @@ -42269,7 +42515,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *87 + - *89 deprecated: true requestBody: required: true @@ -42324,7 +42570,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *87 + - *89 requestBody: required: true content: @@ -42376,7 +42622,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *87 + - *89 - *17 - *19 responses: @@ -42394,7 +42640,7 @@ paths: type: integer secrets: type: array - items: &331 + items: &334 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -42433,7 +42679,7 @@ paths: - updated_at - visibility examples: - default: &575 + default: &578 value: total_count: 2 secrets: @@ -42465,13 +42711,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &576 + schema: &579 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -42500,7 +42746,7 @@ paths: - key_id - key examples: - default: &577 + default: &580 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -42523,16 +42769,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 responses: '200': description: Response content: application/json: - schema: *331 + schema: *334 examples: - default: &579 + default: &582 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -42559,8 +42805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -42615,7 +42861,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -42641,8 +42887,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 responses: '204': description: Response @@ -42667,8 +42913,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - *19 - *17 responses: @@ -42686,9 +42932,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: *302 + default: *305 '404': *6 x-github: githubCloudOnly: false @@ -42710,8 +42956,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -42761,8 +43007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -42795,8 +43041,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -42835,7 +43081,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *87 + - *89 responses: '200': description: OK @@ -42976,7 +43222,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *87 + - *89 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -42999,9 +43245,9 @@ paths: currently being billed. seats: type: array - items: *146 + items: *148 examples: - default: *147 + default: *149 headers: Link: *47 '500': *40 @@ -43037,7 +43283,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *87 + - *89 requestBody: content: application/json: @@ -43115,7 +43361,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *87 + - *89 requestBody: content: application/json: @@ -43195,7 +43441,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *87 + - *89 requestBody: content: application/json: @@ -43272,7 +43518,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *87 + - *89 requestBody: content: application/json: @@ -43354,7 +43600,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-content-exclusion-management#get-copilot-content-exclusion-rules-for-an-organization parameters: - - *87 + - *89 responses: '200': description: OK @@ -43407,7 +43653,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-content-exclusion-management#set-copilot-content-exclusion-rules-for-an-organization parameters: - - *87 + - *89 requestBody: description: The content exclusion rules to set required: true @@ -43463,7 +43709,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': *332 + '413': *335 '422': *7 x-github: githubCloudOnly: @@ -43494,7 +43740,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *87 + - *89 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -43526,13 +43772,13 @@ paths: application/json: schema: type: array - items: *209 + items: *211 examples: - default: *210 + default: *212 '500': *40 '403': *29 '404': *6 - '422': *211 + '422': *213 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43558,16 +43804,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics-for-a-specific-day parameters: - - *87 - - *123 + - *89 + - *125 responses: '200': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *125 + default: *127 '500': *40 '403': *29 '404': *6 @@ -43596,15 +43842,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *126 + schema: *128 examples: - default: *127 + default: *129 '500': *40 '403': *29 '404': *6 @@ -43633,16 +43879,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics-for-a-specific-day parameters: - - *87 - - *123 + - *89 + - *125 responses: '200': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *125 + default: *127 '500': *40 '403': *29 '404': *6 @@ -43671,15 +43917,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *126 + schema: *128 examples: - default: *127 + default: *129 '500': *40 '403': *29 '404': *6 @@ -43704,7 +43950,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-saml-sso-authorizations-for-an-organization parameters: - - *87 + - *89 - *17 - name: page description: Page token @@ -43848,7 +44094,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#remove-a-saml-sso-authorization-for-an-organization parameters: - - *87 + - *89 - name: credential_id in: path required: true @@ -43879,7 +44125,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-custom-repository-roles-in-an-organization parameters: - - *87 + - *89 responses: '200': description: Response - list of custom role names @@ -43894,7 +44140,7 @@ paths: type: integer custom_roles: type: array - items: *333 + items: *336 examples: default: value: @@ -43981,12 +44227,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#create-a-custom-repository-role parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: &335 + schema: &338 type: object properties: name: @@ -44027,9 +44273,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '422': *15 '404': *6 x-github: @@ -44053,16 +44299,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '200': description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '404': *6 x-github: githubCloudOnly: true @@ -44084,13 +44330,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - - *87 - - *142 + - *89 + - *144 requestBody: required: true content: application/json: - schema: &336 + schema: &339 type: object properties: name: @@ -44128,9 +44374,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '422': *15 '404': *6 x-github: @@ -44154,8 +44400,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '204': description: Response @@ -44183,12 +44429,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---create-a-custom-role parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *335 + schema: *338 examples: default: value: @@ -44202,9 +44448,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '422': *15 '404': *6 x-github: @@ -44234,16 +44480,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '200': description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '404': *6 x-github: githubCloudOnly: true @@ -44271,13 +44517,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - - *87 - - *142 + - *89 + - *144 requestBody: required: true content: application/json: - schema: *336 + schema: *339 examples: default: value: @@ -44292,9 +44538,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '422': *15 '404': *6 x-github: @@ -44324,8 +44570,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '204': description: Response @@ -44353,12 +44599,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *87 - - *337 - - *338 - - *339 + - *89 - *340 - *341 + - *342 + - *343 + - *344 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -44388,7 +44634,7 @@ paths: enum: - patch - deployment - - *342 + - *345 - name: runtime_risk in: query description: |- @@ -44397,11 +44643,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *343 - - *344 + - *346 + - *347 + - *112 - *110 - - *108 - - *109 + - *111 - *17 responses: '200': @@ -44410,9 +44656,9 @@ paths: application/json: schema: type: array - items: *345 + items: *348 examples: - default: *346 + default: *349 '304': *37 '400': *14 '403': *29 @@ -44438,7 +44684,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-organization-secrets parameters: - - *87 + - *89 - *17 - *19 responses: @@ -44456,7 +44702,7 @@ paths: type: integer secrets: type: array - items: &347 + items: &350 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -44527,13 +44773,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-public-key parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &608 + schema: &611 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -44550,7 +44796,7 @@ paths: - key_id - key examples: - default: &609 + default: &612 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -44573,14 +44819,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 responses: '200': description: Response content: application/json: - schema: *347 + schema: *350 examples: default: value: @@ -44608,8 +44854,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -44666,7 +44912,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -44690,8 +44936,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 responses: '204': description: Response @@ -44715,8 +44961,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - *19 - *17 responses: @@ -44734,9 +44980,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: *302 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44757,8 +45003,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -44808,8 +45054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -44840,8 +45086,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -44877,8 +45123,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *87 - - &617 + - *89 + - &620 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -44886,7 +45132,7 @@ paths: required: false schema: type: string - - &618 + - &621 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -44894,7 +45140,7 @@ paths: required: false schema: type: string - - &619 + - &622 name: time_period description: |- The time period to filter by. @@ -44910,7 +45156,7 @@ paths: - week - month default: month - - &620 + - &623 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -44925,7 +45171,7 @@ paths: - denied - all default: all - - *314 + - *317 - *17 - *19 responses: @@ -44935,7 +45181,7 @@ paths: application/json: schema: type: array - items: &621 + items: &624 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -45041,7 +45287,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: &348 + items: &351 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -45091,7 +45337,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &622 + default: &625 value: - id: 21 number: 42 @@ -45178,12 +45424,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *87 - - *314 - - *103 - - *104 + - *89 + - *317 - *105 - - &349 + - *106 + - *107 + - &352 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -45209,7 +45455,7 @@ paths: application/json: schema: type: array - items: &623 + items: &626 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -45315,7 +45561,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *348 + items: *351 url: type: string format: uri @@ -45326,7 +45572,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &624 + default: &627 value: - id: 21 number: 42 @@ -45413,12 +45659,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *87 - - *314 - - *103 - - *104 + - *89 + - *317 - *105 - - *349 + - *106 + - *107 + - *352 - *17 - *19 responses: @@ -45428,7 +45674,7 @@ paths: application/json: schema: type: array - items: &625 + items: &628 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -45538,7 +45784,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *107 + items: *109 url: type: string format: uri @@ -45549,7 +45795,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &626 + default: &629 value: - id: 21 number: 42 @@ -45629,7 +45875,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -45637,7 +45883,7 @@ paths: application/json: schema: type: array - items: &397 + items: &400 title: Package description: A software package type: object @@ -45687,8 +45933,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *350 - required: *351 + properties: *353 + required: *354 nullable: true created_at: type: string @@ -45707,7 +45953,7 @@ paths: - created_at - updated_at examples: - default: &398 + default: &401 value: - id: 197 name: hello_docker @@ -45785,7 +46031,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-organization-events parameters: - - *87 + - *89 - *17 - *19 responses: @@ -45795,7 +46041,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: 200-response: value: @@ -45868,7 +46114,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#get-an-external-group parameters: - - *87 + - *89 - name: group_id description: The unique identifier of the group. in: path @@ -45894,7 +46140,7 @@ paths: description: Response content: application/json: - schema: &465 + schema: &468 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -45975,7 +46221,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &466 + default: &469 value: group_id: '123' group_name: Octocat admins @@ -46013,7 +46259,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-external-groups-available-to-an-organization parameters: - - *87 + - *89 - *17 - name: page description: Page token @@ -46030,7 +46276,7 @@ paths: description: Response content: application/json: - schema: &462 + schema: &465 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -46067,7 +46313,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &463 + default: &466 value: groups: - group_id: '123' @@ -46102,7 +46348,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-failed-organization-invitations parameters: - - *87 + - *89 - *17 - *19 responses: @@ -46112,7 +46358,7 @@ paths: application/json: schema: type: array - items: &375 + items: &378 title: Organization Invitation description: Organization Invitation type: object @@ -46159,7 +46405,7 @@ paths: - invitation_teams_url - node_id examples: - default: &376 + default: &379 value: - id: 1 login: monalisa @@ -46218,7 +46464,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---list-fine-grained-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -46226,7 +46472,7 @@ paths: application/json: schema: type: array - items: &431 + items: &434 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -46240,7 +46486,7 @@ paths: - name - description examples: - default: &432 + default: &435 value: - name: add_assignee description: Assign or remove a user @@ -46271,7 +46517,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-organization-webhooks parameters: - - *87 + - *89 - *17 - *19 responses: @@ -46281,7 +46527,7 @@ paths: application/json: schema: type: array - items: &352 + items: &355 title: Org Hook description: Org Hook type: object @@ -46390,7 +46636,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#create-an-organization-webhook parameters: - - *87 + - *89 requestBody: required: true content: @@ -46450,9 +46696,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: &353 + default: &356 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -46496,8 +46742,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - - *87 - - &354 + - *89 + - &357 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. @@ -46510,9 +46756,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: *353 + default: *356 '404': *6 x-github: githubCloudOnly: false @@ -46533,8 +46779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 requestBody: required: false content: @@ -46579,7 +46825,7 @@ paths: description: Response content: application/json: - schema: *352 + schema: *355 examples: default: value: @@ -46618,8 +46864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 responses: '204': description: Response @@ -46644,8 +46890,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *87 - - *354 + - *89 + - *357 responses: '200': description: Response @@ -46673,8 +46919,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *87 - - *354 + - *89 + - *357 requestBody: required: false content: @@ -46722,10 +46968,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 - *17 - - *355 + - *358 responses: '200': description: Response @@ -46733,9 +46979,9 @@ paths: application/json: schema: type: array - items: *356 + items: *359 examples: - default: *357 + default: *360 '400': *14 '422': *15 x-github: @@ -46758,17 +47004,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 - *16 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 '400': *14 '422': *15 x-github: @@ -46791,8 +47037,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 - *16 responses: '202': *39 @@ -46818,8 +47064,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 responses: '204': description: Response @@ -46841,8 +47087,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *87 - - &364 + - *89 + - &367 name: actor_type in: path description: The type of the actor @@ -46855,14 +47101,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &365 + - &368 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &360 + - &363 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`.' @@ -46870,7 +47116,7 @@ paths: required: true schema: type: string - - &361 + - &364 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) @@ -46881,7 +47127,7 @@ paths: type: string - *19 - *17 - - *110 + - *112 - name: sort description: The property to sort the results by. in: query @@ -46963,13 +47209,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - - *87 - - *360 - - *361 + - *89 + - *363 + - *364 - *19 - *17 - - *110 - - &370 + - *112 + - &373 name: sort description: The property to sort the results by. in: query @@ -47046,15 +47292,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - - *87 - - *360 - - *361 + - *89 + - *363 + - *364 responses: '200': description: Response content: application/json: - schema: &362 + schema: &365 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -47070,7 +47316,7 @@ paths: type: integer format: int64 examples: - default: &363 + default: &366 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -47090,24 +47336,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *87 - - &366 + - *89 + - &369 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *360 - - *361 + - *363 + - *364 responses: '200': description: Response content: application/json: - schema: *362 + schema: *365 examples: - default: *363 + default: *366 x-github: enabledForGitHubApps: true category: orgs @@ -47125,19 +47371,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *87 - - *360 - - *361 + - *89 + - *363 - *364 - - *365 + - *367 + - *368 responses: '200': description: Response content: application/json: - schema: *362 + schema: *365 examples: - default: *363 + default: *366 x-github: enabledForGitHubApps: true category: orgs @@ -47154,10 +47400,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - - *87 - - *360 - - *361 - - &367 + - *89 + - *363 + - *364 + - &370 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -47170,7 +47416,7 @@ paths: description: Response content: application/json: - schema: &368 + schema: &371 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -47186,7 +47432,7 @@ paths: type: integer format: int64 examples: - default: &369 + default: &372 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -47222,19 +47468,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - - *87 - - *366 - - *360 - - *361 - - *367 + - *89 + - *369 + - *363 + - *364 + - *370 responses: '200': description: Response content: application/json: - schema: *368 + schema: *371 examples: - default: *369 + default: *372 x-github: enabledForGitHubApps: true category: orgs @@ -47251,20 +47497,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *87 - - *364 - - *365 - - *360 - - *361 + - *89 - *367 + - *368 + - *363 + - *364 + - *370 responses: '200': description: Response content: application/json: - schema: *368 + schema: *371 examples: - default: *369 + default: *372 x-github: enabledForGitHubApps: true category: orgs @@ -47281,14 +47527,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - - *87 - - *366 - - *360 - - *361 + - *89 + - *369 + - *363 + - *364 - *19 - *17 - - *110 - - *370 + - *112 + - *373 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -47361,7 +47607,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *87 + - *89 responses: '200': description: Response @@ -47369,7 +47615,7 @@ paths: application/json: schema: *22 examples: - default: *371 + default: *374 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47392,7 +47638,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -47481,7 +47727,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -47489,12 +47735,12 @@ paths: application/json: schema: anyOf: - - &373 + - &376 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &372 + limit: &375 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -47519,7 +47765,7 @@ paths: properties: {} additionalProperties: false examples: - default: &374 + default: &377 value: limit: collaborators_only origin: organization @@ -47543,18 +47789,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: &657 + schema: &660 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *372 + limit: *375 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -47578,9 +47824,9 @@ paths: description: Response content: application/json: - schema: *373 + schema: *376 examples: - default: *374 + default: *377 '422': *15 x-github: githubCloudOnly: false @@ -47598,7 +47844,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -47624,7 +47870,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-pending-organization-invitations parameters: - - *87 + - *89 - *17 - *19 - name: role @@ -47658,9 +47904,9 @@ paths: application/json: schema: type: array - items: *375 + items: *378 examples: - default: *376 + default: *379 headers: Link: *47 '404': *6 @@ -47684,7 +47930,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#create-an-organization-invitation parameters: - - *87 + - *89 requestBody: required: false content: @@ -47738,7 +47984,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *378 examples: default: value: @@ -47794,8 +48040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - - *87 - - &377 + - *89 + - &380 name: invitation_id description: The unique identifier of the invitation. in: path @@ -47828,8 +48074,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - - *87 - - *377 + - *89 + - *380 - *17 - *19 responses: @@ -47839,9 +48085,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: &396 + default: &399 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -47876,7 +48122,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -47884,7 +48130,7 @@ paths: application/json: schema: type: array - items: &378 + items: &381 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -48027,7 +48273,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -48117,9 +48363,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *381 examples: - default: &379 + default: &382 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -48174,8 +48420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *87 - - &380 + - *89 + - &383 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -48274,9 +48520,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *381 examples: - default: *379 + default: *382 '404': *6 '422': *7 x-github: @@ -48300,10 +48546,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *87 - - *380 + - *89 + - *383 responses: - '204': *155 + '204': *157 '404': *6 '422': *7 x-github: @@ -48323,7 +48569,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -48331,7 +48577,7 @@ paths: application/json: schema: type: array - items: *381 + items: *384 examples: default: value: @@ -48369,7 +48615,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -48416,9 +48662,9 @@ paths: description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: &382 + default: &385 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -48450,8 +48696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *87 - - &383 + - *89 + - &386 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -48504,9 +48750,9 @@ paths: description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: *382 + default: *385 '404': *6 '422': *7 x-github: @@ -48530,8 +48776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *87 - - *383 + - *89 + - *386 responses: '204': description: Response @@ -48564,7 +48810,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *87 + - *89 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -48594,7 +48840,7 @@ paths: - closed - all default: open - - *384 + - *387 - name: type description: Can be the name of an issue type. in: query @@ -48612,8 +48858,8 @@ paths: - updated - comments default: created - - *110 - - *232 + - *112 + - *234 - *17 - *19 responses: @@ -48623,9 +48869,9 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: *385 + default: *388 headers: Link: *47 '404': *6 @@ -48647,7 +48893,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-members parameters: - - *87 + - *89 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -48685,7 +48931,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 '422': *15 @@ -48705,8 +48951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response if requester is an organization member and user is @@ -48740,8 +48986,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -48767,8 +49013,8 @@ paths: parameters: - *17 - *19 - - *87 - - *143 + - *89 + - *145 responses: '200': description: Response @@ -48784,9 +49030,9 @@ paths: type: integer codespaces: type: array - items: *386 + items: *389 examples: - default: *387 + default: *390 '304': *37 '500': *40 '401': *25 @@ -48811,9 +49057,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *87 - - *143 - - &388 + - *89 + - *145 + - &391 name: codespace_name in: path required: true @@ -48846,17 +49092,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *87 - - *143 - - *388 + - *89 + - *145 + - *391 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: &572 + default: &575 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -49029,14 +49275,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *146 + schema: *148 examples: default: value: @@ -49105,14 +49351,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '200': description: Response content: application/json: - schema: &389 + schema: &392 title: Org Membership description: Org Membership type: object @@ -49156,7 +49402,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *73 + organization: *75 user: title: Simple User description: A GitHub user. @@ -49179,7 +49425,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &390 + response-if-user-has-an-active-admin-membership-with-organization: &393 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -49251,8 +49497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 requestBody: required: false content: @@ -49280,9 +49526,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: - response-if-user-already-had-membership-with-organization: *390 + response-if-user-already-had-membership-with-organization: *393 '422': *15 '403': *29 x-github: @@ -49306,8 +49552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -49332,7 +49578,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-organization-migrations parameters: - - *87 + - *89 - *17 - *19 - name: exclude @@ -49353,7 +49599,7 @@ paths: application/json: schema: type: array - items: &391 + items: &394 title: Migration description: A migration. type: object @@ -49394,7 +49640,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *78 + items: *80 url: type: string format: uri @@ -49606,7 +49852,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#start-an-organization-migration parameters: - - *87 + - *89 requestBody: required: true content: @@ -49682,7 +49928,7 @@ paths: description: Response content: application/json: - schema: *391 + schema: *394 examples: default: value: @@ -49860,8 +50106,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - - *87 - - &392 + - *89 + - &395 name: migration_id description: The unique identifier of the migration. in: path @@ -49888,7 +50134,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *391 + schema: *394 examples: default: value: @@ -50057,8 +50303,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *87 - - *392 + - *89 + - *395 responses: '302': description: Response @@ -50079,8 +50325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *87 - - *392 + - *89 + - *395 responses: '204': description: Response @@ -50103,9 +50349,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - - *87 - - *392 - - &827 + - *89 + - *395 + - &830 name: repo_name description: repo_name parameter in: path @@ -50132,8 +50378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *87 - - *392 + - *89 + - *395 - *17 - *19 responses: @@ -50143,9 +50389,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: &403 + default: &406 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -50286,7 +50532,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-organization-fine-grained-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -50340,7 +50586,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response - list of organization roles @@ -50356,7 +50602,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &393 + items: &396 title: Organization Role description: Organization roles type: object @@ -50516,7 +50762,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#create-a-custom-organization-role parameters: - - *87 + - *89 requestBody: required: true content: @@ -50563,7 +50809,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *396 examples: default: value: @@ -50592,7 +50838,7 @@ paths: updated_at: '2022-07-04T22:19:11Z' '422': *15 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -50614,8 +50860,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '204': description: Response @@ -50640,9 +50886,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *87 - - *218 - - *142 + - *89 + - *220 + - *144 responses: '204': description: Response @@ -50671,9 +50917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *87 - - *218 - - *142 + - *89 + - *220 + - *144 responses: '204': description: Response @@ -50698,8 +50944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -50724,9 +50970,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *87 - - *143 - - *142 + - *89 + - *145 + - *144 responses: '204': description: Response @@ -50756,9 +51002,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *87 - - *143 - - *142 + - *89 + - *145 + - *144 responses: '204': description: Response @@ -50786,14 +51032,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '200': description: Response content: application/json: - schema: *393 + schema: *396 examples: default: value: @@ -50850,8 +51096,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - - *87 - - *142 + - *89 + - *144 requestBody: required: true content: @@ -50890,7 +51136,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *396 examples: default: value: @@ -50918,7 +51164,7 @@ paths: created_at: '2022-07-04T22:19:11Z' updated_at: '2022-07-04T22:19:11Z' '422': *15 - '409': *119 + '409': *121 '404': *6 x-github: githubCloudOnly: true @@ -50943,8 +51189,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '204': description: Response @@ -50969,8 +51215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *87 - - *142 + - *89 + - *144 - *17 - *19 responses: @@ -51048,8 +51294,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *394 - required: *395 + properties: *397 + required: *398 nullable: true type: description: The ownership type of the team @@ -51081,7 +51327,7 @@ paths: - type - parent examples: - default: *396 + default: *399 headers: Link: *47 '404': @@ -51110,8 +51356,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *87 - - *142 + - *89 + - *144 - *17 - *19 responses: @@ -51139,13 +51385,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &452 + items: &455 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *394 - required: *395 + properties: *397 + required: *398 name: nullable: true type: string @@ -51240,7 +51486,7 @@ paths: - type - url examples: - default: *214 + default: *216 headers: Link: *47 '404': @@ -51264,7 +51510,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *87 + - *89 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -51291,7 +51537,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -51316,8 +51562,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *87 - - *143 + - *89 + - *145 requestBody: required: false content: @@ -51374,8 +51620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -51432,8 +51678,8 @@ paths: - docker - nuget - container - - *87 - - &828 + - *89 + - &831 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -51469,12 +51715,12 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: - default: *398 + default: *401 '403': *29 '401': *25 - '400': &830 + '400': &833 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -51496,7 +51742,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &399 + - &402 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 @@ -51514,20 +51760,20 @@ paths: - docker - nuget - container - - &400 + - &403 name: package_name description: The name of the package. in: path required: true schema: type: string - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *397 + schema: *400 examples: default: value: @@ -51579,9 +51825,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *399 - - *400 - - *87 + - *402 + - *403 + - *89 responses: '204': description: Response @@ -51613,9 +51859,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *399 - - *400 - - *87 + - *402 + - *403 + - *89 - name: token description: package token schema: @@ -51647,9 +51893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *399 - - *400 - - *87 + - *402 + - *403 + - *89 - *19 - *17 - name: state @@ -51669,7 +51915,7 @@ paths: application/json: schema: type: array - items: &401 + items: &404 title: Package Version description: A version of a software package type: object @@ -51794,10 +52040,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *399 - - *400 - - *87 - - &402 + - *402 + - *403 + - *89 + - &405 name: package_version_id description: Unique identifier of the package version. in: path @@ -51809,7 +52055,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *404 examples: default: value: @@ -51845,10 +52091,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *399 - - *400 - - *87 - *402 + - *403 + - *89 + - *405 responses: '204': description: Response @@ -51880,10 +52126,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *399 - - *400 - - *87 - *402 + - *403 + - *89 + - *405 responses: '204': description: Response @@ -51910,10 +52156,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *87 + - *89 - *17 - *19 - - &404 + - &407 name: sort description: The property by which to sort the results. in: query @@ -51923,8 +52169,8 @@ paths: enum: - created_at default: created_at - - *110 - - &405 + - *112 + - &408 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -51935,7 +52181,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &406 + - &409 name: repository description: The name of the repository to use to filter the results. in: query @@ -51943,7 +52189,7 @@ paths: schema: type: string example: Hello-World - - &407 + - &410 name: permission description: The permission to use to filter the results. in: query @@ -51951,7 +52197,7 @@ paths: schema: type: string example: issues_read - - &408 + - &411 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) @@ -51961,7 +52207,7 @@ paths: schema: type: string format: date-time - - &409 + - &412 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) @@ -51971,7 +52217,7 @@ paths: schema: type: string format: date-time - - &410 + - &413 name: token_id description: The ID of the token in: query @@ -52135,7 +52381,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *87 + - *89 requestBody: required: true content: @@ -52201,7 +52447,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *87 + - *89 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -52241,7 +52487,7 @@ paths: '422': *15 '404': *6 '403': *29 - '204': *155 + '204': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52262,7 +52508,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *87 + - *89 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -52282,9 +52528,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *403 + default: *406 headers: Link: *47 x-github: @@ -52307,17 +52553,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *87 + - *89 - *17 - *19 - - *404 - - *110 - - *405 - - *406 - *407 + - *112 - *408 - *409 - *410 + - *411 + - *412 + - *413 responses: '500': *40 '422': *15 @@ -52466,7 +52712,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *87 + - *89 requestBody: required: true content: @@ -52526,7 +52772,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *87 + - *89 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -52556,7 +52802,7 @@ paths: responses: '500': *40 '404': *6 - '204': *155 + '204': *157 '403': *29 '422': *15 x-github: @@ -52578,7 +52824,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *87 + - *89 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -52597,9 +52843,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *403 + default: *406 headers: Link: *47 x-github: @@ -52623,7 +52869,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -52641,7 +52887,7 @@ paths: type: integer configurations: type: array - items: &411 + items: &414 title: Organization private registry description: Private registry configuration for an organization type: object @@ -52743,7 +52989,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -52931,7 +53177,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &412 + org-private-registry-with-selected-visibility: &415 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -52972,7 +53218,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -53020,16 +53266,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *87 - - *298 + - *89 + - *301 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *411 + schema: *414 examples: - default: *412 + default: *415 '404': *6 x-github: githubCloudOnly: false @@ -53050,8 +53296,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -53155,8 +53401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *87 - - *298 + - *89 + - *301 responses: '204': description: Response @@ -53179,15 +53425,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-organization parameters: - - *87 + - *89 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *108 - - *109 + - *110 + - *111 - *17 responses: '200': @@ -53196,7 +53442,7 @@ paths: application/json: schema: type: array - items: &413 + items: &416 title: Projects v2 Project description: A projects v2 project type: object @@ -53266,7 +53512,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &921 + properties: &924 id: type: number description: The unique identifier of the status update. @@ -53314,7 +53560,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &922 + required: &925 - id - node_id - created_at @@ -53339,7 +53585,7 @@ paths: - deleted_at - deleted_by examples: - default: &414 + default: &417 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -53442,22 +53688,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &415 + - &418 name: project_number description: The project's number. in: path required: true schema: type: integer - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *413 + schema: *416 examples: - default: *414 + default: *417 headers: Link: *47 '304': *37 @@ -53479,8 +53725,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *87 - - *415 + - *89 + - *418 requestBody: required: true description: Details of the draft item to create in the project. @@ -53514,7 +53760,7 @@ paths: description: Response content: application/json: - schema: &421 + schema: &424 title: Projects v2 Item description: An item belonging to a project type: object @@ -53527,8 +53773,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *225 - - &589 + - *227 + - &592 title: Pull Request Simple description: Pull Request Simple type: object @@ -53634,8 +53880,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *416 - required: *417 + properties: *419 + required: *420 nullable: true active_lock_reason: type: string @@ -53678,7 +53924,7 @@ paths: items: *4 requested_teams: type: array - items: *317 + items: *320 head: type: object properties: @@ -53686,7 +53932,7 @@ paths: type: string ref: type: string - repo: *78 + repo: *80 sha: type: string user: @@ -53709,7 +53955,7 @@ paths: type: string ref: type: string - repo: *78 + repo: *80 sha: type: string user: @@ -53728,7 +53974,7 @@ paths: _links: type: object properties: - comments: &418 + comments: &421 title: Link description: Hypermedia Link type: object @@ -53737,13 +53983,13 @@ paths: type: string required: - href - commits: *418 - statuses: *418 - html: *418 - issue: *418 - review_comments: *418 - review_comment: *418 - self: *418 + commits: *421 + statuses: *421 + html: *421 + issue: *421 + review_comments: *421 + review_comment: *421 + self: *421 required: - comments - commits @@ -53753,8 +53999,8 @@ paths: - review_comments - review_comment - self - author_association: *222 - auto_merge: &709 + author_association: *224 + auto_merge: &712 title: Auto merge description: The status of auto merging a pull request. type: object @@ -53856,7 +54102,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &420 + content_type: &423 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -53896,7 +54142,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &422 + draft_issue: &425 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -53970,11 +54216,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *415 - - *87 + - *418 + - *89 - *17 - - *108 - - *109 + - *110 + - *111 responses: '200': description: Response @@ -53982,7 +54228,7 @@ paths: application/json: schema: type: array - items: &419 + items: &422 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -54132,7 +54378,7 @@ paths: - updated_at - project_url examples: - default: &849 + default: &852 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -54262,8 +54508,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *415 - - *87 + - *418 + - *89 requestBody: required: true content: @@ -54309,7 +54555,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &850 + items: &853 type: object properties: name: @@ -54346,7 +54592,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &851 + iteration_configuration: &854 type: object description: The configuration for iteration fields. properties: @@ -54396,7 +54642,7 @@ paths: value: name: Due date data_type: date - single_select_field: &852 + single_select_field: &855 summary: Create a single select field value: name: Priority @@ -54423,7 +54669,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &853 + iteration_field: &856 summary: Create an iteration field value: name: Sprint @@ -54447,9 +54693,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *419 + schema: *422 examples: - text_field: &854 + text_field: &857 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -54458,7 +54704,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: &855 + number_field: &858 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -54467,7 +54713,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: &856 + date_field: &859 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -54476,7 +54722,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: &857 + single_select_field: &860 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -54510,7 +54756,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &858 + iteration_field: &861 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -54555,23 +54801,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *415 - - &859 + - *418 + - &862 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *419 + schema: *422 examples: - default: &860 + default: &863 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -54627,8 +54873,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *415 - - *87 + - *418 + - *89 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) for more information. @@ -54650,8 +54896,8 @@ paths: maxItems: 50 items: type: string - - *108 - - *109 + - *110 + - *111 - *17 responses: '200': @@ -54660,7 +54906,7 @@ paths: application/json: schema: type: array - items: &423 + items: &426 title: Projects v2 Item description: An item belonging to a project type: object @@ -54676,7 +54922,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *420 + content_type: *423 content: type: object additionalProperties: true @@ -54719,7 +54965,7 @@ paths: - updated_at - archived_at examples: - default: &424 + default: &427 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -55416,8 +55662,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - - *87 - - *415 + - *89 + - *418 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -55487,22 +55733,22 @@ paths: description: Response content: application/json: - schema: *421 + schema: *424 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *422 + value: *425 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *422 + value: *425 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *422 + value: *425 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *422 + value: *425 '304': *37 '403': *29 '401': *25 @@ -55522,9 +55768,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *415 - - *87 - - &425 + - *418 + - *89 + - &428 name: item_id description: The unique identifier of the project item. in: path @@ -55550,9 +55796,9 @@ paths: description: Response content: application/json: - schema: *423 + schema: *426 examples: - default: *424 + default: *427 headers: Link: *47 '304': *37 @@ -55573,9 +55819,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *415 - - *87 - - *425 + - *418 + - *89 + - *428 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -55645,13 +55891,13 @@ paths: description: Response content: application/json: - schema: *423 + schema: *426 examples: - text_field: *424 - number_field: *424 - date_field: *424 - single_select_field: *424 - iteration_field: *424 + text_field: *427 + number_field: *427 + date_field: *427 + single_select_field: *427 + iteration_field: *427 '401': *25 '403': *29 '404': *6 @@ -55671,9 +55917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *415 - - *87 - - *425 + - *418 + - *89 + - *428 responses: '204': description: Response @@ -55696,8 +55942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *87 - - *415 + - *89 + - *418 requestBody: required: true content: @@ -55768,7 +56014,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &841 + schema: &844 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -55866,7 +56112,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &426 + value: &429 value: id: 1 number: 1 @@ -55912,10 +56158,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *426 + value: *429 roadmap_view: summary: Response for creating a roadmap view - value: *426 + value: *429 '304': *37 '403': *29 '401': *25 @@ -55943,9 +56189,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-project-view parameters: - - *415 - - *87 - - &861 + - *418 + - *89 + - &864 name: view_number description: The number that identifies the project view. in: path @@ -55967,8 +56213,8 @@ paths: maxItems: 50 items: type: string - - *108 - - *109 + - *110 + - *111 - *17 responses: '200': @@ -55977,9 +56223,9 @@ paths: application/json: schema: type: array - items: *423 + items: *426 examples: - default: *424 + default: *427 headers: Link: *47 '304': *37 @@ -56004,7 +56250,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -56012,9 +56258,9 @@ paths: application/json: schema: type: array - items: *157 + items: *159 examples: - default: *158 + default: *160 '403': *29 '404': *6 x-github: @@ -56041,7 +56287,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -56052,7 +56298,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *157 + items: *159 minItems: 1 maxItems: 100 required: @@ -56082,9 +56328,9 @@ paths: application/json: schema: type: array - items: *157 + items: *159 examples: - default: *158 + default: *160 '403': *29 '404': *6 x-github: @@ -56105,16 +56351,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *87 - - *153 + - *89 + - *155 responses: '200': description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 '403': *29 '404': *6 x-github: @@ -56137,13 +56383,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *87 - - *153 + - *89 + - *155 requestBody: required: true content: application/json: - schema: *427 + schema: *430 examples: default: value: @@ -56159,9 +56405,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 '403': *29 '404': *6 x-github: @@ -56184,10 +56430,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *87 - - *153 + - *89 + - *155 responses: - '204': *155 + '204': *157 '403': *29 '404': *6 x-github: @@ -56208,7 +56454,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *87 + - *89 - *17 - *19 - name: repository_query @@ -56246,7 +56492,7 @@ paths: example: octocat/Hello-World properties: type: array - items: *156 + items: *158 description: List of custom property names and associated values required: - repository_id @@ -56295,7 +56541,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *87 + - *89 requestBody: required: true content: @@ -56315,7 +56561,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *156 + items: *158 required: - repository_names - properties @@ -56356,7 +56602,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-public-organization-members parameters: - - *87 + - *89 - *17 - *19 responses: @@ -56368,7 +56614,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -56387,8 +56633,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response if user is a public member @@ -56412,8 +56658,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -56434,8 +56680,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -56459,7 +56705,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-organization-repositories parameters: - - *87 + - *89 - name: type description: Specifies the types of repositories you want returned. `internal` is not yet supported when a GitHub App calls this endpoint with an installation @@ -56506,9 +56752,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *403 + default: *406 headers: Link: *47 x-github: @@ -56529,7 +56775,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-organization-repository parameters: - - *87 + - *89 requestBody: required: true content: @@ -56711,7 +56957,7 @@ paths: description: Response content: application/json: - schema: &473 + schema: &476 title: Full Repository description: Full Repository type: object @@ -57002,8 +57248,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *428 - required: *429 + properties: *431 + required: *432 nullable: true temp_clone_token: type: string @@ -57090,8 +57336,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true organization: title: Simple User @@ -57100,8 +57346,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *78 - source: *78 + parent: *80 + source: *80 forks: type: integer master_branch: @@ -57118,7 +57364,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &594 + properties: &597 url: type: string format: uri @@ -57134,12 +57380,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &595 + required: &598 - url - key - name - html_url - security_and_analysis: *430 + security_and_analysis: *433 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -57223,7 +57469,7 @@ paths: - network_count - subscribers_count examples: - default: &475 + default: &478 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -57741,7 +57987,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-repository-fine-grained-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -57749,9 +57995,9 @@ paths: application/json: schema: type: array - items: *431 + items: *434 examples: - default: *432 + default: *435 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -57773,10 +58019,10 @@ paths: category: orgs subcategory: rules parameters: - - *87 + - *89 - *17 - *19 - - &731 + - &734 name: targets description: | A comma-separated list of rule targets to filter by. @@ -57794,7 +58040,7 @@ paths: application/json: schema: type: array - items: *191 + items: *193 examples: default: value: @@ -57841,7 +58087,7 @@ paths: category: orgs subcategory: rules parameters: - - *87 + - *89 requestBody: description: Request body required: true @@ -57862,22 +58108,20 @@ paths: - push - repository default: branch - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 - conditions: *433 + items: *171 + conditions: *436 rules: type: array description: An array of rules within the ruleset. - items: &435 + items: &438 title: Repository Rule type: object description: A repository rule. oneOf: - - *170 - - *171 - *172 - *173 - *174 @@ -57897,6 +58141,8 @@ paths: - *188 - *189 - *190 + - *191 + - *192 required: - name - enforcement @@ -57934,9 +58180,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: &434 + default: &437 value: id: 21 name: super cool ruleset @@ -57991,8 +58237,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *87 - - &733 + - *89 + - &736 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 @@ -58002,16 +58248,16 @@ paths: schema: type: string x-multi-segment: true - - *314 - - *105 - - &734 + - *317 + - *107 + - &737 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 - - &735 + - &738 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -58031,7 +58277,7 @@ paths: description: Response content: application/json: - schema: &736 + schema: &739 title: Rule Suites description: Response type: array @@ -58086,7 +58332,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &737 + default: &740 value: - id: 21 actor_id: 12 @@ -58129,8 +58375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *87 - - &738 + - *89 + - &741 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -58146,7 +58392,7 @@ paths: description: Response content: application/json: - schema: &739 + schema: &742 title: Rule Suite description: Response type: object @@ -58245,7 +58491,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &740 + default: &743 value: id: 21 actor_id: 12 @@ -58306,7 +58552,7 @@ paths: category: orgs subcategory: rules parameters: - - *87 + - *89 - name: ruleset_id description: The ID of the ruleset. in: path @@ -58318,9 +58564,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *434 + default: *437 '404': *6 '500': *40 put: @@ -58338,7 +58584,7 @@ paths: category: orgs subcategory: rules parameters: - - *87 + - *89 - name: ruleset_id description: The ID of the ruleset. in: path @@ -58364,16 +58610,16 @@ paths: - tag - push - repository - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 - conditions: *433 + items: *171 + conditions: *436 rules: description: An array of rules within the ruleset. type: array - items: *435 + items: *438 examples: default: value: @@ -58408,9 +58654,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *434 + default: *437 '404': *6 '422': *15 '500': *40 @@ -58429,7 +58675,7 @@ paths: category: orgs subcategory: rules parameters: - - *87 + - *89 - name: ruleset_id description: The ID of the ruleset. in: path @@ -58452,7 +58698,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-history parameters: - - *87 + - *89 - *17 - *19 - name: ruleset_id @@ -58468,9 +58714,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *436 + default: *439 '404': *6 '500': *40 x-github: @@ -58489,7 +58735,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-version parameters: - - *87 + - *89 - name: ruleset_id description: The ID of the ruleset. in: path @@ -58507,7 +58753,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *440 examples: default: value: @@ -58569,16 +58815,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *87 - - *438 - - *439 - - *440 + - *89 - *441 - *442 - - *110 + - *443 + - *444 + - *445 + - *112 - *19 - *17 - - &742 + - &745 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -58588,7 +58834,7 @@ paths: required: false schema: type: string - - &743 + - &746 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -58598,10 +58844,10 @@ paths: required: false schema: type: string - - *443 - - *444 - - *445 - *446 + - *447 + - *448 + - *449 responses: '200': description: Response @@ -58609,13 +58855,13 @@ paths: application/json: schema: type: array - items: *447 + items: *450 examples: - default: *448 + default: *451 headers: Link: *47 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58640,15 +58886,15 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *449 + schema: *452 examples: - default: *450 + default: *453 '403': *29 '404': *6 patch: @@ -58669,7 +58915,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *87 + - *89 requestBody: required: true content: @@ -58677,7 +58923,7 @@ paths: schema: type: object properties: - pattern_config_version: *198 + pattern_config_version: *200 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -58703,7 +58949,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *198 + custom_pattern_version: *200 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -58739,7 +58985,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 "/orgs/{org}/security-advisories": get: @@ -58757,8 +59003,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *87 - - *110 + - *89 + - *112 - name: sort description: The property to sort the results by. in: query @@ -58770,8 +59016,8 @@ paths: - updated - published default: created - - *108 - - *109 + - *110 + - *111 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -58801,7 +59047,7 @@ paths: application/json: schema: type: array - items: &764 + items: &767 description: A repository security advisory. type: object properties: @@ -58988,7 +59234,7 @@ paths: required: - vector_string - score - cvss_severities: *130 + cvss_severities: *132 cwes: type: array nullable: true @@ -59021,7 +59267,7 @@ paths: login: type: string description: The username of the user credited. - type: *451 + type: *454 credits_detailed: type: array nullable: true @@ -59031,7 +59277,7 @@ paths: type: object properties: user: *4 - type: *451 + type: *454 state: type: string description: The state of the user's acceptance of the @@ -59055,14 +59301,14 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *317 + items: *320 private_fork: readOnly: true nullable: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *120 + - *122 required: - ghsa_id - cve_id @@ -59092,7 +59338,7 @@ paths: - private_fork additionalProperties: false examples: - default: &765 + default: &768 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -59471,7 +59717,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#list-security-manager-teams parameters: - - *87 + - *89 responses: '200': description: Response @@ -59479,7 +59725,7 @@ paths: application/json: schema: type: array - items: *452 + items: *455 examples: default: value: @@ -59519,8 +59765,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '204': description: Response @@ -59545,8 +59791,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '204': description: Response @@ -59577,8 +59823,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - - *87 - - *453 + - *89 + - *456 - *17 - *19 responses: @@ -59586,9 +59832,9 @@ paths: description: Success content: application/json: - schema: *454 + schema: *457 examples: - default: *455 + default: *458 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -59608,7 +59854,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Immutable releases settings response @@ -59657,7 +59903,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -59714,7 +59960,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *87 + - *89 - *19 - *17 responses: @@ -59732,9 +59978,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: *302 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59753,7 +59999,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *87 + - *89 requestBody: required: true content: @@ -59802,8 +60048,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *87 - - *282 + - *89 + - *285 responses: '204': description: Response @@ -59825,8 +60071,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *87 - - *282 + - *89 + - *285 responses: '204': description: Response @@ -59849,7 +60095,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -59867,9 +60113,9 @@ paths: type: integer network_configurations: type: array - items: *148 + items: *150 examples: - default: *456 + default: *459 headers: Link: *47 x-github: @@ -59890,7 +60136,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -59933,9 +60179,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *149 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59955,16 +60201,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - - *87 - - *150 + - *89 + - *152 responses: '200': description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *149 + default: *151 headers: Link: *47 x-github: @@ -59985,8 +60231,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - - *87 - - *150 + - *89 + - *152 requestBody: required: true content: @@ -60026,9 +60272,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *149 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60047,8 +60293,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - - *87 - - *150 + - *89 + - *152 responses: '204': description: Response @@ -60071,16 +60317,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - - *87 - - *457 + - *89 + - *460 responses: '200': description: Response content: application/json: - schema: *458 + schema: *461 examples: - default: *459 + default: *462 headers: Link: *47 x-github: @@ -60099,7 +60345,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-an-organization parameters: - - *87 + - *89 - *17 - name: page description: Page token @@ -60118,7 +60364,7 @@ paths: description: Response content: application/json: - schema: &470 + schema: &473 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -60164,7 +60410,7 @@ paths: type: string nullable: true examples: - default: &471 + default: &474 value: groups: - group_id: '123' @@ -60209,8 +60455,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *87 - - *218 + - *89 + - *220 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -60242,13 +60488,13 @@ paths: application/json: schema: type: array - items: *209 + items: *211 examples: - default: *210 + default: *212 '500': *40 '403': *29 '404': *6 - '422': *211 + '422': *213 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60266,7 +60512,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-teams parameters: - - *87 + - *89 - *17 - *19 - name: team_type @@ -60288,9 +60534,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 headers: Link: *47 '403': *29 @@ -60312,7 +60558,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#create-a-team parameters: - - *87 + - *89 requestBody: required: true content: @@ -60384,7 +60630,7 @@ paths: description: Response content: application/json: - schema: &460 + schema: &463 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -60447,8 +60693,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *394 - required: *395 + properties: *397 + required: *398 nullable: true members_count: type: integer @@ -60711,7 +60957,7 @@ paths: - repos_count - organization examples: - default: &461 + default: &464 value: id: 1 node_id: MDQ6VGVhbTE= @@ -60781,16 +61027,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - - *87 - - *218 + - *89 + - *220 responses: '200': description: Response content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '404': *6 x-github: githubCloudOnly: false @@ -60811,8 +61057,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - - *87 - - *218 + - *89 + - *220 requestBody: required: false content: @@ -60874,16 +61120,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '201': description: Response content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '404': *6 '422': *15 '403': *29 @@ -60908,12 +61154,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '204': description: Response - '422': &464 + '422': &467 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -60935,17 +61181,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '200': description: Response content: application/json: - schema: *462 + schema: *465 examples: - default: *463 - '422': *464 + default: *466 + '422': *467 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -60964,8 +61210,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - - *87 - - *218 + - *89 + - *220 requestBody: required: true content: @@ -60988,10 +61234,10 @@ paths: description: Response content: application/json: - schema: *465 + schema: *468 examples: - default: *466 - '422': *464 + default: *469 + '422': *467 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -61010,12 +61256,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '204': description: Response - '422': *464 + '422': *467 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -61036,8 +61282,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - - *87 - - *218 + - *89 + - *220 - *17 - *19 responses: @@ -61047,12 +61293,12 @@ paths: application/json: schema: type: array - items: *375 + items: *378 examples: - default: *376 + default: *379 headers: Link: *47 - '422': *464 + '422': *467 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61072,8 +61318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - - *87 - - *218 + - *89 + - *220 - name: role description: Filters members returned by their role in the team. in: query @@ -61096,7 +61342,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -61126,15 +61372,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - - *87 - - *218 - - *143 + - *89 + - *220 + - *145 responses: '200': description: Response content: application/json: - schema: &467 + schema: &470 title: Team Membership description: Team Membership type: object @@ -61161,7 +61407,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &807 + response-if-user-is-a-team-maintainer: &810 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -61197,9 +61443,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *87 - - *218 - - *143 + - *89 + - *220 + - *145 requestBody: required: false content: @@ -61224,9 +61470,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *470 examples: - response-if-users-membership-with-team-is-now-pending: &808 + response-if-users-membership-with-team-is-now-pending: &811 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -61261,9 +61507,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - - *87 - - *218 - - *143 + - *89 + - *220 + - *145 responses: '204': description: Response @@ -61289,8 +61535,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - - *87 - - *218 + - *89 + - *220 - *17 - *19 responses: @@ -61300,9 +61546,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *403 + default: *406 headers: Link: *47 x-github: @@ -61331,16 +61577,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *87 - - *218 - - *468 - - *469 + - *89 + - *220 + - *471 + - *472 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &809 + schema: &812 title: Team Repository description: A team's access to a repository. type: object @@ -61363,8 +61609,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true forks: type: integer @@ -61909,10 +62155,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *87 - - *218 - - *468 - - *469 + - *89 + - *220 + - *471 + - *472 requestBody: required: false content: @@ -61957,10 +62203,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - - *87 - - *218 - - *468 - - *469 + - *89 + - *220 + - *471 + - *472 responses: '204': description: Response @@ -61986,17 +62232,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '200': description: Response content: application/json: - schema: *470 + schema: *473 examples: - default: *471 - '422': *464 + default: *474 + '422': *467 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -62018,8 +62264,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - - *87 - - *218 + - *89 + - *220 requestBody: required: true content: @@ -62062,7 +62308,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -62074,7 +62320,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *464 + '422': *467 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -62095,8 +62341,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - - *87 - - *218 + - *89 + - *220 - *17 - *19 responses: @@ -62106,9 +62352,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - response-if-child-teams-exist: &810 + response-if-child-teams-exist: &813 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -62161,7 +62407,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *87 + - *89 - name: security_product in: path description: The security feature to enable or disable. @@ -62262,7 +62508,7 @@ paths: resources: type: object properties: - core: &472 + core: &475 title: Rate Limit type: object properties: @@ -62279,21 +62525,21 @@ paths: - remaining - reset - used - graphql: *472 - search: *472 - code_search: *472 - source_import: *472 - integration_manifest: *472 - code_scanning_upload: *472 - actions_runner_registration: *472 - scim: *472 - dependency_snapshots: *472 - dependency_sbom: *472 - code_scanning_autofix: *472 + graphql: *475 + search: *475 + code_search: *475 + source_import: *475 + integration_manifest: *475 + code_scanning_upload: *475 + actions_runner_registration: *475 + scim: *475 + dependency_snapshots: *475 + dependency_sbom: *475 + code_scanning_autofix: *475 required: - core - search - rate: *472 + rate: *475 required: - rate - resources @@ -62398,14 +62644,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *473 + schema: *476 examples: default-response: summary: Default response @@ -62914,7 +63160,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *474 + '301': *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62932,8 +63178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -63234,10 +63480,10 @@ paths: description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *475 - '307': &476 + default: *478 + '307': &479 description: Temporary Redirect content: application/json: @@ -63266,8 +63512,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -63289,9 +63535,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *476 + '307': *479 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63313,11 +63559,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 - - &493 + - &496 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -63340,7 +63586,7 @@ paths: type: integer artifacts: type: array - items: &477 + items: &480 title: Artifact description: An artifact type: object @@ -63418,7 +63664,7 @@ paths: - expires_at - updated_at examples: - default: &494 + default: &497 value: total_count: 2 artifacts: @@ -63479,9 +63725,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *468 - - *469 - - &478 + - *471 + - *472 + - &481 name: artifact_id description: The unique identifier of the artifact. in: path @@ -63493,7 +63739,7 @@ paths: description: Response content: application/json: - schema: *477 + schema: *480 examples: default: value: @@ -63531,9 +63777,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *468 - - *469 - - *478 + - *471 + - *472 + - *481 responses: '204': description: Response @@ -63557,9 +63803,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *468 - - *469 - - *478 + - *471 + - *472 + - *481 - name: archive_format in: path required: true @@ -63573,7 +63819,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &660 + '410': &663 description: Gone content: application/json: @@ -63598,14 +63844,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: &479 + schema: &482 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -63638,13 +63884,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: application/json: - schema: *479 + schema: *482 examples: selected_actions: *44 responses: @@ -63673,14 +63919,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: &480 + schema: &483 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -63713,13 +63959,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: application/json: - schema: *480 + schema: *483 examples: selected_actions: *46 responses: @@ -63750,14 +63996,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *481 + schema: *484 examples: default: value: @@ -63783,11 +64029,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 - - &482 + - &485 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 @@ -63815,13 +64061,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *110 + - *112 responses: '200': description: Response content: application/json: - schema: &483 + schema: &486 title: Repository actions caches description: Repository actions caches type: object @@ -63863,7 +64109,7 @@ paths: - total_count - actions_caches examples: - default: &484 + default: &487 value: total_count: 1 actions_caches: @@ -63895,23 +64141,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *468 - - *469 + - *471 + - *472 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *482 + - *485 responses: '200': description: Response content: application/json: - schema: *483 + schema: *486 examples: - default: *484 + default: *487 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63931,8 +64177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *468 - - *469 + - *471 + - *472 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -63963,9 +64209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *468 - - *469 - - &485 + - *471 + - *472 + - &488 name: job_id description: The unique identifier of the job. in: path @@ -63977,7 +64223,7 @@ paths: description: Response content: application/json: - schema: &497 + schema: &500 title: Job description: Information of a job execution in a workflow run type: object @@ -64284,9 +64530,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *468 - - *469 - - *485 + - *471 + - *472 + - *488 responses: '302': description: Response @@ -64314,9 +64560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *468 - - *469 - - *485 + - *471 + - *472 + - *488 requestBody: required: false content: @@ -64337,7 +64583,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -64361,8 +64607,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Status response @@ -64412,8 +64658,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -64447,7 +64693,7 @@ paths: description: Empty response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -64476,8 +64722,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -64495,7 +64741,7 @@ paths: type: integer secrets: type: array - items: &499 + items: &502 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -64515,7 +64761,7 @@ paths: - created_at - updated_at examples: - default: &500 + default: &503 value: total_count: 2 secrets: @@ -64548,9 +64794,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *468 - - *469 - - *486 + - *471 + - *472 + - *489 - *19 responses: '200': @@ -64567,7 +64813,7 @@ paths: type: integer variables: type: array - items: &503 + items: &506 title: Actions Variable type: object properties: @@ -64597,7 +64843,7 @@ paths: - created_at - updated_at examples: - default: &504 + default: &507 value: total_count: 2 variables: @@ -64630,8 +64876,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -64640,12 +64886,12 @@ paths: schema: type: object properties: - enabled: &487 + enabled: &490 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *60 - selected_actions_url: *275 - sha_pinning_required: *61 + allowed_actions: *62 + selected_actions_url: *278 + sha_pinning_required: *63 required: - enabled examples: @@ -64675,8 +64921,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -64687,9 +64933,9 @@ paths: schema: type: object properties: - enabled: *487 - allowed_actions: *60 - sha_pinning_required: *61 + enabled: *490 + allowed_actions: *62 + sha_pinning_required: *63 required: - enabled examples: @@ -64720,14 +64966,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: &488 + schema: &491 type: object properties: access_level: @@ -64745,7 +64991,7 @@ paths: required: - access_level examples: - default: &489 + default: &492 value: access_level: organization x-github: @@ -64770,15 +65016,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: application/json: - schema: *488 + schema: *491 examples: - default: *489 + default: *492 responses: '204': description: Response @@ -64802,14 +65048,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *277 + schema: *280 examples: default: value: @@ -64833,8 +65079,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Empty response for successful settings update @@ -64844,7 +65090,7 @@ paths: required: true content: application/json: - schema: *278 + schema: *281 examples: default: summary: Set retention days @@ -64868,16 +65114,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *62 + schema: *64 examples: - default: *279 + default: *282 '404': *6 x-github: enabledForGitHubApps: true @@ -64896,8 +65142,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -64907,7 +65153,7 @@ paths: required: true content: application/json: - schema: *62 + schema: *64 examples: default: summary: Set approval policy to first time contributors @@ -64931,16 +65177,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: *63 + default: *65 '403': *29 '404': *6 x-github: @@ -64960,15 +65206,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: application/json: - schema: *281 + schema: *284 examples: - default: *63 + default: *65 responses: '204': description: Empty response for successful settings update @@ -64992,16 +65238,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65024,8 +65270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -65033,9 +65279,9 @@ paths: required: false content: application/json: - schema: *65 + schema: *67 examples: - selected_actions: *66 + selected_actions: *68 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65057,16 +65303,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *284 + schema: *287 examples: - default: *69 + default: *71 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65087,8 +65333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Success response @@ -65099,9 +65345,9 @@ paths: required: true content: application/json: - schema: *285 + schema: *288 examples: - default: *69 + default: *71 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65128,8 +65374,8 @@ paths: in: query schema: type: string - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -65147,9 +65393,9 @@ paths: type: integer runners: type: array - items: *76 + items: *78 examples: - default: *77 + default: *79 headers: Link: *47 x-github: @@ -65173,8 +65419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -65182,9 +65428,9 @@ paths: application/json: schema: type: array - items: *289 + items: *292 examples: - default: *290 + default: *293 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65206,8 +65452,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -65250,10 +65496,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *291 + '201': *294 '404': *6 '422': *7 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65281,16 +65527,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: - default: *292 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65318,16 +65564,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: - default: *293 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65349,17 +65595,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 responses: '200': description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: *294 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65380,9 +65626,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 responses: '204': description: Response @@ -65408,11 +65654,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 responses: - '200': *81 + '200': *83 '404': *6 x-github: githubCloudOnly: false @@ -65434,9 +65680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 requestBody: required: true content: @@ -65460,7 +65706,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -65484,9 +65730,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 requestBody: required: true content: @@ -65511,7 +65757,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -65535,11 +65781,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 responses: - '200': *295 + '200': *298 '404': *6 x-github: githubCloudOnly: false @@ -65566,12 +65812,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 - - *296 + - *471 + - *472 + - *77 + - *299 responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -65597,9 +65843,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *468 - - *469 - - &507 + - *471 + - *472 + - &510 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. @@ -65607,7 +65853,7 @@ paths: required: false schema: type: string - - &508 + - &511 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -65615,7 +65861,7 @@ paths: required: false schema: type: string - - &509 + - &512 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -65624,7 +65870,7 @@ paths: required: false schema: type: string - - &510 + - &513 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 @@ -65651,7 +65897,7 @@ paths: - pending - *17 - *19 - - &511 + - &514 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -65660,7 +65906,7 @@ paths: schema: type: string format: date-time - - &490 + - &493 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -65669,13 +65915,13 @@ paths: schema: type: boolean default: false - - &512 + - &515 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &513 + - &516 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -65698,7 +65944,7 @@ paths: type: integer workflow_runs: type: array - items: &491 + items: &494 title: Workflow Run description: An invocation of a workflow type: object @@ -65793,7 +66039,7 @@ paths: that triggered the run. type: array nullable: true - items: *230 + items: *232 created_at: type: string format: date-time @@ -65846,7 +66092,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &535 + properties: &538 id: type: string description: SHA for the commit @@ -65897,7 +66143,7 @@ paths: - name - email nullable: true - required: &536 + required: &539 - id - tree_id - message @@ -65905,8 +66151,8 @@ paths: - author - committer nullable: true - repository: *288 - head_repository: *288 + repository: *291 + head_repository: *291 head_repository_id: type: integer example: 5 @@ -65944,7 +66190,7 @@ paths: - workflow_url - pull_requests examples: - default: &514 + default: &517 value: total_count: 1 workflow_runs: @@ -66180,24 +66426,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *468 - - *469 - - &492 + - *471 + - *472 + - &495 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *490 + - *493 responses: '200': description: Response content: application/json: - schema: *491 + schema: *494 examples: - default: &495 + default: &498 value: id: 30433642 name: Build @@ -66438,9 +66684,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '204': description: Response @@ -66463,9 +66709,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '200': description: Response @@ -66584,15 +66830,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '201': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -66619,13 +66865,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 - *17 - *19 - - *493 - - *110 + - *496 + - *112 responses: '200': description: Response @@ -66641,9 +66887,9 @@ paths: type: integer artifacts: type: array - items: *477 + items: *480 examples: - default: *494 + default: *497 headers: Link: *47 x-github: @@ -66667,25 +66913,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *468 - - *469 - - *492 - - &496 + - *471 + - *472 + - *495 + - &499 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *490 + - *493 responses: '200': description: Response content: application/json: - schema: *491 + schema: *494 examples: - default: *495 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66708,10 +66954,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *468 - - *469 - - *492 - - *496 + - *471 + - *472 + - *495 + - *499 - *17 - *19 responses: @@ -66729,9 +66975,9 @@ paths: type: integer jobs: type: array - items: *497 + items: *500 examples: - default: &498 + default: &501 value: total_count: 1 jobs: @@ -66844,10 +67090,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *468 - - *469 - - *492 - - *496 + - *471 + - *472 + - *495 + - *499 responses: '302': description: Response @@ -66875,19 +67121,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '202': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66910,9 +67156,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 requestBody: required: true content: @@ -66979,19 +67225,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '202': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67014,9 +67260,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 - 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 @@ -67046,9 +67292,9 @@ paths: type: integer jobs: type: array - items: *497 + items: *500 examples: - default: *498 + default: *501 headers: Link: *47 x-github: @@ -67073,9 +67319,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '302': description: Response @@ -67102,9 +67348,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '204': description: Response @@ -67131,9 +67377,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '200': description: Response @@ -67193,7 +67439,7 @@ paths: items: type: object properties: - type: &627 + type: &630 type: string description: The type of reviewer. enum: @@ -67203,7 +67449,7 @@ paths: reviewer: anyOf: - *4 - - *317 + - *320 required: - environment - wait_timer @@ -67278,9 +67524,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 requestBody: required: true content: @@ -67327,12 +67573,12 @@ paths: application/json: schema: type: array - items: &612 + items: &615 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &879 + properties: &882 url: type: string format: uri @@ -67415,9 +67661,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 - required: &880 + properties: *222 + required: *223 + required: &883 - id - node_id - sha @@ -67433,7 +67679,7 @@ paths: - created_at - updated_at examples: - default: &613 + default: &616 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -67489,9 +67735,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 requestBody: required: false content: @@ -67512,7 +67758,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -67535,9 +67781,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 requestBody: required: false content: @@ -67558,7 +67804,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -67591,9 +67837,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '200': description: Response @@ -67730,8 +67976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -67749,9 +67995,9 @@ paths: type: integer secrets: type: array - items: *499 + items: *502 examples: - default: *500 + default: *503 headers: Link: *47 x-github: @@ -67776,16 +68022,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *502 + default: *505 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67807,17 +68053,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '200': description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: &640 + default: &643 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -67843,9 +68089,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 requestBody: required: true content: @@ -67876,7 +68122,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -67902,9 +68148,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '204': description: Response @@ -67929,9 +68175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *468 - - *469 - - *486 + - *471 + - *472 + - *489 - *19 responses: '200': @@ -67948,9 +68194,9 @@ paths: type: integer variables: type: array - items: *503 + items: *506 examples: - default: *504 + default: *507 headers: Link: *47 x-github: @@ -67973,8 +68219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -68001,7 +68247,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -68026,17 +68272,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *468 - - *469 - - *301 + - *471 + - *472 + - *304 responses: '200': description: Response content: application/json: - schema: *503 + schema: *506 examples: - default: &641 + default: &644 value: name: USERNAME value: octocat @@ -68062,9 +68308,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *468 - - *469 - - *301 + - *471 + - *472 + - *304 requestBody: required: true content: @@ -68106,9 +68352,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *468 - - *469 - - *301 + - *471 + - *472 + - *304 responses: '204': description: Response @@ -68133,8 +68379,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -68152,7 +68398,7 @@ paths: type: integer workflows: type: array - items: &505 + items: &508 title: Workflow description: A GitHub Actions workflow type: object @@ -68259,9 +68505,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *468 - - *469 - - &506 + - *471 + - *472 + - &509 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -68276,7 +68522,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *508 examples: default: value: @@ -68309,9 +68555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *468 - - *469 - - *506 + - *471 + - *472 + - *509 responses: '204': description: Response @@ -68336,9 +68582,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *468 - - *469 - - *506 + - *471 + - *472 + - *509 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -68425,9 +68671,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *468 - - *469 - - *506 + - *471 + - *472 + - *509 responses: '204': description: Response @@ -68454,19 +68700,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *468 - - *469 - - *506 - - *507 - - *508 + - *471 + - *472 - *509 - *510 - - *17 - - *19 - *511 - - *490 - *512 - *513 + - *17 + - *19 + - *514 + - *493 + - *515 + - *516 responses: '200': description: Response @@ -68482,9 +68728,9 @@ paths: type: integer workflow_runs: type: array - items: *491 + items: *494 examples: - default: *514 + default: *517 headers: Link: *47 x-github: @@ -68517,9 +68763,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *468 - - *469 - - *506 + - *471 + - *472 + - *509 responses: '200': description: Response @@ -68580,12 +68826,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *468 - - *469 - - *110 + - *471 + - *472 + - *112 - *17 - - *108 - - *109 + - *110 + - *111 - name: ref description: |- The Git reference for the activities you want to list. @@ -68745,8 +68991,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -68758,7 +69004,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 '404': *6 @@ -68783,8 +69029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *468 - - *469 + - *471 + - *472 - name: assignee in: path required: true @@ -68820,8 +69066,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#create-an-attestation parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -68933,11 +69179,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#list-attestations parameters: - - *468 - - *469 + - *471 + - *472 - *17 - - *108 - - *109 + - *110 + - *111 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -68991,7 +69237,7 @@ paths: initiator: type: string examples: - default: *515 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69011,8 +69257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -69020,7 +69266,7 @@ paths: application/json: schema: type: array - items: &516 + items: &519 title: Autolink reference description: An autolink reference. type: object @@ -69074,8 +69320,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -69114,9 +69360,9 @@ paths: description: response content: application/json: - schema: *516 + schema: *519 examples: - default: &517 + default: &520 value: id: 1 key_prefix: TICKET- @@ -69147,9 +69393,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *468 - - *469 - - &518 + - *471 + - *472 + - &521 name: autolink_id description: The unique identifier of the autolink. in: path @@ -69161,9 +69407,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 '404': *6 x-github: githubCloudOnly: false @@ -69183,9 +69429,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *468 - - *469 - - *518 + - *471 + - *472 + - *521 responses: '204': description: Response @@ -69209,8 +69455,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response if Dependabot is enabled @@ -69258,8 +69504,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -69280,8 +69526,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -69301,8 +69547,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *468 - - *469 + - *471 + - *472 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -69340,7 +69586,7 @@ paths: - url protected: type: boolean - protection: &520 + protection: &523 title: Branch Protection description: Branch Protection type: object @@ -69382,7 +69628,7 @@ paths: required: - contexts - checks - enforce_admins: &523 + enforce_admins: &526 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -69397,7 +69643,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &525 + required_pull_request_reviews: &528 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -69418,7 +69664,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *317 + items: *320 apps: description: The list of apps with review dismissal access. @@ -69447,7 +69693,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *317 + items: *320 apps: description: The list of apps allowed to bypass pull request requirements. @@ -69473,7 +69719,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &522 + restrictions: &525 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -69536,7 +69782,7 @@ paths: type: string teams: type: array - items: *317 + items: *320 apps: type: array items: @@ -69750,9 +69996,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *468 - - *469 - - &521 + - *471 + - *472 + - &524 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -69766,14 +70012,14 @@ paths: description: Response content: application/json: - schema: &531 + schema: &534 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &585 + commit: &588 title: Commit description: Commit type: object @@ -69807,7 +70053,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &519 + properties: &522 name: type: string example: '"Chris Wanstrath"' @@ -69823,7 +70069,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *519 + properties: *522 nullable: true message: type: string @@ -69844,7 +70090,7 @@ paths: required: - sha - url - verification: &647 + verification: &650 title: Verification type: object properties: @@ -69878,12 +70124,12 @@ paths: nullable: true oneOf: - *4 - - *299 + - *302 committer: nullable: true oneOf: - *4 - - *299 + - *302 parents: type: array items: @@ -69914,7 +70160,7 @@ paths: type: integer files: type: array - items: &598 + items: &601 title: Diff Entry description: Diff Entry type: object @@ -69998,7 +70244,7 @@ paths: - self protected: type: boolean - protection: *520 + protection: *523 protection_url: type: string format: uri @@ -70105,7 +70351,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *474 + '301': *477 '404': *6 x-github: githubCloudOnly: false @@ -70127,15 +70373,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *520 + schema: *523 examples: default: value: @@ -70329,9 +70575,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -70586,7 +70832,7 @@ paths: url: type: string format: uri - required_status_checks: &528 + required_status_checks: &531 title: Status Check Policy description: Status Check Policy type: object @@ -70662,7 +70908,7 @@ paths: items: *4 teams: type: array - items: *317 + items: *320 apps: type: array items: *5 @@ -70680,7 +70926,7 @@ paths: items: *4 teams: type: array - items: *317 + items: *320 apps: type: array items: *5 @@ -70738,7 +70984,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *522 + restrictions: *525 required_conversation_resolution: type: object properties: @@ -70850,9 +71096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -70877,17 +71123,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: &524 + default: &527 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -70909,17 +71155,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: *524 + default: *527 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70938,9 +71184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -70965,17 +71211,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *525 + schema: *528 examples: - default: &526 + default: &529 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -71071,9 +71317,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -71171,9 +71417,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *528 examples: - default: *526 + default: *529 '422': *15 x-github: githubCloudOnly: false @@ -71194,9 +71440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -71223,17 +71469,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: &527 + default: &530 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -71256,17 +71502,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: *527 + default: *530 '404': *6 x-github: githubCloudOnly: false @@ -71286,9 +71532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -71313,17 +71559,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *528 + schema: *531 examples: - default: &529 + default: &532 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -71349,9 +71595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -71403,9 +71649,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *531 examples: - default: *529 + default: *532 '404': *6 '422': *15 x-github: @@ -71427,9 +71673,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -71453,9 +71699,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response @@ -71489,9 +71735,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -71558,9 +71804,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -71624,9 +71870,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: content: application/json: @@ -71692,15 +71938,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *522 + schema: *525 examples: default: value: @@ -71791,9 +72037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -71816,9 +72062,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response @@ -71828,7 +72074,7 @@ paths: type: array items: *5 examples: - default: &530 + default: &533 value: - id: 1 slug: octoapp @@ -71885,9 +72131,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -71921,7 +72167,7 @@ paths: type: array items: *5 examples: - default: *530 + default: *533 '422': *15 x-github: githubCloudOnly: false @@ -71942,9 +72188,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -71978,7 +72224,7 @@ paths: type: array items: *5 examples: - default: *530 + default: *533 '422': *15 x-github: githubCloudOnly: false @@ -71999,9 +72245,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -72035,7 +72281,7 @@ paths: type: array items: *5 examples: - default: *530 + default: *533 '422': *15 x-github: githubCloudOnly: false @@ -72057,9 +72303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response @@ -72067,9 +72313,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 '404': *6 x-github: githubCloudOnly: false @@ -72089,9 +72335,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -72127,9 +72373,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 '422': *15 x-github: githubCloudOnly: false @@ -72150,9 +72396,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -72188,9 +72434,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 '422': *15 x-github: githubCloudOnly: false @@ -72211,9 +72457,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: content: application/json: @@ -72248,9 +72494,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 '422': *15 x-github: githubCloudOnly: false @@ -72272,9 +72518,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response @@ -72284,7 +72530,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 '404': *6 x-github: githubCloudOnly: false @@ -72308,9 +72554,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -72343,7 +72589,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -72368,9 +72614,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -72403,7 +72649,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -72428,9 +72674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -72463,7 +72709,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -72490,9 +72736,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -72514,7 +72760,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: default: value: @@ -72628,12 +72874,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *468 - - *469 - - *103 - - *104 + - *471 + - *472 - *105 - *106 + - *107 + - *108 - *17 - *19 responses: @@ -72643,9 +72889,9 @@ paths: application/json: schema: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 '404': *6 '500': *40 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -72665,8 +72911,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: bypass_request_number in: path required: true @@ -72680,7 +72926,7 @@ paths: description: Response content: application/json: - schema: *312 + schema: *315 examples: default: value: @@ -72739,12 +72985,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *468 - - *469 - - *103 - - *104 + - *471 + - *472 - *105 - *106 + - *107 + - *108 - *17 - *19 responses: @@ -72754,9 +73000,9 @@ paths: application/json: schema: type: array - items: *315 + items: *318 examples: - default: *316 + default: *319 '404': *6 '403': *29 '500': *40 @@ -72780,8 +73026,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *468 - - *469 + - *471 + - *472 - name: bypass_request_number in: path required: true @@ -72793,7 +73039,7 @@ paths: description: A single bypass request. content: application/json: - schema: *315 + schema: *318 examples: default: value: @@ -72851,8 +73097,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *468 - - *469 + - *471 + - *472 - name: bypass_request_number in: path required: true @@ -72923,8 +73169,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *468 - - *469 + - *471 + - *472 - name: bypass_response_id in: path required: true @@ -72957,8 +73203,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -73237,7 +73483,7 @@ paths: description: Response content: application/json: - schema: &532 + schema: &535 title: CheckRun description: A check performed on the code of a given code change type: object @@ -73348,16 +73594,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *230 - deployment: &872 + items: *232 + deployment: &875 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -73424,8 +73670,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 required: - id - node_id @@ -73637,9 +73883,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *468 - - *469 - - &533 + - *471 + - *472 + - &536 name: check_run_id description: The unique identifier of the check run. in: path @@ -73651,9 +73897,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *535 examples: - default: &534 + default: &537 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -73753,9 +73999,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *468 - - *469 - - *533 + - *471 + - *472 + - *536 requestBody: required: true content: @@ -73995,9 +74241,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *535 examples: - default: *534 + default: *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74017,9 +74263,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *468 - - *469 - - *533 + - *471 + - *472 + - *536 - *17 - *19 responses: @@ -74114,15 +74360,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *468 - - *469 - - *533 + - *471 + - *472 + - *536 responses: '201': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -74160,8 +74406,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -74183,7 +74429,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &537 + schema: &540 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -74247,7 +74493,7 @@ paths: nullable: true pull_requests: type: array - items: *230 + items: *232 nullable: true app: title: GitHub app @@ -74258,9 +74504,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 - repository: *288 + properties: *222 + required: *223 + repository: *291 created_at: type: string format: date-time @@ -74269,12 +74515,12 @@ paths: type: string format: date-time nullable: true - head_commit: &905 + head_commit: &908 title: Simple Commit description: A commit. type: object - properties: *535 - required: *536 + properties: *538 + required: *539 latest_check_runs_count: type: integer check_runs_url: @@ -74302,7 +74548,7 @@ paths: - check_runs_url - pull_requests examples: - default: &538 + default: &541 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -74593,9 +74839,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *537 + schema: *540 examples: - default: *538 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74614,8 +74860,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -74676,7 +74922,7 @@ paths: required: - app_id - setting - repository: *288 + repository: *291 examples: default: value: @@ -74924,9 +75170,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *468 - - *469 - - &539 + - *471 + - *472 + - &542 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -74938,9 +75184,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *540 examples: - default: *538 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74963,17 +75209,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *468 - - *469 - - *539 - - &591 + - *471 + - *472 + - *542 + - &594 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &592 + - &595 name: status description: Returns check runs with the specified `status`. in: query @@ -75012,9 +75258,9 @@ paths: type: integer check_runs: type: array - items: *532 + items: *535 examples: - default: &593 + default: &596 value: total_count: 1 check_runs: @@ -75116,15 +75362,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *468 - - *469 - - *539 + - *471 + - *472 + - *542 responses: '201': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -75151,30 +75397,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *468 - - *469 - - *321 - - *322 + - *471 + - *472 + - *324 + - *325 - *19 - *17 - - &555 + - &558 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: *540 - - &556 + schema: *543 + - &559 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer + - *112 - *110 - - *108 - - *109 + - *111 - name: sort description: The property by which to sort the results. in: query @@ -75190,13 +75436,13 @@ paths: be returned. in: query required: false - schema: *323 + schema: *326 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *541 + schema: *544 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -75215,14 +75461,14 @@ paths: items: type: object properties: - number: *128 - created_at: *135 - updated_at: *136 - url: *133 - html_url: *134 - instances_url: *542 - state: *113 - fixed_at: *138 + number: *130 + created_at: *137 + updated_at: *138 + url: *135 + html_url: *136 + instances_url: *545 + state: *115 + fixed_at: *140 dismissed_by: title: Simple User description: A GitHub user. @@ -75230,12 +75476,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *137 - dismissed_reason: *543 - dismissed_comment: *544 - rule: *545 - tool: *546 - most_recent_instance: *547 + dismissed_at: *139 + dismissed_reason: *546 + dismissed_comment: *547 + rule: *548 + tool: *549 + most_recent_instance: *550 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -75361,14 +75607,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &548 + '403': &551 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75388,9 +75634,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *468 - - *469 - - &549 + - *471 + - *472 + - &552 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -75398,23 +75644,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *128 + schema: *130 responses: '200': description: Response content: application/json: - schema: &550 + schema: &553 type: object properties: - number: *128 - created_at: *135 - updated_at: *136 - url: *133 - html_url: *134 - instances_url: *542 - state: *113 - fixed_at: *138 + number: *130 + created_at: *137 + updated_at: *138 + url: *135 + html_url: *136 + instances_url: *545 + state: *115 + fixed_at: *140 dismissed_by: title: Simple User description: A GitHub user. @@ -75422,9 +75668,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *137 - dismissed_reason: *543 - dismissed_comment: *544 + dismissed_at: *139 + dismissed_reason: *546 + dismissed_comment: *547 rule: type: object properties: @@ -75478,8 +75724,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *546 - most_recent_instance: *547 + tool: *549 + most_recent_instance: *550 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -75578,9 +75824,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75598,9 +75844,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 requestBody: required: true content: @@ -75615,8 +75861,8 @@ paths: enum: - open - dismissed - dismissed_reason: *543 - dismissed_comment: *544 + dismissed_reason: *546 + dismissed_comment: *547 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -75644,7 +75890,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *553 examples: default: value: @@ -75720,14 +75966,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &554 + '403': &557 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -75747,15 +75993,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 responses: '200': description: Response content: application/json: - schema: &551 + schema: &554 type: object properties: status: @@ -75781,13 +76027,13 @@ paths: - description - started_at examples: - default: &552 + default: &555 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &553 + '400': &556 description: Bad Request content: application/json: @@ -75798,9 +76044,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75823,29 +76069,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 responses: '200': description: OK content: application/json: - schema: *551 + schema: *554 examples: - default: *552 + default: *555 '202': description: Accepted content: application/json: - schema: *551 + schema: *554 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *553 + '400': *556 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -75855,7 +76101,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75877,9 +76123,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 requestBody: required: false content: @@ -75924,12 +76170,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *553 - '403': *554 + '400': *556 + '403': *557 '404': *6 '422': description: Unprocessable Entity - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75949,13 +76195,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 - *19 - *17 - - *555 - - *556 + - *558 + - *559 responses: '200': description: Response @@ -75966,10 +76212,10 @@ paths: items: type: object properties: - ref: *540 - analysis_key: *557 - environment: *558 - category: *559 + ref: *543 + analysis_key: *560 + environment: *561 + category: *562 state: type: string description: State of a code scanning alert instance. @@ -75984,7 +76230,7 @@ paths: properties: text: type: string - location: *560 + location: *563 html_url: type: string classifications: @@ -75992,7 +76238,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: *561 + items: *564 examples: default: value: @@ -76029,9 +76275,9 @@ paths: end_column: 50 classifications: - source - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76063,29 +76309,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *468 - - *469 - - *321 - - *322 + - *471 + - *472 + - *324 + - *325 - *19 - *17 - - *556 + - *559 - 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: *540 + schema: *543 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &562 + schema: &565 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *110 + - *112 - name: sort description: The property by which to sort the results. in: query @@ -76102,23 +76348,23 @@ paths: application/json: schema: type: array - items: &563 + items: &566 type: object properties: - ref: *540 - commit_sha: &571 + ref: *543 + commit_sha: &574 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *557 + analysis_key: *560 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *559 + category: *562 error: type: string example: error reading field xyz @@ -76142,8 +76388,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *562 - tool: *546 + sarif_id: *565 + tool: *549 deletable: type: boolean warning: @@ -76204,9 +76450,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -76240,8 +76486,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76254,7 +76500,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *566 examples: response: summary: application/json response @@ -76308,14 +76554,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *548 + '403': *551 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -76395,8 +76641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76449,9 +76695,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *554 + '403': *557 '404': *6 - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -76471,8 +76717,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -76480,7 +76726,7 @@ paths: application/json: schema: type: array - items: &564 + items: &567 title: CodeQL Database description: A CodeQL database. type: object @@ -76591,9 +76837,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76620,8 +76866,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - name: language in: path description: The language of the CodeQL database. @@ -76633,7 +76879,7 @@ paths: description: Response content: application/json: - schema: *564 + schema: *567 examples: default: value: @@ -76665,11 +76911,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &600 + '302': &603 description: Found - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76689,8 +76935,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *468 - - *469 + - *471 + - *472 - name: language in: path description: The language of the CodeQL database. @@ -76700,9 +76946,9 @@ paths: responses: '204': description: Response - '403': *554 + '403': *557 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76728,8 +76974,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -76738,7 +76984,7 @@ paths: type: object additionalProperties: false properties: - language: &565 + language: &568 type: string description: The language targeted by the CodeQL query enum: @@ -76818,7 +77064,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &569 + schema: &572 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -76826,9 +77072,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *120 + controller_repo: *122 actor: *4 - query_language: *565 + query_language: *568 query_pack_url: type: string description: The download url for the query pack. @@ -76875,7 +77121,7 @@ paths: items: type: object properties: - repository: &566 + repository: &569 title: Repository Identifier description: Repository Identifier type: object @@ -76911,7 +77157,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &570 + analysis_status: &573 type: string description: The new status of the CodeQL variant analysis repository task. @@ -76943,7 +77189,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &567 + access_mismatch_repos: &570 type: object properties: repository_count: @@ -76957,7 +77203,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: *566 + items: *569 required: - repository_count - repositories @@ -76979,8 +77225,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *567 - over_limit_repos: *567 + no_codeql_db_repos: *570 + over_limit_repos: *570 required: - access_mismatch_repos - not_found_repos @@ -76996,7 +77242,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &568 + value: &571 summary: Default response value: id: 1 @@ -77142,17 +77388,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *568 + value: *571 repository_lists: summary: Response for a successful variant analysis submission - value: *568 + value: *571 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77173,8 +77419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *468 - - *469 + - *471 + - *472 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -77186,11 +77432,11 @@ paths: description: Response content: application/json: - schema: *569 + schema: *572 examples: - default: *568 + default: *571 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77211,7 +77457,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *468 + - *471 - name: repo in: path description: The name of the controller repository. @@ -77245,8 +77491,8 @@ paths: schema: type: object properties: - repository: *120 - analysis_status: *570 + repository: *122 + analysis_status: *573 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -77350,7 +77596,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77371,8 +77617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -77457,9 +77703,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77478,8 +77724,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -77546,7 +77792,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -77571,7 +77817,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *554 + '403': *557 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -77585,7 +77831,7 @@ paths: content: application/json: schema: *3 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77642,8 +77888,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -77651,7 +77897,7 @@ paths: schema: type: object properties: - commit_sha: *571 + commit_sha: *574 ref: type: string description: |- @@ -77709,7 +77955,7 @@ paths: schema: type: object properties: - id: *562 + id: *565 url: type: string description: The REST API URL for checking the status of the upload. @@ -77723,11 +77969,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *554 + '403': *557 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77746,8 +77992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *468 - - *469 + - *471 + - *472 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -77793,10 +78039,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *548 + '403': *551 '404': description: Not Found if the sarif id does not match any upload - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77818,8 +78064,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -77843,7 +78089,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *114 + configuration: *116 examples: default: value: @@ -77875,7 +78121,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *155 + '204': *157 '304': *37 '403': *29 '404': *6 @@ -77900,8 +78146,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *468 - - *469 + - *471 + - *472 - 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 @@ -78021,8 +78267,8 @@ paths: parameters: - *17 - *19 - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -78038,7 +78284,7 @@ paths: type: integer codespaces: type: array - items: *386 + items: *389 examples: default: value: @@ -78336,8 +78582,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -78400,22 +78646,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -78439,8 +78685,8 @@ paths: parameters: - *17 - *19 - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -78504,8 +78750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -78540,14 +78786,14 @@ paths: type: integer machines: type: array - items: &817 + items: &820 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *573 - required: *574 + properties: *576 + required: *577 examples: - default: &818 + default: &821 value: total_count: 2 machines: @@ -78587,8 +78833,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *468 - - *469 + - *471 + - *472 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -78672,8 +78918,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *468 - - *469 + - *471 + - *472 - 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 @@ -78718,7 +78964,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78739,8 +78985,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -78758,7 +79004,7 @@ paths: type: integer secrets: type: array - items: &578 + items: &581 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -78778,7 +79024,7 @@ paths: - created_at - updated_at examples: - default: *575 + default: *578 headers: Link: *47 x-github: @@ -78801,16 +79047,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *576 + schema: *579 examples: - default: *577 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -78830,17 +79076,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '200': description: Response content: application/json: - schema: *578 + schema: *581 examples: - default: *579 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78860,9 +79106,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 requestBody: required: true content: @@ -78890,7 +79136,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -78914,9 +79160,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '204': description: Response @@ -78944,8 +79190,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *468 - - *469 + - *471 + - *472 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -78987,7 +79233,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &580 + properties: &583 login: type: string example: octocat @@ -79080,7 +79326,7 @@ paths: user_view_type: type: string example: public - required: &581 + required: &584 - avatar_url - events_url - followers_url @@ -79154,9 +79400,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *468 - - *469 - - *143 + - *471 + - *472 + - *145 responses: '204': description: Response if user is a collaborator @@ -79202,9 +79448,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *468 - - *469 - - *143 + - *471 + - *472 + - *145 requestBody: required: false content: @@ -79230,7 +79476,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &659 + schema: &662 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -79241,7 +79487,7 @@ paths: example: 42 type: integer format: int64 - repository: *288 + repository: *291 invitee: title: Simple User description: A GitHub user. @@ -79419,7 +79665,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *263 + schema: *265 '403': *29 x-github: triggersNotification: true @@ -79459,9 +79705,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *468 - - *469 - - *143 + - *471 + - *472 + - *145 responses: '204': description: No Content when collaborator was removed from the repository. @@ -79492,9 +79738,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *468 - - *469 - - *143 + - *471 + - *472 + - *145 responses: '200': description: if user has admin permissions @@ -79514,8 +79760,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *580 - required: *581 + properties: *583 + required: *584 nullable: true required: - permission @@ -79570,8 +79816,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -79581,7 +79827,7 @@ paths: application/json: schema: type: array - items: &582 + items: &585 title: Commit Comment description: Commit Comment type: object @@ -79622,8 +79868,8 @@ paths: updated_at: type: string format: date-time - author_association: *222 - reactions: *223 + author_association: *224 + reactions: *225 required: - url - html_url @@ -79639,7 +79885,7 @@ paths: - created_at - updated_at examples: - default: &587 + default: &590 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -79698,17 +79944,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '200': description: Response content: application/json: - schema: *582 + schema: *585 examples: - default: &588 + default: &591 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -79765,9 +80011,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -79789,7 +80035,7 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: default: value: @@ -79840,9 +80086,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '204': description: Response @@ -79863,9 +80109,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a commit comment. @@ -79891,7 +80137,7 @@ paths: application/json: schema: type: array - items: &583 + items: &586 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -79934,7 +80180,7 @@ paths: - content - created_at examples: - default: &663 + default: &666 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -79979,9 +80225,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -80013,9 +80259,9 @@ paths: description: Reaction exists content: application/json: - schema: *583 + schema: *586 examples: - default: &584 + default: &587 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -80044,9 +80290,9 @@ paths: description: Reaction created content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -80068,10 +80314,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *468 - - *469 - - *241 - - &664 + - *471 + - *472 + - *243 + - &667 name: reaction_id description: The unique identifier of the reaction. in: path @@ -80126,8 +80372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *468 - - *469 + - *471 + - *472 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -80183,9 +80429,9 @@ paths: application/json: schema: type: array - items: *585 + items: *588 examples: - default: &716 + default: &719 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -80259,7 +80505,7 @@ paths: '500': *40 '400': *14 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80279,9 +80525,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *468 - - *469 - - &586 + - *471 + - *472 + - &589 name: commit_sha description: The SHA of the commit. in: path @@ -80328,7 +80574,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80353,9 +80599,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *468 - - *469 - - *586 + - *471 + - *472 + - *589 - *17 - *19 responses: @@ -80365,9 +80611,9 @@ paths: application/json: schema: type: array - items: *582 + items: *585 examples: - default: *587 + default: *590 headers: Link: *47 x-github: @@ -80395,9 +80641,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *468 - - *469 - - *586 + - *471 + - *472 + - *589 requestBody: required: true content: @@ -80432,9 +80678,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: - default: *588 + default: *591 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80462,9 +80708,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *468 - - *469 - - *586 + - *471 + - *472 + - *589 - *17 - *19 responses: @@ -80474,9 +80720,9 @@ paths: application/json: schema: type: array - items: *589 + items: *592 examples: - default: &708 + default: &711 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -80956,7 +81202,7 @@ paths: draft: false headers: Link: *47 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81013,11 +81259,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *468 - - *469 + - *471 + - *472 - *19 - *17 - - &590 + - &593 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)" @@ -81032,9 +81278,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *588 examples: - default: &693 + default: &696 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -81121,8 +81367,8 @@ paths: '422': *15 '404': *6 '500': *40 - '503': *196 - '409': *119 + '503': *198 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81147,11 +81393,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *468 - - *469 - - *590 - - *591 - - *592 + - *471 + - *472 + - *593 + - *594 + - *595 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -81185,9 +81431,9 @@ paths: type: integer check_runs: type: array - items: *532 + items: *535 examples: - default: *593 + default: *596 headers: Link: *47 x-github: @@ -81212,9 +81458,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *468 - - *469 - - *590 + - *471 + - *472 + - *593 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -81222,7 +81468,7 @@ paths: schema: type: integer example: 1 - - *591 + - *594 - *17 - *19 responses: @@ -81240,7 +81486,7 @@ paths: type: integer check_suites: type: array - items: *537 + items: *540 examples: default: value: @@ -81440,9 +81686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *468 - - *469 - - *590 + - *471 + - *472 + - *593 - *17 - *19 responses: @@ -81509,7 +81755,7 @@ paths: type: string total_count: type: integer - repository: *288 + repository: *291 commit_url: type: string format: uri @@ -81640,9 +81886,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *468 - - *469 - - *590 + - *471 + - *472 + - *593 - *17 - *19 responses: @@ -81652,7 +81898,7 @@ paths: application/json: schema: type: array - items: &769 + items: &772 title: Status description: The status of a commit. type: object @@ -81733,7 +81979,7 @@ paths: site_admin: false headers: Link: *47 - '301': *474 + '301': *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81761,8 +82007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -81791,20 +82037,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *594 - required: *595 + properties: *597 + required: *598 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &596 + properties: &599 url: type: string format: uri html_url: type: string format: uri - required: &597 + required: &600 - url - html_url nullable: true @@ -81812,32 +82058,32 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true contributing: title: Community Health File type: object - properties: *596 - required: *597 + properties: *599 + required: *600 nullable: true readme: title: Community Health File type: object - properties: *596 - required: *597 + properties: *599 + required: *600 nullable: true issue_template: title: Community Health File type: object - properties: *596 - required: *597 + properties: *599 + required: *600 nullable: true pull_request_template: title: Community Health File type: object - properties: *596 - required: *597 + properties: *599 + required: *600 nullable: true required: - code_of_conduct @@ -81964,8 +82210,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *468 - - *469 + - *471 + - *472 - *19 - *17 - name: basehead @@ -82008,8 +82254,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *585 - merge_base_commit: *585 + base_commit: *588 + merge_base_commit: *588 status: type: string enum: @@ -82029,10 +82275,10 @@ paths: example: 6 commits: type: array - items: *585 + items: *588 files: type: array - items: *598 + items: *601 required: - url - html_url @@ -82276,7 +82522,7 @@ paths: module Test" '404': *6 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82318,8 +82564,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *468 - - *469 + - *471 + - *472 - name: path description: path parameter in: path @@ -82479,7 +82725,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &599 + response-if-content-is-a-file-github-object: &602 summary: Response if content is a file value: type: file @@ -82611,7 +82857,7 @@ paths: - size - type - url - - &721 + - &724 title: Content File description: Content File type: object @@ -82812,7 +83058,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *599 + response-if-content-is-a-file: *602 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -82881,7 +83127,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *600 + '302': *603 '304': *37 x-github: githubCloudOnly: false @@ -82904,8 +83150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *468 - - *469 + - *471 + - *472 - name: path description: path parameter in: path @@ -82998,7 +83244,7 @@ paths: description: Response content: application/json: - schema: &601 + schema: &604 title: File Commit description: File Commit type: object @@ -83150,7 +83396,7 @@ paths: description: Response content: application/json: - schema: *601 + schema: *604 examples: example-for-creating-a-file: value: @@ -83204,7 +83450,7 @@ paths: schema: oneOf: - *3 - - &642 + - &645 description: Repository rule violation was detected type: object properties: @@ -83225,7 +83471,7 @@ paths: items: type: object properties: - placeholder_id: &761 + placeholder_id: &764 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -83257,8 +83503,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *468 - - *469 + - *471 + - *472 - name: path description: path parameter in: path @@ -83319,7 +83565,7 @@ paths: description: Response content: application/json: - schema: *601 + schema: *604 examples: default: value: @@ -83353,8 +83599,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *119 - '503': *196 + '409': *121 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83374,8 +83620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *468 - - *469 + - *471 + - *472 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -83498,26 +83744,26 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *468 - - *469 - - *337 - - *338 - - *339 + - *471 + - *472 - *340 + - *341 + - *342 + - *343 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *341 - - *602 - - *342 - - *343 - *344 + - *605 + - *345 + - *346 + - *347 + - *112 - *110 - - *108 - - *109 + - *111 - *17 responses: '200': @@ -83526,11 +83772,11 @@ paths: application/json: schema: type: array - items: &606 + items: &609 type: object description: A Dependabot alert. properties: - number: *128 + number: *130 state: type: string description: The state of the Dependabot alert. @@ -83545,7 +83791,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *129 + package: *131 manifest_path: type: string description: The full path to the dependency manifest file, @@ -83572,13 +83818,13 @@ paths: - unknown - direct - transitive - security_advisory: *603 - security_vulnerability: *132 - url: *133 - html_url: *134 - created_at: *135 - updated_at: *136 - dismissed_at: *137 + security_advisory: *606 + security_vulnerability: *134 + url: *135 + html_url: *136 + created_at: *137 + updated_at: *138 + dismissed_at: *139 dismissed_by: title: Simple User description: A GitHub user. @@ -83602,9 +83848,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *138 - auto_dismissed_at: *604 - dismissal_request: *605 + fixed_at: *140 + auto_dismissed_at: *607 + dismissal_request: *608 assignees: type: array description: The users assigned to this alert. @@ -83859,9 +84105,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *468 - - *469 - - &607 + - *471 + - *472 + - &610 name: alert_number in: path description: |- @@ -83870,13 +84116,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *128 + schema: *130 responses: '200': description: Response content: application/json: - schema: *606 + schema: *609 examples: default: value: @@ -84008,9 +84254,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *468 - - *469 - - *607 + - *471 + - *472 + - *610 requestBody: required: true content: @@ -84066,7 +84312,7 @@ paths: description: Response content: application/json: - schema: *606 + schema: *609 examples: default: value: @@ -84173,7 +84419,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *7 x-github: githubCloudOnly: false @@ -84196,8 +84442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -84215,7 +84461,7 @@ paths: type: integer secrets: type: array - items: &610 + items: &613 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -84268,16 +84514,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *608 + schema: *611 examples: - default: *609 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84297,15 +84543,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '200': description: Response content: application/json: - schema: *610 + schema: *613 examples: default: value: @@ -84331,9 +84577,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 requestBody: required: true content: @@ -84361,7 +84607,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -84385,9 +84631,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '204': description: Response @@ -84409,8 +84655,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *468 - - *469 + - *471 + - *472 - 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 @@ -84570,8 +84816,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -84810,8 +85056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -84886,7 +85132,7 @@ paths: - version - url additionalProperties: false - metadata: &611 + metadata: &614 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -84919,7 +85165,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *611 + metadata: *614 resolved: type: object description: A collection of resolved package dependencies. @@ -84932,7 +85178,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *611 + metadata: *614 relationship: type: string description: A notation of whether a dependency is requested @@ -85061,8 +85307,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *468 - - *469 + - *471 + - *472 - name: sha description: The SHA recorded at creation time. in: query @@ -85102,9 +85348,9 @@ paths: application/json: schema: type: array - items: *612 + items: *615 examples: - default: *613 + default: *616 headers: Link: *47 x-github: @@ -85170,8 +85416,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -85252,7 +85498,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *615 examples: simple-example: summary: Simple example @@ -85325,9 +85571,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *468 - - *469 - - &614 + - *471 + - *472 + - &617 name: deployment_id description: deployment_id parameter in: path @@ -85339,7 +85585,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *615 examples: default: value: @@ -85404,9 +85650,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *468 - - *469 - - *614 + - *471 + - *472 + - *617 responses: '204': description: Response @@ -85428,9 +85674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *468 - - *469 - - *614 + - *471 + - *472 + - *617 - *17 - *19 responses: @@ -85440,7 +85686,7 @@ paths: application/json: schema: type: array - items: &615 + items: &618 title: Deployment Status description: The status of a deployment. type: object @@ -85531,8 +85777,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 required: - id - node_id @@ -85601,9 +85847,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *468 - - *469 - - *614 + - *471 + - *472 + - *617 requestBody: required: true content: @@ -85678,9 +85924,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *618 examples: - default: &616 + default: &619 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -85736,9 +85982,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *468 - - *469 - - *614 + - *471 + - *472 + - *617 - name: status_id in: path required: true @@ -85749,9 +85995,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *618 examples: - default: *616 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -85778,12 +86024,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 - - *617 - - *618 - - *619 + - *471 + - *472 - *620 + - *621 + - *622 + - *623 - *17 - *19 responses: @@ -85793,9 +86039,9 @@ paths: application/json: schema: type: array - items: *621 + items: *624 examples: - default: *622 + default: *625 '404': *6 '403': *29 '500': *40 @@ -85819,8 +86065,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -85832,7 +86078,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *621 + schema: *624 examples: default: value: @@ -85888,8 +86134,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -85948,12 +86194,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *468 - - *469 - - *617 - - *618 - - *619 + - *471 + - *472 - *620 + - *621 + - *622 + - *623 - *17 - *19 responses: @@ -85963,9 +86209,9 @@ paths: application/json: schema: type: array - items: *623 + items: *626 examples: - default: *624 + default: *627 '404': *6 '403': *29 '500': *40 @@ -85989,8 +86235,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -86002,7 +86248,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *623 + schema: *626 examples: default: value: @@ -86053,8 +86299,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -86092,7 +86338,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *623 + schema: *626 examples: default: value: @@ -86143,8 +86389,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -86215,8 +86461,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -86249,12 +86495,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 - - *103 - - *104 + - *471 + - *472 - *105 - - *349 + - *106 + - *107 + - *352 - *17 - *19 responses: @@ -86264,9 +86510,9 @@ paths: application/json: schema: type: array - items: *625 + items: *628 examples: - default: *626 + default: *629 '404': *6 '403': *29 '500': *40 @@ -86291,8 +86537,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -86304,7 +86550,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *625 + schema: *628 examples: default: value: @@ -86362,8 +86608,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -86432,8 +86678,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -86490,8 +86736,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -86508,7 +86754,7 @@ paths: type: integer environments: type: array - items: &628 + items: &631 title: Environment description: Details of a deployment environment type: object @@ -86560,7 +86806,7 @@ paths: type: type: string example: wait_timer - wait_timer: &630 + wait_timer: &633 type: integer example: 30 description: The amount of time to delay a job after @@ -86597,11 +86843,11 @@ paths: items: type: object properties: - type: *627 + type: *630 reviewer: anyOf: - *4 - - *317 + - *320 required: - id - node_id @@ -86621,7 +86867,7 @@ paths: - id - node_id - type - deployment_branch_policy: &631 + deployment_branch_policy: &634 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -86737,9 +86983,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *468 - - *469 - - &629 + - *471 + - *472 + - &632 name: environment_name in: path required: true @@ -86752,9 +86998,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *631 examples: - default: &632 + default: &635 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -86838,9 +87084,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 requestBody: required: false content: @@ -86849,7 +87095,7 @@ paths: type: object nullable: true properties: - wait_timer: *630 + wait_timer: *633 prevent_self_review: type: boolean example: false @@ -86866,13 +87112,13 @@ paths: items: type: object properties: - type: *627 + type: *630 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *631 + deployment_branch_policy: *634 additionalProperties: false examples: default: @@ -86892,9 +87138,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *631 examples: - default: *632 + default: *635 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -86918,9 +87164,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 responses: '204': description: Default response @@ -86945,9 +87191,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 - *17 - *19 responses: @@ -86965,7 +87211,7 @@ paths: example: 2 branch_policies: type: array - items: &633 + items: &636 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -87022,9 +87268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 requestBody: required: true content: @@ -87070,9 +87316,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *636 examples: - example-wildcard: &634 + example-wildcard: &637 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -87114,10 +87360,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *468 - - *469 - - *629 - - &635 + - *471 + - *472 + - *632 + - &638 name: branch_policy_id in: path required: true @@ -87129,9 +87375,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *636 examples: - default: *634 + default: *637 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87150,10 +87396,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *468 - - *469 - - *629 - - *635 + - *471 + - *472 + - *632 + - *638 requestBody: required: true content: @@ -87181,9 +87427,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *636 examples: - default: *634 + default: *637 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87202,10 +87448,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *468 - - *469 - - *629 - - *635 + - *471 + - *472 + - *632 + - *638 responses: '204': description: Response @@ -87230,9 +87476,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *629 - - *469 - - *468 + - *632 + - *472 + - *471 responses: '200': description: List of deployment protection rules @@ -87248,7 +87494,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &636 + items: &639 title: Deployment protection rule description: Deployment protection rule type: object @@ -87267,7 +87513,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &637 + app: &640 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -87366,9 +87612,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *629 - - *469 - - *468 + - *632 + - *472 + - *471 requestBody: content: application/json: @@ -87389,9 +87635,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *636 + schema: *639 examples: - default: &638 + default: &641 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -87426,9 +87672,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *629 - - *469 - - *468 + - *632 + - *472 + - *471 - *19 - *17 responses: @@ -87447,7 +87693,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *637 + items: *640 examples: default: value: @@ -87482,10 +87728,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *468 - - *469 - - *629 - - &639 + - *471 + - *472 + - *632 + - &642 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -87497,9 +87743,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *639 examples: - default: *638 + default: *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87520,10 +87766,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *629 - - *469 - - *468 - - *639 + - *632 + - *472 + - *471 + - *642 responses: '204': description: Response @@ -87549,9 +87795,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 - *17 - *19 responses: @@ -87569,9 +87815,9 @@ paths: type: integer secrets: type: array - items: *499 + items: *502 examples: - default: *500 + default: *503 headers: Link: *47 x-github: @@ -87596,17 +87842,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 responses: '200': description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *502 + default: *505 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87628,18 +87874,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *468 - - *469 - - *629 - - *298 + - *471 + - *472 + - *632 + - *301 responses: '200': description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: *640 + default: *643 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87661,10 +87907,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *468 - - *469 - - *629 - - *298 + - *471 + - *472 + - *632 + - *301 requestBody: required: true content: @@ -87695,7 +87941,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -87721,10 +87967,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *468 - - *469 - - *629 - - *298 + - *471 + - *472 + - *632 + - *301 responses: '204': description: Default response @@ -87749,10 +87995,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *468 - - *469 - - *629 - - *486 + - *471 + - *472 + - *632 + - *489 - *19 responses: '200': @@ -87769,9 +88015,9 @@ paths: type: integer variables: type: array - items: *503 + items: *506 examples: - default: *504 + default: *507 headers: Link: *47 x-github: @@ -87794,9 +88040,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 requestBody: required: true content: @@ -87823,7 +88069,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -87848,18 +88094,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *468 - - *469 - - *629 - - *301 + - *471 + - *472 + - *632 + - *304 responses: '200': description: Response content: application/json: - schema: *503 + schema: *506 examples: - default: *641 + default: *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87880,10 +88126,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *468 - - *469 - - *301 - - *629 + - *471 + - *472 + - *304 + - *632 requestBody: required: true content: @@ -87925,10 +88171,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *468 - - *469 - - *301 - - *629 + - *471 + - *472 + - *304 + - *632 responses: '204': description: Response @@ -87950,8 +88196,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -87961,7 +88207,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: 200-response: value: @@ -88019,8 +88265,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *468 - - *469 + - *471 + - *472 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -88042,7 +88288,7 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: default: value: @@ -88179,8 +88425,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -88212,9 +88458,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *475 + default: *478 '400': *14 '422': *15 '403': *29 @@ -88235,8 +88481,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -88287,7 +88533,7 @@ paths: schema: type: string '404': *6 - '409': *119 + '409': *121 '403': *29 '422': description: Validation failed @@ -88295,8 +88541,8 @@ paths: application/json: schema: oneOf: - - *263 - - *642 + - *265 + - *645 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88321,8 +88567,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *468 - - *469 + - *471 + - *472 - name: file_sha in: path required: true @@ -88373,7 +88619,7 @@ paths: '404': *6 '422': *15 '403': *29 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88421,8 +88667,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -88531,7 +88777,7 @@ paths: description: Response content: application/json: - schema: &643 + schema: &646 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -88695,7 +88941,7 @@ paths: type: string '422': *15 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88745,15 +88991,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *468 - - *469 - - *586 + - *471 + - *472 + - *589 responses: '200': description: Response content: application/json: - schema: *643 + schema: *646 examples: default: value: @@ -88784,7 +89030,7 @@ paths: payload: verified_at: '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88809,9 +89055,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *468 - - *469 - - &644 + - *471 + - *472 + - &647 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. @@ -88828,7 +89074,7 @@ paths: application/json: schema: type: array - items: &645 + items: &648 title: Git Reference description: Git references within a repository type: object @@ -88882,7 +89128,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: Link: *47 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88903,17 +89149,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *468 - - *469 - - *644 + - *471 + - *472 + - *647 responses: '200': description: Response content: application/json: - schema: *645 + schema: *648 examples: - default: &646 + default: &649 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -88923,7 +89169,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88942,8 +89188,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -88972,16 +89218,16 @@ paths: description: Response content: application/json: - schema: *645 + schema: *648 examples: - default: *646 + default: *649 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89000,9 +89246,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *468 - - *469 - - *644 + - *471 + - *472 + - *647 requestBody: required: true content: @@ -89031,11 +89277,11 @@ paths: description: Response content: application/json: - schema: *645 + schema: *648 examples: - default: *646 + default: *649 '422': *15 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89051,16 +89297,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *468 - - *469 - - *644 + - *471 + - *472 + - *647 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89108,8 +89354,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -89176,7 +89422,7 @@ paths: description: Response content: application/json: - schema: &648 + schema: &651 title: Git Tag description: Metadata for a Git tag type: object @@ -89227,7 +89473,7 @@ paths: - sha - type - url - verification: *647 + verification: *650 required: - sha - url @@ -89237,7 +89483,7 @@ paths: - tag - message examples: - default: &649 + default: &652 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -89264,7 +89510,7 @@ paths: schema: type: string '422': *15 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89310,8 +89556,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *468 - - *469 + - *471 + - *472 - name: tag_sha in: path required: true @@ -89322,11 +89568,11 @@ paths: description: Response content: application/json: - schema: *648 + schema: *651 examples: - default: *649 + default: *652 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89348,8 +89594,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -89422,7 +89668,7 @@ paths: description: Response content: application/json: - schema: &650 + schema: &653 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -89495,7 +89741,7 @@ paths: '422': *15 '404': *6 '403': *29 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89518,8 +89764,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *468 - - *469 + - *471 + - *472 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -89542,7 +89788,7 @@ paths: description: Response content: application/json: - schema: *650 + schema: *653 examples: default-response: summary: Default response @@ -89583,7 +89829,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89601,8 +89847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -89612,7 +89858,7 @@ paths: application/json: schema: type: array - items: &651 + items: &654 title: Webhook description: Webhooks for repositories. type: object @@ -89666,7 +89912,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &913 + last_response: &916 title: Hook Response type: object properties: @@ -89740,8 +89986,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -89793,9 +90039,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *654 examples: - default: &652 + default: &655 value: type: Repository id: 12345678 @@ -89843,17 +90089,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 responses: '200': description: Response content: application/json: - schema: *651 + schema: *654 examples: - default: *652 + default: *655 '404': *6 x-github: githubCloudOnly: false @@ -89873,9 +90119,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 requestBody: required: true content: @@ -89920,9 +90166,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *654 examples: - default: *652 + default: *655 '422': *15 '404': *6 x-github: @@ -89943,9 +90189,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 responses: '204': description: Response @@ -89969,9 +90215,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 responses: '200': description: Response @@ -89998,9 +90244,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 requestBody: required: false content: @@ -90044,11 +90290,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 - *17 - - *355 + - *358 responses: '200': description: Response @@ -90056,9 +90302,9 @@ paths: application/json: schema: type: array - items: *356 + items: *359 examples: - default: *357 + default: *360 '400': *14 '422': *15 x-github: @@ -90077,18 +90323,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 - *16 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 '400': *14 '422': *15 x-github: @@ -90107,9 +90353,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 - *16 responses: '202': *39 @@ -90132,9 +90378,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 responses: '204': description: Response @@ -90159,9 +90405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 responses: '204': description: Response @@ -90184,8 +90430,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response if immutable releases are enabled @@ -90231,11 +90477,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *468 - - *469 + - *471 + - *472 responses: - '204': *155 - '409': *119 + '204': *157 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90252,11 +90498,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *468 - - *469 + - *471 + - *472 responses: - '204': *155 - '409': *119 + '204': *157 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90310,14 +90556,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: &653 + schema: &656 title: Import description: A repository import from an external source. type: object @@ -90416,7 +90662,7 @@ paths: - html_url - authors_url examples: - default: &656 + default: &659 value: vcs: subversion use_lfs: true @@ -90432,7 +90678,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': &654 + '503': &657 description: Unavailable due to service under maintenance. content: application/json: @@ -90461,8 +90707,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -90510,7 +90756,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *656 examples: default: value: @@ -90535,7 +90781,7 @@ paths: type: string '422': *15 '404': *6 - '503': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90563,8 +90809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -90613,7 +90859,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *656 examples: example-1: summary: Example 1 @@ -90661,7 +90907,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': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90684,12 +90930,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response - '503': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90715,9 +90961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *468 - - *469 - - &839 + - *471 + - *472 + - &842 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -90731,7 +90977,7 @@ paths: application/json: schema: type: array - items: &655 + items: &658 title: Porter Author description: Porter Author type: object @@ -90785,7 +91031,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': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90810,8 +91056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *468 - - *469 + - *471 + - *472 - name: author_id in: path required: true @@ -90841,7 +91087,7 @@ paths: description: Response content: application/json: - schema: *655 + schema: *658 examples: default: value: @@ -90854,7 +91100,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90878,8 +91124,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -90920,7 +91166,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90948,8 +91194,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -90976,11 +91222,11 @@ paths: description: Response content: application/json: - schema: *653 + schema: *656 examples: - default: *656 + default: *659 '422': *15 - '503': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91003,8 +91249,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -91012,8 +91258,8 @@ paths: application/json: schema: *22 examples: - default: *371 - '301': *474 + default: *374 + '301': *477 '404': *6 x-github: githubCloudOnly: false @@ -91033,8 +91279,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -91042,12 +91288,12 @@ paths: application/json: schema: anyOf: - - *373 + - *376 - type: object properties: {} additionalProperties: false examples: - default: &658 + default: &661 value: limit: collaborators_only origin: repository @@ -91072,13 +91318,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: application/json: - schema: *657 + schema: *660 examples: default: summary: Example request body @@ -91090,9 +91336,9 @@ paths: description: Response content: application/json: - schema: *373 + schema: *376 examples: - default: *658 + default: *661 '409': description: Response x-github: @@ -91114,8 +91360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -91138,8 +91384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -91149,9 +91395,9 @@ paths: application/json: schema: type: array - items: *659 + items: *662 examples: - default: &832 + default: &835 value: - id: 1 repository: @@ -91282,9 +91528,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *468 - - *469 - - *377 + - *471 + - *472 + - *380 requestBody: required: false content: @@ -91313,7 +91559,7 @@ paths: description: Response content: application/json: - schema: *659 + schema: *662 examples: default: value: @@ -91444,9 +91690,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *468 - - *469 - - *377 + - *471 + - *472 + - *380 responses: '204': description: Response @@ -91477,8 +91723,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *468 - - *469 + - *471 + - *472 - 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 @@ -91526,7 +91772,7 @@ paths: required: false schema: type: string - - *384 + - *387 - name: sort description: What to sort results by. in: query @@ -91538,8 +91784,8 @@ paths: - updated - comments default: created - - *110 - - *232 + - *112 + - *234 - *17 - *19 responses: @@ -91549,9 +91795,9 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: &671 + default: &674 value: - id: 1 node_id: MDU6SXNzdWUx @@ -91700,7 +91946,7 @@ paths: state_reason: completed headers: Link: *47 - '301': *474 + '301': *477 '422': *15 '404': *6 x-github: @@ -91729,8 +91975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -91812,9 +92058,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: &668 + default: &671 value: id: 1 node_id: MDU6SXNzdWUx @@ -91969,9 +92215,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *196 + '503': *198 '404': *6 - '410': *660 + '410': *663 x-github: triggersNotification: true githubCloudOnly: false @@ -91999,9 +92245,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *468 - - *469 - - *249 + - *471 + - *472 + - *251 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -92011,7 +92257,7 @@ paths: enum: - asc - desc - - *232 + - *234 - *17 - *19 responses: @@ -92021,9 +92267,9 @@ paths: application/json: schema: type: array - items: *661 + items: *664 examples: - default: &670 + default: &673 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92081,17 +92327,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '200': description: Response content: application/json: - schema: *661 + schema: *664 examples: - default: &662 + default: &665 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -92146,9 +92392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -92170,9 +92416,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *664 examples: - default: *662 + default: *665 '422': *15 x-github: githubCloudOnly: false @@ -92190,9 +92436,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '204': description: Response @@ -92220,15 +92466,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#pin-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '200': description: Response content: application/json: - schema: *661 + schema: *664 examples: default: value: @@ -92284,7 +92530,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *660 + '410': *663 '422': *15 x-github: githubCloudOnly: false @@ -92301,17 +92547,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#unpin-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *660 - '503': *196 + '410': *663 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92328,9 +92574,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue comment. @@ -92356,9 +92602,9 @@ paths: application/json: schema: type: array - items: *583 + items: *586 examples: - default: *663 + default: *666 headers: Link: *47 '404': *6 @@ -92379,9 +92625,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -92413,16 +92659,16 @@ paths: description: Reaction exists content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '201': description: Reaction created content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -92444,10 +92690,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *468 - - *469 - - *241 - - *664 + - *471 + - *472 + - *243 + - *667 responses: '204': description: Response @@ -92467,8 +92713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -92478,7 +92724,7 @@ paths: application/json: schema: type: array - items: &667 + items: &670 title: Issue Event description: Issue Event type: object @@ -92521,8 +92767,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *665 - required: *666 + properties: *668 + required: *669 nullable: true label: title: Issue Event Label @@ -92566,7 +92812,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *317 + requested_team: *320 dismissed_review: title: Issue Event Dismissed Review type: object @@ -92631,7 +92877,7 @@ paths: required: - from - to - author_association: *222 + author_association: *224 lock_reason: type: string nullable: true @@ -92644,8 +92890,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 required: - id - node_id @@ -92830,8 +93076,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *468 - - *469 + - *471 + - *472 - name: event_id in: path required: true @@ -92842,7 +93088,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *670 examples: default: value: @@ -93035,7 +93281,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *660 + '410': *663 '403': *29 x-github: githubCloudOnly: false @@ -93069,9 +93315,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *468 - - *469 - - &669 + - *471 + - *472 + - &672 name: issue_number description: The number that identifies the issue. in: path @@ -93083,11 +93329,11 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: default: summary: Issue - value: *668 + value: *671 pinned_comment: summary: Issue with pinned comment value: @@ -93286,9 +93532,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 '304': *37 x-github: githubCloudOnly: false @@ -93313,9 +93559,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: false content: @@ -93439,15 +93685,15 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 '422': *15 - '503': *196 + '503': *198 '403': *29 - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93465,9 +93711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: false content: @@ -93493,9 +93739,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93511,9 +93757,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: content: application/json: @@ -93538,9 +93784,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93562,9 +93808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - name: assignee in: path required: true @@ -93604,10 +93850,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *468 - - *469 - - *669 - - *232 + - *471 + - *472 + - *672 + - *234 - *17 - *19 responses: @@ -93617,13 +93863,13 @@ paths: application/json: schema: type: array - items: *661 + items: *664 examples: - default: *670 + default: *673 headers: Link: *47 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93652,9 +93898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -93676,16 +93922,16 @@ paths: description: Response content: application/json: - schema: *661 + schema: *664 examples: - default: *662 + default: *665 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *660 + '410': *663 '422': *15 '404': *6 x-github: @@ -93713,9 +93959,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -93725,14 +93971,14 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: *671 + default: *674 headers: Link: *47 - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93760,9 +94006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -93784,17 +94030,17 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *474 + '301': *477 '403': *29 - '410': *660 + '410': *663 '422': *15 '404': *6 x-github: @@ -93825,9 +94071,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -93839,15 +94085,15 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 - '301': *474 + default: *671 + '301': *477 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *660 + '410': *663 x-github: triggersNotification: true githubCloudOnly: false @@ -93873,9 +94119,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -93885,14 +94131,14 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: *671 + default: *674 headers: Link: *47 - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93909,9 +94155,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -93925,7 +94171,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &674 + - &677 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -93956,8 +94202,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 label: type: object properties: @@ -93979,7 +94225,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &675 + - &678 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -94010,8 +94256,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 label: type: object properties: @@ -94099,8 +94345,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 assignee: *4 assigner: *4 required: @@ -94115,7 +94361,7 @@ paths: - performed_via_github_app - assignee - assigner - - &676 + - &679 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -94146,8 +94392,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 milestone: type: object properties: @@ -94166,7 +94412,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &677 + - &680 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -94197,8 +94443,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 milestone: type: object properties: @@ -94217,7 +94463,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &678 + - &681 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -94248,8 +94494,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 rename: type: object properties: @@ -94271,7 +94517,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &679 + - &682 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -94302,10 +94548,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 review_requester: *4 - requested_team: *317 + requested_team: *320 requested_reviewer: *4 required: - review_requester @@ -94318,7 +94564,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &680 + - &683 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -94349,10 +94595,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 review_requester: *4 - requested_team: *317 + requested_team: *320 requested_reviewer: *4 required: - review_requester @@ -94365,7 +94611,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &681 + - &684 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -94396,8 +94642,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 dismissed_review: type: object properties: @@ -94425,7 +94671,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &682 + - &685 title: Locked Issue Event description: Locked Issue Event type: object @@ -94456,8 +94702,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 lock_reason: type: string example: '"off-topic"' @@ -94473,7 +94719,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &683 + - &686 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -94504,8 +94750,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 project_card: type: object properties: @@ -94539,7 +94785,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &684 + - &687 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -94570,8 +94816,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 project_card: type: object properties: @@ -94605,7 +94851,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &685 + - &688 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -94636,8 +94882,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 project_card: type: object properties: @@ -94671,7 +94917,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &686 + - &689 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -94762,7 +95008,7 @@ paths: color: red headers: Link: *47 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94779,9 +95025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -94791,9 +95037,9 @@ paths: application/json: schema: type: array - items: *672 + items: *675 examples: - default: &775 + default: &778 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -94817,9 +95063,9 @@ paths: value: '2025-12-25' headers: Link: *47 - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94836,9 +95082,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -94848,9 +95094,9 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: - default: &673 + default: &676 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94868,9 +95114,9 @@ paths: default: false headers: Link: *47 - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94886,9 +95132,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: false content: @@ -94931,12 +95177,12 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: - default: *673 - '301': *474 + default: *676 + '301': *477 '404': *6 - '410': *660 + '410': *663 '422': *15 x-github: githubCloudOnly: false @@ -94953,9 +95199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: false content: @@ -95015,12 +95261,12 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: - default: *673 - '301': *474 + default: *676 + '301': *477 '404': *6 - '410': *660 + '410': *663 '422': *15 x-github: githubCloudOnly: false @@ -95037,15 +95283,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 responses: '204': description: Response - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95064,9 +95310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - name: name in: path required: true @@ -95079,7 +95325,7 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: default: value: @@ -95090,9 +95336,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95112,9 +95358,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: false content: @@ -95142,7 +95388,7 @@ paths: '204': description: Response '403': *29 - '410': *660 + '410': *663 '404': *6 '422': *15 x-github: @@ -95160,9 +95406,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 responses: '204': description: Response @@ -95192,20 +95438,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 responses: '200': description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 - '301': *474 + default: *671 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95222,9 +95468,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -95250,13 +95496,13 @@ paths: application/json: schema: type: array - items: *583 + items: *586 examples: - default: *663 + default: *666 headers: Link: *47 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95274,9 +95520,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -95308,16 +95554,16 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '201': description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -95339,10 +95585,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *468 - - *469 - - *669 - - *664 + - *471 + - *472 + - *672 + - *667 responses: '204': description: Response @@ -95371,9 +95617,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -95395,9 +95641,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -95430,9 +95676,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -95442,13 +95688,13 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: *671 + default: *674 headers: Link: *47 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95476,9 +95722,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -95505,16 +95751,16 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *660 + '410': *663 '422': *15 '404': *6 x-github: @@ -95534,9 +95780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -95567,13 +95813,13 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 '403': *29 '404': *6 '422': *7 - '503': *196 + '503': *198 x-github: triggersNotification: true githubCloudOnly: false @@ -95591,9 +95837,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -95608,9 +95854,6 @@ paths: description: Timeline Event type: object anyOf: - - *674 - - *675 - - *676 - *677 - *678 - *679 @@ -95621,6 +95864,9 @@ paths: - *684 - *685 - *686 + - *687 + - *688 + - *689 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -95663,7 +95909,7 @@ paths: issue_url: type: string format: uri - author_association: *222 + author_association: *224 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -95673,16 +95919,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 - reactions: *223 + properties: *222 + required: *223 + reactions: *225 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *687 - required: *688 + properties: *690 + required: *691 nullable: true required: - event @@ -95714,7 +95960,7 @@ paths: properties: type: type: string - issue: *225 + issue: *227 required: - event - created_at @@ -95914,7 +96160,7 @@ paths: type: string body_text: type: string - author_association: *222 + author_association: *224 required: - event - id @@ -95937,7 +96183,7 @@ paths: type: string comments: type: array - items: &710 + items: &713 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -96032,7 +96278,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *222 + author_association: *224 _links: type: object properties: @@ -96116,7 +96362,7 @@ paths: enum: - line - file - reactions: *223 + reactions: *225 body_html: type: string example: '"

comment body

"' @@ -96152,7 +96398,7 @@ paths: type: string comments: type: array - items: *582 + items: *585 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -96183,8 +96429,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 assignee: *4 required: - id @@ -96227,8 +96473,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 assignee: *4 required: - id @@ -96271,8 +96517,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 state_reason: type: string nullable: true @@ -96441,7 +96687,7 @@ paths: headers: Link: *47 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96458,8 +96704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -96469,7 +96715,7 @@ paths: application/json: schema: type: array - items: &689 + items: &692 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -96535,8 +96781,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -96572,9 +96818,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *692 examples: - default: &690 + default: &693 value: id: 1 key: ssh-rsa AAA... @@ -96608,9 +96854,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *468 - - *469 - - &691 + - *471 + - *472 + - &694 name: key_id description: The unique identifier of the key. in: path @@ -96622,9 +96868,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *692 examples: - default: *690 + default: *693 '404': *6 x-github: githubCloudOnly: false @@ -96642,9 +96888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *468 - - *469 - - *691 + - *471 + - *472 + - *694 responses: '204': description: Response @@ -96664,8 +96910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -96675,9 +96921,9 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: - default: *673 + default: *676 headers: Link: *47 '404': *6 @@ -96698,8 +96944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -96735,9 +96981,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *226 examples: - default: &692 + default: &695 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96769,8 +97015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *468 - - *469 + - *471 + - *472 - name: name in: path required: true @@ -96781,9 +97027,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *226 examples: - default: *692 + default: *695 '404': *6 x-github: githubCloudOnly: false @@ -96800,8 +97046,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *468 - - *469 + - *471 + - *472 - name: name in: path required: true @@ -96840,7 +97086,7 @@ paths: description: Response content: application/json: - schema: *224 + schema: *226 examples: default: value: @@ -96866,8 +97112,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *468 - - *469 + - *471 + - *472 - name: name in: path required: true @@ -96893,8 +97139,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -96930,8 +97176,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '202': *39 '403': @@ -96959,8 +97205,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -96986,9 +97232,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *468 - - *469 - - *555 + - *471 + - *472 + - *558 responses: '200': description: Response @@ -97050,8 +97296,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true required: - _links @@ -97133,8 +97379,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -97199,8 +97445,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -97234,9 +97480,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *585 + schema: *588 examples: - default: *693 + default: *696 '204': description: Response when already merged '404': @@ -97261,8 +97507,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *468 - - *469 + - *471 + - *472 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -97303,12 +97549,12 @@ paths: application/json: schema: type: array - items: &694 + items: &697 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *416 - required: *417 + properties: *419 + required: *420 examples: default: value: @@ -97364,8 +97610,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -97405,9 +97651,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: &695 + default: &698 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -97466,9 +97712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *468 - - *469 - - &696 + - *471 + - *472 + - &699 name: milestone_number description: The number that identifies the milestone. in: path @@ -97480,9 +97726,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *695 + default: *698 '404': *6 x-github: githubCloudOnly: false @@ -97499,9 +97745,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *468 - - *469 - - *696 + - *471 + - *472 + - *699 requestBody: required: false content: @@ -97539,9 +97785,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *695 + default: *698 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97557,9 +97803,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *468 - - *469 - - *696 + - *471 + - *472 + - *699 responses: '204': description: Response @@ -97580,9 +97826,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *468 - - *469 - - *696 + - *471 + - *472 + - *699 - *17 - *19 responses: @@ -97592,9 +97838,9 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: - default: *673 + default: *676 headers: Link: *47 x-github: @@ -97613,12 +97859,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *468 - - *469 - - *697 - - *698 - - *232 - - *699 + - *471 + - *472 + - *700 + - *701 + - *234 + - *702 - *17 - *19 responses: @@ -97628,9 +97874,9 @@ paths: application/json: schema: type: array - items: *252 + items: *254 examples: - default: *700 + default: *703 headers: Link: *47 x-github: @@ -97654,8 +97900,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -97713,14 +97959,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: &701 + schema: &704 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -97845,7 +98091,7 @@ paths: - custom_404 - public examples: - default: &702 + default: &705 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -97886,8 +98132,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -97941,11 +98187,11 @@ paths: description: Response content: application/json: - schema: *701 + schema: *704 examples: - default: *702 + default: *705 '422': *15 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97966,8 +98212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -98053,7 +98299,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98074,14 +98320,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response '422': *15 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98101,8 +98347,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -98112,7 +98358,7 @@ paths: application/json: schema: type: array - items: &703 + items: &706 title: Page Build description: Page Build type: object @@ -98206,8 +98452,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *468 - - *469 + - *471 + - *472 responses: '201': description: Response @@ -98252,16 +98498,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *703 + schema: *706 examples: - default: &704 + default: &707 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -98309,8 +98555,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *468 - - *469 + - *471 + - *472 - name: build_id in: path required: true @@ -98321,9 +98567,9 @@ paths: description: Response content: application/json: - schema: *703 + schema: *706 examples: - default: *704 + default: *707 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98343,8 +98589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -98449,9 +98695,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *468 - - *469 - - &705 + - *471 + - *472 + - &708 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -98509,11 +98755,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *468 - - *469 - - *705 + - *471 + - *472 + - *708 responses: - '204': *155 + '204': *157 '404': *6 x-github: githubCloudOnly: false @@ -98538,8 +98784,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -98770,7 +99016,7 @@ paths: description: Empty response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -98797,8 +99043,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Private vulnerability reporting status @@ -98835,10 +99081,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: - '204': *155 + '204': *157 '422': *14 x-github: githubCloudOnly: false @@ -98857,10 +99103,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: - '204': *155 + '204': *157 '422': *14 x-github: githubCloudOnly: false @@ -98880,8 +99126,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -98889,9 +99135,9 @@ paths: application/json: schema: type: array - items: *156 + items: *158 examples: - default: *706 + default: *709 '403': *29 '404': *6 x-github: @@ -98913,8 +99159,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -98926,11 +99172,11 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *156 + items: *158 required: - properties examples: - default: *707 + default: *710 responses: '204': description: No Content when custom property values are successfully created @@ -98968,8 +99214,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -99029,9 +99275,9 @@ paths: application/json: schema: type: array - items: *589 + items: *592 examples: - default: *708 + default: *711 headers: Link: *47 '304': *37 @@ -99063,8 +99309,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -99129,7 +99375,7 @@ paths: description: Response content: application/json: - schema: &712 + schema: &715 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -99240,8 +99486,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *416 - required: *417 + properties: *419 + required: *420 nullable: true active_lock_reason: type: string @@ -99284,7 +99530,7 @@ paths: items: *4 requested_teams: type: array - items: *452 + items: *455 head: type: object properties: @@ -99292,7 +99538,7 @@ paths: type: string ref: type: string - repo: *78 + repo: *80 sha: type: string user: *4 @@ -99309,7 +99555,7 @@ paths: type: string ref: type: string - repo: *78 + repo: *80 sha: type: string user: *4 @@ -99322,14 +99568,14 @@ paths: _links: type: object properties: - comments: *418 - commits: *418 - statuses: *418 - html: *418 - issue: *418 - review_comments: *418 - review_comment: *418 - self: *418 + comments: *421 + commits: *421 + statuses: *421 + html: *421 + issue: *421 + review_comments: *421 + review_comment: *421 + self: *421 required: - comments - commits @@ -99339,8 +99585,8 @@ paths: - review_comments - review_comment - self - author_association: *222 - auto_merge: *709 + author_association: *224 + auto_merge: *712 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -99432,7 +99678,7 @@ paths: - merged_by - review_comments examples: - default: &713 + default: &716 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -99959,8 +100205,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - name: sort in: query required: false @@ -99979,7 +100225,7 @@ paths: enum: - asc - desc - - *232 + - *234 - *17 - *19 responses: @@ -99989,9 +100235,9 @@ paths: application/json: schema: type: array - items: *710 + items: *713 examples: - default: &715 + default: &718 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100068,17 +100314,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '200': description: Response content: application/json: - schema: *710 + schema: *713 examples: - default: &711 + default: &714 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100153,9 +100399,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -100177,9 +100423,9 @@ paths: description: Response content: application/json: - schema: *710 + schema: *713 examples: - default: *711 + default: *714 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100195,9 +100441,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '204': description: Response @@ -100218,9 +100464,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a pull request review comment. @@ -100246,9 +100492,9 @@ paths: application/json: schema: type: array - items: *583 + items: *586 examples: - default: *663 + default: *666 headers: Link: *47 '404': *6 @@ -100269,9 +100515,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -100303,16 +100549,16 @@ paths: description: Reaction exists content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '201': description: Reaction created content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -100334,10 +100580,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *468 - - *469 - - *241 - - *664 + - *471 + - *472 + - *243 + - *667 responses: '204': description: Response @@ -100380,9 +100626,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *468 - - *469 - - &714 + - *471 + - *472 + - &717 name: pull_number description: The number that identifies the pull request. in: path @@ -100395,9 +100641,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *712 + schema: *715 examples: - default: *713 + default: *716 '304': *37 '404': *6 '406': @@ -100406,7 +100652,7 @@ paths: application/json: schema: *3 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100432,9 +100678,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: false content: @@ -100476,9 +100722,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *715 examples: - default: *713 + default: *716 '422': *15 '403': *29 x-github: @@ -100500,9 +100746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: true content: @@ -100562,21 +100808,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '401': *25 '403': *29 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100602,10 +100848,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *468 - - *469 - - *714 - - *249 + - *471 + - *472 + - *717 + - *251 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -100615,7 +100861,7 @@ paths: enum: - asc - desc - - *232 + - *234 - *17 - *19 responses: @@ -100625,9 +100871,9 @@ paths: application/json: schema: type: array - items: *710 + items: *713 examples: - default: *715 + default: *718 headers: Link: *47 x-github: @@ -100660,9 +100906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: true content: @@ -100767,7 +101013,7 @@ paths: description: Response content: application/json: - schema: *710 + schema: *713 examples: example-for-a-multi-line-comment: value: @@ -100855,10 +101101,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *468 - - *469 - - *714 - - *241 + - *471 + - *472 + - *717 + - *243 requestBody: required: true content: @@ -100880,7 +101126,7 @@ paths: description: Response content: application/json: - schema: *710 + schema: *713 examples: default: value: @@ -100966,9 +101212,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 - *17 - *19 responses: @@ -100978,9 +101224,9 @@ paths: application/json: schema: type: array - items: *585 + items: *588 examples: - default: *716 + default: *719 headers: Link: *47 x-github: @@ -101010,9 +101256,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 - *17 - *19 responses: @@ -101022,7 +101268,7 @@ paths: application/json: schema: type: array - items: *598 + items: *601 examples: default: value: @@ -101041,7 +101287,7 @@ paths: Link: *47 '422': *15 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101060,9 +101306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 responses: '204': description: Response if pull request has been merged @@ -101085,9 +101331,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: false content: @@ -101198,9 +101444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 responses: '200': description: Response @@ -101216,7 +101462,7 @@ paths: items: *4 teams: type: array - items: *317 + items: *320 required: - users - teams @@ -101275,9 +101521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: false content: @@ -101314,7 +101560,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *592 examples: default: value: @@ -101850,9 +102096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: true content: @@ -101886,7 +102132,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *592 examples: default: value: @@ -102391,9 +102637,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 - *17 - *19 responses: @@ -102403,7 +102649,7 @@ paths: application/json: schema: type: array - items: &717 + items: &720 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -102472,7 +102718,7 @@ paths: type: string body_text: type: string - author_association: *222 + author_association: *224 required: - id - node_id @@ -102554,9 +102800,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: false content: @@ -102642,9 +102888,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *720 examples: - default: &719 + default: &722 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102707,10 +102953,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 - - &718 + - *471 + - *472 + - *717 + - &721 name: review_id description: The unique identifier of the review. in: path @@ -102722,9 +102968,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *720 examples: - default: &720 + default: &723 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102783,10 +103029,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 - - *718 + - *471 + - *472 + - *717 + - *721 requestBody: required: true content: @@ -102809,7 +103055,7 @@ paths: description: Response content: application/json: - schema: *717 + schema: *720 examples: default: value: @@ -102871,18 +103117,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 - - *718 + - *471 + - *472 + - *717 + - *721 responses: '200': description: Response content: application/json: - schema: *717 + schema: *720 examples: - default: *719 + default: *722 '422': *7 '404': *6 x-github: @@ -102909,10 +103155,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *468 - - *469 - - *714 - - *718 + - *471 + - *472 + - *717 + - *721 - *17 - *19 responses: @@ -102991,13 +103237,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *222 + author_association: *224 _links: type: object properties: - self: *418 - html: *418 - pull_request: *418 + self: *421 + html: *421 + pull_request: *421 required: - self - html @@ -103006,7 +103252,7 @@ paths: type: string body_html: type: string - reactions: *223 + reactions: *225 side: description: The side of the first line of the range for a multi-line comment. @@ -103147,10 +103393,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 - - *718 + - *471 + - *472 + - *717 + - *721 requestBody: required: true content: @@ -103178,7 +103424,7 @@ paths: description: Response content: application/json: - schema: *717 + schema: *720 examples: default: value: @@ -103241,10 +103487,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 - - *718 + - *471 + - *472 + - *717 + - *721 requestBody: required: true content: @@ -103279,9 +103525,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *720 examples: - default: *720 + default: *723 '404': *6 '422': *7 '403': *29 @@ -103303,9 +103549,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: false content: @@ -103368,8 +103614,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *468 - - *469 + - *471 + - *472 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -103382,9 +103628,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *724 examples: - default: &722 + default: &725 value: type: file encoding: base64 @@ -103426,8 +103672,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *468 - - *469 + - *471 + - *472 - name: dir description: The alternate path to look for a README file in: path @@ -103447,9 +103693,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *724 examples: - default: *722 + default: *725 '404': *6 '422': *15 x-github: @@ -103471,8 +103717,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -103482,7 +103728,7 @@ paths: application/json: schema: type: array - items: *723 + items: *726 examples: default: value: @@ -103576,8 +103822,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -103653,9 +103899,9 @@ paths: description: Response content: application/json: - schema: *723 + schema: *726 examples: - default: &727 + default: &730 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -103760,9 +104006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *468 - - *469 - - &725 + - *471 + - *472 + - &728 name: asset_id description: The unique identifier of the asset. in: path @@ -103774,9 +104020,9 @@ paths: description: Response content: application/json: - schema: *724 + schema: *727 examples: - default: &726 + default: &729 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 @@ -103811,7 +104057,7 @@ paths: type: User site_admin: false '404': *6 - '302': *600 + '302': *603 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103827,9 +104073,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *468 - - *469 - - *725 + - *471 + - *472 + - *728 requestBody: required: false content: @@ -103857,9 +104103,9 @@ paths: description: Response content: application/json: - schema: *724 + schema: *727 examples: - default: *726 + default: *729 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103875,9 +104121,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *468 - - *469 - - *725 + - *471 + - *472 + - *728 responses: '204': description: Response @@ -103901,8 +104147,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -103987,16 +104233,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *723 + schema: *726 examples: - default: *727 + default: *730 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104013,8 +104259,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *468 - - *469 + - *471 + - *472 - name: tag description: tag parameter in: path @@ -104027,9 +104273,9 @@ paths: description: Response content: application/json: - schema: *723 + schema: *726 examples: - default: *727 + default: *730 '404': *6 x-github: githubCloudOnly: false @@ -104051,9 +104297,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *468 - - *469 - - &728 + - *471 + - *472 + - &731 name: release_id description: The unique identifier of the release. in: path @@ -104067,9 +104313,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *723 + schema: *726 examples: - default: *727 + default: *730 '401': description: Unauthorized x-github: @@ -104087,9 +104333,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 requestBody: required: false content: @@ -104153,9 +104399,9 @@ paths: description: Response content: application/json: - schema: *723 + schema: *726 examples: - default: *727 + default: *730 '404': description: Not Found if the discussion category name is invalid content: @@ -104176,9 +104422,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 responses: '204': description: Response @@ -104198,9 +104444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 - *17 - *19 responses: @@ -104210,7 +104456,7 @@ paths: application/json: schema: type: array - items: *724 + items: *727 examples: default: value: @@ -104292,9 +104538,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: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 - name: name in: query required: true @@ -104320,7 +104566,7 @@ paths: description: Response for successful upload content: application/json: - schema: *724 + schema: *727 examples: response-for-successful-upload: value: @@ -104375,9 +104621,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -104401,9 +104647,9 @@ paths: application/json: schema: type: array - items: *583 + items: *586 examples: - default: *663 + default: *666 headers: Link: *47 '404': *6 @@ -104424,9 +104670,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 requestBody: required: true content: @@ -104456,16 +104702,16 @@ paths: description: Reaction exists content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '201': description: Reaction created content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -104487,10 +104733,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *468 - - *469 - - *728 - - *664 + - *471 + - *472 + - *731 + - *667 responses: '204': description: Response @@ -104514,9 +104760,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 - *17 - *19 responses: @@ -104532,8 +104778,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *170 - - &729 + - *172 + - &732 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -104552,69 +104798,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *171 - - *729 - - allOf: - - *172 - - *729 - allOf: - *173 - - *729 - - allOf: - - *730 - - *729 + - *732 - allOf: - *174 - - *729 + - *732 - allOf: - *175 - - *729 + - *732 + - allOf: + - *733 + - *732 - allOf: - *176 - - *729 + - *732 - allOf: - *177 - - *729 + - *732 - allOf: - *178 - - *729 + - *732 - allOf: - *179 - - *729 + - *732 - allOf: - *180 - - *729 + - *732 - allOf: - *181 - - *729 + - *732 - allOf: - *182 - - *729 + - *732 - allOf: - *183 - - *729 + - *732 - allOf: - *184 - - *729 + - *732 - allOf: - *185 - - *729 + - *732 - allOf: - *186 - - *729 + - *732 - allOf: - *187 - - *729 + - *732 - allOf: - *188 - - *729 + - *732 - allOf: - *189 - - *729 + - *732 - allOf: - *190 - - *729 + - *732 + - allOf: + - *191 + - *732 + - allOf: + - *192 + - *732 examples: default: value: @@ -104653,8 +104899,8 @@ paths: category: repos subcategory: rules parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 - name: includes_parents @@ -104665,7 +104911,7 @@ paths: schema: type: boolean default: true - - *731 + - *734 responses: '200': description: Response @@ -104673,7 +104919,7 @@ paths: application/json: schema: type: array - items: *191 + items: *193 examples: default: value: @@ -104720,8 +104966,8 @@ paths: category: repos subcategory: rules parameters: - - *468 - - *469 + - *471 + - *472 requestBody: description: Request body required: true @@ -104741,16 +104987,16 @@ paths: - tag - push default: branch - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 - conditions: *162 + items: *171 + conditions: *164 rules: type: array description: An array of rules within the ruleset. - items: *732 + items: *735 required: - name - enforcement @@ -104781,9 +105027,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: &741 + default: &744 value: id: 42 name: super cool ruleset @@ -104831,12 +105077,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *468 - - *469 - - *733 - - *105 - - *734 - - *735 + - *471 + - *472 + - *736 + - *107 + - *737 + - *738 - *17 - *19 responses: @@ -104844,9 +105090,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *739 examples: - default: *737 + default: *740 '404': *6 '500': *40 x-github: @@ -104867,17 +105113,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *468 - - *469 - - *738 + - *471 + - *472 + - *741 responses: '200': description: Response content: application/json: - schema: *739 + schema: *742 examples: - default: *740 + default: *743 '404': *6 '500': *40 x-github: @@ -104905,8 +105151,8 @@ paths: category: repos subcategory: rules parameters: - - *468 - - *469 + - *471 + - *472 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104926,9 +105172,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *741 + default: *744 '404': *6 '500': *40 put: @@ -104946,8 +105192,8 @@ paths: category: repos subcategory: rules parameters: - - *468 - - *469 + - *471 + - *472 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104972,16 +105218,16 @@ paths: - branch - tag - push - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 - conditions: *162 + items: *171 + conditions: *164 rules: description: An array of rules within the ruleset. type: array - items: *732 + items: *735 examples: default: value: @@ -105009,9 +105255,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *741 + default: *744 '404': *6 '422': *15 '500': *40 @@ -105030,8 +105276,8 @@ paths: category: repos subcategory: rules parameters: - - *468 - - *469 + - *471 + - *472 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105054,8 +105300,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 - name: ruleset_id @@ -105071,9 +105317,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *436 + default: *439 '404': *6 '500': *40 x-github: @@ -105092,8 +105338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *468 - - *469 + - *471 + - *472 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105111,7 +105357,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *440 examples: default: value: @@ -105166,22 +105412,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *468 - - *469 - - *438 - - *439 - - *440 + - *471 + - *472 - *441 - *442 - - *110 - - *19 - - *17 - - *742 - - *743 - *443 - *444 - *445 + - *112 + - *19 + - *17 + - *745 + - *746 - *446 + - *447 + - *448 + - *449 responses: '200': description: Response @@ -105189,11 +105435,11 @@ paths: application/json: schema: type: array - items: &747 + items: &750 type: object properties: - number: *128 - created_at: *135 + number: *130 + created_at: *137 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -105201,15 +105447,15 @@ paths: format: date-time readOnly: true nullable: true - url: *133 - html_url: *134 + url: *135 + html_url: *136 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *744 - resolution: *745 + state: *747 + resolution: *748 resolved_at: type: string format: date-time @@ -105305,7 +105551,7 @@ paths: pull request. ' - oneOf: *746 + oneOf: *749 nullable: true has_more_locations: type: boolean @@ -105432,7 +105678,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105454,16 +105700,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *468 - - *469 - - *549 - - *446 + - *471 + - *472 + - *552 + - *449 responses: '200': description: Response content: application/json: - schema: *747 + schema: *750 examples: default: value: @@ -105494,7 +105740,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105517,9 +105763,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 requestBody: required: true content: @@ -105527,8 +105773,8 @@ paths: schema: type: object properties: - state: *744 - resolution: *745 + state: *747 + resolution: *748 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -105562,7 +105808,7 @@ paths: description: Response content: application/json: - schema: *747 + schema: *750 examples: default: value: @@ -105635,7 +105881,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -105657,9 +105903,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 - *19 - *17 responses: @@ -105670,7 +105916,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &935 + items: &938 type: object properties: type: @@ -105696,9 +105942,6 @@ paths: example: commit details: oneOf: - - *748 - - *749 - - *750 - *751 - *752 - *753 @@ -105709,6 +105952,9 @@ paths: - *758 - *759 - *760 + - *761 + - *762 + - *763 examples: default: value: @@ -105772,7 +106018,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105794,8 +106040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -105803,14 +106049,14 @@ paths: schema: type: object properties: - reason: &762 + reason: &765 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *761 + placeholder_id: *764 required: - reason - placeholder_id @@ -105827,7 +106073,7 @@ paths: schema: type: object properties: - reason: *762 + reason: *765 expire_at: type: string format: date-time @@ -105850,7 +106096,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -105873,13 +106119,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *196 + '503': *198 '200': description: Response content: @@ -105889,7 +106135,7 @@ paths: properties: incremental_scans: type: array - items: &763 + items: &766 description: Information on a single scan performed by secret scanning on the repository type: object @@ -105915,15 +106161,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *763 + items: *766 backfill_scans: type: array - items: *763 + items: *766 custom_pattern_backfill_scans: type: array items: allOf: - - *763 + - *766 - type: object properties: pattern_name: @@ -105993,9 +106239,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *468 - - *469 - - *110 + - *471 + - *472 + - *112 - name: sort description: The property to sort the results by. in: query @@ -106007,8 +106253,8 @@ paths: - updated - published default: created - - *108 - - *109 + - *110 + - *111 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -106038,9 +106284,9 @@ paths: application/json: schema: type: array - items: *764 + items: *767 examples: - default: *765 + default: *768 '400': *14 '404': *6 x-github: @@ -106063,8 +106309,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -106137,7 +106383,7 @@ paths: login: type: string description: The username of the user credited. - type: *451 + type: *454 required: - login - type @@ -106224,9 +106470,9 @@ paths: description: Response content: application/json: - schema: *764 + schema: *767 examples: - default: &767 + default: &770 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -106459,8 +106705,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -106564,7 +106810,7 @@ paths: description: Response content: application/json: - schema: *764 + schema: *767 examples: default: value: @@ -106711,17 +106957,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *468 - - *469 - - *766 + - *471 + - *472 + - *769 responses: '200': description: Response content: application/json: - schema: *764 + schema: *767 examples: - default: *767 + default: *770 '403': *29 '404': *6 x-github: @@ -106745,9 +106991,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *468 - - *469 - - *766 + - *471 + - *472 + - *769 requestBody: required: true content: @@ -106820,7 +107066,7 @@ paths: login: type: string description: The username of the user credited. - type: *451 + type: *454 required: - login - type @@ -106906,17 +107152,17 @@ paths: description: Response content: application/json: - schema: *764 + schema: *767 examples: - default: *767 - add_credit: *767 + default: *770 + add_credit: *770 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *263 + schema: *265 examples: invalid_state_transition: value: @@ -106947,9 +107193,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *468 - - *469 - - *766 + - *471 + - *472 + - *769 responses: '202': *39 '400': *14 @@ -106976,17 +107222,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *468 - - *469 - - *766 + - *471 + - *472 + - *769 responses: '202': description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *475 + default: *478 '400': *14 '422': *15 '403': *29 @@ -107012,8 +107258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -107112,8 +107358,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -107122,7 +107368,7 @@ paths: application/json: schema: type: array - items: &768 + items: &771 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -107135,7 +107381,7 @@ paths: - 1124 - -435 '202': *39 - '204': *155 + '204': *157 '422': description: Repository contains more than 10,000 commits x-github: @@ -107155,8 +107401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -107205,7 +107451,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *155 + '204': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107232,8 +107478,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -107307,7 +107553,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *155 + '204': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107329,8 +107575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -107484,8 +107730,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -107495,7 +107741,7 @@ paths: application/json: schema: type: array - items: *768 + items: *771 examples: default: value: @@ -107508,7 +107754,7 @@ paths: - - 0 - 2 - 21 - '204': *155 + '204': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107528,8 +107774,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *468 - - *469 + - *471 + - *472 - name: sha in: path required: true @@ -107583,7 +107829,7 @@ paths: description: Response content: application/json: - schema: *769 + schema: *772 examples: default: value: @@ -107637,8 +107883,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -107650,7 +107896,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -107670,14 +107916,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &770 + schema: &773 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -107745,8 +107991,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -107772,7 +108018,7 @@ paths: description: Response content: application/json: - schema: *770 + schema: *773 examples: default: value: @@ -107799,8 +108045,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -107820,8 +108066,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -107900,8 +108146,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *468 - - *469 + - *471 + - *472 - name: ref in: path required: true @@ -107937,8 +108183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -107948,9 +108194,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 headers: Link: *47 '404': *6 @@ -107970,8 +108216,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *468 - - *469 + - *471 + - *472 - *19 - *17 responses: @@ -107979,7 +108225,7 @@ paths: description: Response content: application/json: - schema: &771 + schema: &774 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -107991,7 +108237,7 @@ paths: required: - names examples: - default: &772 + default: &775 value: names: - octocat @@ -108014,8 +108260,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -108046,9 +108292,9 @@ paths: description: Response content: application/json: - schema: *771 + schema: *774 examples: - default: *772 + default: *775 '404': *6 '422': *7 x-github: @@ -108069,9 +108315,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *468 - - *469 - - &773 + - *471 + - *472 + - &776 name: per description: The time frame to display results for. in: query @@ -108100,7 +108346,7 @@ paths: example: 128 clones: type: array - items: &774 + items: &777 title: Traffic type: object properties: @@ -108187,8 +108433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -108278,8 +108524,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -108339,9 +108585,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *468 - - *469 - - *773 + - *471 + - *472 + - *776 responses: '200': description: Response @@ -108360,7 +108606,7 @@ paths: example: 3782 views: type: array - items: *774 + items: *777 required: - uniques - count @@ -108437,8 +108683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -108474,7 +108720,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *291 examples: default: value: @@ -108712,8 +108958,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -108736,8 +108982,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -108759,8 +109005,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -108786,8 +109032,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *468 - - *469 + - *471 + - *472 - name: ref in: path required: true @@ -108879,9 +109125,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *475 + default: *478 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -108922,7 +109168,7 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: default: value: @@ -109028,8 +109274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *282 - - *669 + - *285 + - *672 requestBody: required: true content: @@ -109093,14 +109339,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *672 + items: *675 examples: - default: *775 + default: *778 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *196 + '503': *198 x-github: triggersNotification: true githubCloudOnly: false @@ -109131,8 +109377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *282 - - *669 + - *285 + - *672 requestBody: required: true content: @@ -109197,14 +109443,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *672 + items: *675 examples: - default: *775 + default: *778 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *196 + '503': *198 x-github: triggersNotification: true githubCloudOnly: false @@ -109230,16 +109476,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *282 - - *669 - - *380 + - *285 + - *672 + - *383 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *196 + '503': *198 x-github: triggersNotification: true githubCloudOnly: false @@ -109274,7 +109520,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &783 + - &786 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -109283,7 +109529,7 @@ paths: schema: type: string example: members - - &788 + - &791 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -109294,7 +109540,7 @@ paths: default: 1 format: int32 example: 1 - - &789 + - &792 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -109336,7 +109582,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &778 + items: &781 allOf: - type: object required: @@ -109411,7 +109657,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &790 + meta: &793 type: object description: The metadata associated with the creation/updates to the user. @@ -109471,30 +109717,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &779 + '400': &782 description: Bad request content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 - '401': *777 - '403': &780 + schema: *779 + '401': *780 + '403': &783 description: Permission denied - '429': &781 + '429': &784 description: Too many requests content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 - '500': &782 + schema: *779 + '500': &785 description: Internal server error content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 + schema: *779 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109518,7 +109764,7 @@ paths: required: true content: application/json: - schema: &786 + schema: &789 type: object required: - schemas @@ -109578,9 +109824,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *778 + schema: *781 examples: - group: &784 + group: &787 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -109599,13 +109845,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *779 - '401': *777 - '403': *780 - '409': &787 + '400': *782 + '401': *780 + '403': *783 + '409': &790 description: Duplicate record detected - '429': *781 - '500': *782 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109622,7 +109868,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &785 + - &788 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -109630,22 +109876,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *783 + - *786 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *778 + schema: *781 examples: - default: *784 - '400': *779 - '401': *777 - '403': *780 + default: *787 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '429': *781 - '500': *782 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109664,13 +109910,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *785 + - *788 - *41 requestBody: required: true content: application/json: - schema: *786 + schema: *789 examples: group: summary: Group @@ -109696,17 +109942,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *778 + schema: *781 examples: - group: *784 - groupWithMembers: *784 - '400': *779 - '401': *777 - '403': *780 + group: *787 + groupWithMembers: *787 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '409': *787 - '429': *781 - '500': *782 + '409': *790 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109730,13 +109976,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *785 + - *788 - *41 requestBody: required: true content: application/json: - schema: &797 + schema: &800 type: object required: - Operations @@ -109796,17 +110042,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *778 + schema: *781 examples: - updateGroup: *784 - addMembers: *784 - '400': *779 - '401': *777 - '403': *780 + updateGroup: *787 + addMembers: *787 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '409': *787 - '429': *781 - '500': *782 + '409': *790 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109822,17 +110068,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *785 + - *788 - *41 responses: '204': description: Group was deleted, no content - '400': *779 - '401': *777 - '403': *780 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '429': *781 - '500': *782 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109866,8 +110112,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *788 - - *789 + - *791 + - *792 - *41 responses: '200': @@ -109900,7 +110146,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &792 + items: &795 allOf: - type: object required: @@ -109979,7 +110225,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &791 + roles: &794 type: array description: The roles assigned to the user. items: @@ -110035,7 +110281,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *790 + meta: *793 startIndex: type: integer description: A starting index for the returned page @@ -110072,11 +110318,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *779 - '401': *777 - '403': *780 - '429': *781 - '500': *782 + '400': *782 + '401': *780 + '403': *783 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110100,7 +110346,7 @@ paths: required: true content: application/json: - schema: &795 + schema: &798 type: object required: - schemas @@ -110182,9 +110428,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *791 + roles: *794 examples: - user: &796 + user: &799 summary: User value: schemas: @@ -110231,9 +110477,9 @@ paths: description: User has been created content: application/scim+json: - schema: *792 + schema: *795 examples: - user: &793 + user: &796 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110259,13 +110505,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *793 - '400': *779 - '401': *777 - '403': *780 - '409': *787 - '429': *781 - '500': *782 + enterpriseOwner: *796 + '400': *782 + '401': *780 + '403': *783 + '409': *790 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110282,7 +110528,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &794 + - &797 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -110295,15 +110541,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *792 + schema: *795 examples: - default: *793 - '400': *779 - '401': *777 - '403': *780 + default: *796 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '429': *781 - '500': *782 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110354,30 +110600,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *794 + - *797 - *41 requestBody: required: true content: application/json: - schema: *795 + schema: *798 examples: - user: *796 + user: *799 responses: '200': description: User was updated content: application/scim+json: - schema: *792 + schema: *795 examples: - user: *793 - '400': *779 - '401': *777 - '403': *780 + user: *796 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '409': *787 - '429': *781 - '500': *782 + '409': *790 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110418,13 +110664,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *794 + - *797 - *41 requestBody: required: true content: application/json: - schema: *797 + schema: *800 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -110464,18 +110710,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *792 + schema: *795 examples: - userMultiValuedProperties: *793 - userSingleValuedProperties: *793 - disableUser: *793 - '400': *779 - '401': *777 - '403': *780 + userMultiValuedProperties: *796 + userSingleValuedProperties: *796 + disableUser: *796 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '409': *787 - '429': *781 - '500': *782 + '409': *790 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110495,17 +110741,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *794 + - *797 - *41 responses: '204': description: User was deleted, no content - '400': *779 - '401': *777 - '403': *780 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '429': *781 - '500': *782 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110538,7 +110784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#list-scim-provisioned-identities parameters: - - *87 + - *89 - name: startIndex description: 'Used for pagination: the index of the first result to return.' in: query @@ -110592,7 +110838,7 @@ paths: example: 1 Resources: type: array - items: &798 + items: &801 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -110823,22 +111069,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &799 + '404': &802 description: Resource not found content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 - '403': &800 + schema: *779 + '403': &803 description: Forbidden content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 - '400': *779 - '429': *781 + schema: *779 + '400': *782 + '429': *784 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -110858,15 +111104,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#provision-and-invite-a-scim-user parameters: - - *87 + - *89 responses: '201': description: Response content: application/scim+json: - schema: *798 + schema: *801 examples: - default: &801 + default: &804 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110889,17 +111135,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *799 - '403': *800 - '500': *782 + '404': *802 + '403': *803 + '500': *785 '409': description: Conflict content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 - '400': *779 + schema: *779 + '400': *782 requestBody: required: true content: @@ -110996,18 +111242,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - - *87 - - *794 + - *89 + - *797 responses: '200': description: Response content: application/scim+json: - schema: *798 + schema: *801 examples: - default: *801 - '404': *799 - '403': *800 + default: *804 + '404': *802 + '403': *803 '304': *37 x-github: githubCloudOnly: true @@ -111030,19 +111276,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - - *87 - - *794 + - *89 + - *797 responses: '200': description: Response content: application/scim+json: - schema: *798 + schema: *801 examples: - default: *801 + default: *804 '304': *37 - '404': *799 - '403': *800 + '404': *802 + '403': *803 requestBody: required: true content: @@ -111154,20 +111400,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - - *87 - - *794 + - *89 + - *797 responses: '200': description: Response content: application/scim+json: - schema: *798 + schema: *801 examples: - default: *801 + default: *804 '304': *37 - '404': *799 - '403': *800 - '400': *779 + '404': *802 + '403': *803 + '400': *782 '429': description: Response content: @@ -111257,13 +111503,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - - *87 - - *794 + - *89 + - *797 responses: '204': description: Response - '404': *799 - '403': *800 + '404': *802 + '403': *803 '304': *37 x-github: githubCloudOnly: true @@ -111378,7 +111624,7 @@ paths: html_url: type: string format: uri - repository: *288 + repository: *291 score: type: number file_size: @@ -111396,7 +111642,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &802 + text_matches: &805 title: Search Result Text Matches type: array items: @@ -111510,7 +111756,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *196 + '503': *198 '422': *15 '403': *29 x-github: @@ -111559,7 +111805,7 @@ paths: enum: - author-date - committer-date - - &803 + - &806 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 @@ -111630,7 +111876,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *519 + properties: *522 nullable: true comment_count: type: integer @@ -111650,7 +111896,7 @@ paths: url: type: string format: uri - verification: *647 + verification: *650 required: - author - committer @@ -111669,7 +111915,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *519 + properties: *522 nullable: true parents: type: array @@ -111682,12 +111928,12 @@ paths: type: string sha: type: string - repository: *288 + repository: *291 score: type: number node_id: type: string - text_matches: *802 + text_matches: *805 required: - sha - node_id @@ -111880,7 +112126,7 @@ paths: - interactions - created - updated - - *803 + - *806 - *17 - *19 - name: advanced_search @@ -111977,11 +112223,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: type: string state_reason: @@ -111998,8 +112244,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *416 - required: *417 + properties: *419 + required: *420 nullable: true comments: type: integer @@ -112013,7 +112259,7 @@ paths: type: string format: date-time nullable: true - text_matches: *802 + text_matches: *805 pull_request: type: object properties: @@ -112046,10 +112292,10 @@ paths: type: string score: type: number - author_association: *222 + author_association: *224 draft: type: boolean - repository: *78 + repository: *80 body_html: type: string body_text: @@ -112057,7 +112303,7 @@ paths: timeline_url: type: string format: uri - type: *381 + type: *384 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -112067,17 +112313,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - reactions: *223 + reactions: *225 required: - assignee - closed_at @@ -112193,7 +112439,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *196 + '503': *198 '422': *15 '304': *37 '403': *29 @@ -112246,7 +112492,7 @@ paths: enum: - created - updated - - *803 + - *806 - *17 - *19 responses: @@ -112290,7 +112536,7 @@ paths: nullable: true score: type: number - text_matches: *802 + text_matches: *805 required: - id - node_id @@ -112376,7 +112622,7 @@ paths: - forks - help-wanted-issues - updated - - *803 + - *806 - *17 - *19 responses: @@ -112606,8 +112852,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true permissions: type: object @@ -112626,7 +112872,7 @@ paths: - admin - pull - push - text_matches: *802 + text_matches: *805 temp_clone_token: type: string allow_merge_commit: @@ -112828,7 +113074,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *196 + '503': *198 '422': *15 '304': *37 x-github: @@ -112927,7 +113173,7 @@ paths: type: string format: uri nullable: true - text_matches: *802 + text_matches: *805 related: type: array nullable: true @@ -113120,7 +113366,7 @@ paths: - followers - repositories - joined - - *803 + - *806 - *17 - *19 responses: @@ -113224,7 +113470,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *802 + text_matches: *805 blog: type: string nullable: true @@ -113283,7 +113529,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *196 + '503': *198 '422': *15 x-github: githubCloudOnly: false @@ -113303,7 +113549,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &806 + - &809 name: team_id description: The unique identifier of the team. in: path @@ -113315,9 +113561,9 @@ paths: description: Response content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '404': *6 x-github: githubCloudOnly: false @@ -113344,7 +113590,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *806 + - *809 requestBody: required: true content: @@ -113407,16 +113653,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '201': description: Response content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '404': *6 '422': *15 '403': *29 @@ -113444,7 +113690,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *806 + - *809 responses: '204': description: Response @@ -113473,7 +113719,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *806 + - *809 - *17 - *19 responses: @@ -113483,9 +113729,9 @@ paths: application/json: schema: type: array - items: *375 + items: *378 examples: - default: *376 + default: *379 headers: Link: *47 x-github: @@ -113511,7 +113757,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *806 + - *809 - name: role description: Filters members returned by their role in the team. in: query @@ -113534,7 +113780,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 '404': *6 @@ -113562,8 +113808,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *806 - - *143 + - *809 + - *145 responses: '204': description: if user is a member @@ -113599,8 +113845,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *806 - - *143 + - *809 + - *145 responses: '204': description: Response @@ -113639,8 +113885,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *806 - - *143 + - *809 + - *145 responses: '204': description: Response @@ -113676,16 +113922,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *806 - - *143 + - *809 + - *145 responses: '200': description: Response content: application/json: - schema: *467 + schema: *470 examples: - response-if-user-is-a-team-maintainer: *807 + response-if-user-is-a-team-maintainer: *810 '404': *6 x-github: githubCloudOnly: false @@ -113718,8 +113964,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *806 - - *143 + - *809 + - *145 requestBody: required: false content: @@ -113744,9 +113990,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *470 examples: - response-if-users-membership-with-team-is-now-pending: *808 + response-if-users-membership-with-team-is-now-pending: *811 '403': description: Forbidden if team synchronization is set up '422': @@ -113780,8 +114026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *806 - - *143 + - *809 + - *145 responses: '204': description: Response @@ -113808,7 +114054,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *806 + - *809 - *17 - *19 responses: @@ -113818,9 +114064,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *403 + default: *406 headers: Link: *47 '404': *6 @@ -113850,15 +114096,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *806 - - *468 - - *469 + - *809 + - *471 + - *472 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *809 + schema: *812 examples: alternative-response-with-extra-repository-information: value: @@ -114009,9 +114255,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *806 - - *468 - - *469 + - *809 + - *471 + - *472 requestBody: required: false content: @@ -114061,9 +114307,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *806 - - *468 - - *469 + - *809 + - *471 + - *472 responses: '204': description: Response @@ -114092,15 +114338,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *806 + - *809 responses: '200': description: Response content: application/json: - schema: *470 + schema: *473 examples: - default: *471 + default: *474 '403': *29 '404': *6 x-github: @@ -114127,7 +114373,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *806 + - *809 requestBody: required: true content: @@ -114184,7 +114430,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -114215,7 +114461,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *806 + - *809 - *17 - *19 responses: @@ -114225,9 +114471,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - response-if-child-teams-exist: *810 + response-if-child-teams-exist: *813 headers: Link: *47 '404': *6 @@ -114260,7 +114506,7 @@ paths: application/json: schema: oneOf: - - &812 + - &815 title: Private User description: Private User type: object @@ -114463,7 +114709,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *811 + - *814 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -114616,7 +114862,7 @@ paths: description: Response content: application/json: - schema: *812 + schema: *815 examples: default: value: @@ -114695,7 +114941,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 '304': *37 '404': *6 '403': *29 @@ -114718,7 +114964,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *143 + - *145 responses: '204': description: If the user is blocked @@ -114746,7 +114992,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *143 + - *145 responses: '204': description: Response @@ -114770,7 +115016,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *143 + - *145 responses: '204': description: Response @@ -114819,9 +115065,9 @@ paths: type: integer codespaces: type: array - items: *386 + items: *389 examples: - default: *387 + default: *390 '304': *37 '500': *40 '401': *25 @@ -114960,21 +115206,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '401': *25 '403': *29 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115014,7 +115260,7 @@ paths: type: integer secrets: type: array - items: &813 + items: &816 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -115054,7 +115300,7 @@ paths: - visibility - selected_repositories_url examples: - default: *575 + default: *578 headers: Link: *47 x-github: @@ -115124,13 +115370,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *298 + - *301 responses: '200': description: Response content: application/json: - schema: *813 + schema: *816 examples: default: value: @@ -115160,7 +115406,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *298 + - *301 requestBody: required: true content: @@ -115205,7 +115451,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -115233,7 +115479,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *298 + - *301 responses: '204': description: Response @@ -115258,7 +115504,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *298 + - *301 responses: '200': description: Response @@ -115274,9 +115520,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: *814 + default: *817 '401': *25 '403': *29 '404': *6 @@ -115301,7 +115547,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *298 + - *301 requestBody: required: true content: @@ -115355,7 +115601,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *298 + - *301 - name: repository_id in: path required: true @@ -115388,7 +115634,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *298 + - *301 - name: repository_id in: path required: true @@ -115420,15 +115666,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '304': *37 '500': *40 '401': *25 @@ -115454,7 +115700,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 requestBody: required: false content: @@ -115484,9 +115730,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '401': *25 '403': *29 '404': *6 @@ -115508,7 +115754,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 responses: '202': *39 '304': *37 @@ -115537,13 +115783,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 responses: '202': description: Response content: application/json: - schema: &815 + schema: &818 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -115584,7 +115830,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &816 + default: &819 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -115616,7 +115862,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *388 + - *391 - name: export_id in: path required: true @@ -115629,9 +115875,9 @@ paths: description: Response content: application/json: - schema: *815 + schema: *818 examples: - default: *816 + default: *819 '404': *6 x-github: githubCloudOnly: false @@ -115652,7 +115898,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *388 + - *391 responses: '200': description: Response @@ -115668,9 +115914,9 @@ paths: type: integer machines: type: array - items: *817 + items: *820 examples: - default: *818 + default: *821 '304': *37 '500': *40 '401': *25 @@ -115699,7 +115945,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *388 + - *391 requestBody: required: true content: @@ -115749,13 +115995,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *473 + repository: *476 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *573 - required: *574 + properties: *576 + required: *577 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -116529,15 +116775,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '304': *37 '500': *40 '400': *14 @@ -116549,7 +116795,7 @@ paths: schema: *3 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116569,15 +116815,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '500': *40 '401': *25 '403': *29 @@ -116607,9 +116853,9 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: - default: &829 + default: &832 value: - id: 197 name: hello_docker @@ -116710,7 +116956,7 @@ paths: application/json: schema: type: array - items: &819 + items: &822 title: Email description: Email type: object @@ -116775,9 +117021,9 @@ paths: application/json: schema: type: array - items: *819 + items: *822 examples: - default: &831 + default: &834 value: - email: octocat@github.com verified: true @@ -116852,7 +117098,7 @@ paths: application/json: schema: type: array - items: *819 + items: *822 examples: default: value: @@ -116962,7 +117208,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 '304': *37 @@ -116995,7 +117241,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 '304': *37 @@ -117017,7 +117263,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *143 + - *145 responses: '204': description: if the person is followed by the authenticated user @@ -117047,7 +117293,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *143 + - *145 responses: '204': description: Response @@ -117072,7 +117318,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *143 + - *145 responses: '204': description: Response @@ -117108,7 +117354,7 @@ paths: application/json: schema: type: array - items: &820 + items: &823 title: GPG Key description: A unique encryption key type: object @@ -117239,7 +117485,7 @@ paths: - subkeys - revoked examples: - default: &847 + default: &850 value: - id: 3 name: Octocat's GPG Key @@ -117324,9 +117570,9 @@ paths: description: Response content: application/json: - schema: *820 + schema: *823 examples: - default: &821 + default: &824 value: id: 3 name: Octocat's GPG Key @@ -117383,7 +117629,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &822 + - &825 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -117395,9 +117641,9 @@ paths: description: Response content: application/json: - schema: *820 + schema: *823 examples: - default: *821 + default: *824 '404': *6 '304': *37 '403': *29 @@ -117420,7 +117666,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *822 + - *825 responses: '204': description: Response @@ -117611,9 +117857,9 @@ paths: type: array items: allOf: - - *78 + - *80 examples: - default: *283 + default: *286 headers: Link: *47 '404': *6 @@ -117638,7 +117884,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *282 + - *285 responses: '204': description: Response @@ -117664,7 +117910,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *282 + - *285 responses: '204': description: Response @@ -117698,12 +117944,12 @@ paths: application/json: schema: anyOf: - - *373 + - *376 - type: object properties: {} additionalProperties: false examples: - default: *374 + default: *377 '204': description: Response when there are no restrictions x-github: @@ -117727,7 +117973,7 @@ paths: required: true content: application/json: - schema: *657 + schema: *660 examples: default: value: @@ -117738,7 +117984,7 @@ paths: description: Response content: application/json: - schema: *373 + schema: *376 examples: default: value: @@ -117819,7 +118065,7 @@ paths: - closed - all default: open - - *384 + - *387 - name: sort description: What to sort results by. in: query @@ -117831,8 +118077,8 @@ paths: - updated - comments default: created - - *110 - - *232 + - *112 + - *234 - *17 - *19 responses: @@ -117842,9 +118088,9 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: *385 + default: *388 headers: Link: *47 '404': *6 @@ -117877,7 +118123,7 @@ paths: application/json: schema: type: array - items: &823 + items: &826 title: Key description: Key type: object @@ -117978,9 +118224,9 @@ paths: description: Response content: application/json: - schema: *823 + schema: *826 examples: - default: &824 + default: &827 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -118013,15 +118259,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *691 + - *694 responses: '200': description: Response content: application/json: - schema: *823 + schema: *826 examples: - default: *824 + default: *827 '404': *6 '304': *37 '403': *29 @@ -118044,7 +118290,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *691 + - *694 responses: '204': description: Response @@ -118077,7 +118323,7 @@ paths: application/json: schema: type: array - items: &825 + items: &828 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -118134,7 +118380,7 @@ paths: - id - type - login - plan: *243 + plan: *245 required: - billing_cycle - next_billing_date @@ -118145,7 +118391,7 @@ paths: - account - plan examples: - default: &826 + default: &829 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -118207,9 +118453,9 @@ paths: application/json: schema: type: array - items: *825 + items: *828 examples: - default: *826 + default: *829 headers: Link: *47 '304': *37 @@ -118249,7 +118495,7 @@ paths: application/json: schema: type: array - items: *389 + items: *392 examples: default: value: @@ -118357,13 +118603,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *389 + schema: *392 examples: default: value: @@ -118425,7 +118671,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *87 + - *89 requestBody: required: true content: @@ -118450,7 +118696,7 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: default: value: @@ -118522,7 +118768,7 @@ paths: application/json: schema: type: array - items: *391 + items: *394 examples: default: value: @@ -118775,7 +119021,7 @@ paths: description: Response content: application/json: - schema: *391 + schema: *394 examples: default: value: @@ -118955,7 +119201,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *392 + - *395 - name: exclude in: query required: false @@ -118968,7 +119214,7 @@ paths: description: Response content: application/json: - schema: *391 + schema: *394 examples: default: value: @@ -119162,7 +119408,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *392 + - *395 responses: '302': description: Response @@ -119188,7 +119434,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *392 + - *395 responses: '204': description: Response @@ -119217,8 +119463,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *392 - - *827 + - *395 + - *830 responses: '204': description: Response @@ -119242,7 +119488,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *392 + - *395 - *17 - *19 responses: @@ -119252,9 +119498,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *403 + default: *406 headers: Link: *47 '404': *6 @@ -119289,9 +119535,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *256 + default: *258 headers: Link: *47 '304': *37 @@ -119333,7 +119579,7 @@ paths: - docker - nuget - container - - *828 + - *831 - *19 - *17 responses: @@ -119343,10 +119589,10 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: - default: *829 - '400': *830 + default: *832 + '400': *833 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119366,16 +119612,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *399 - - *400 + - *402 + - *403 responses: '200': description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: &848 + default: &851 value: id: 40201 name: octo-name @@ -119488,8 +119734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *399 - - *400 + - *402 + - *403 responses: '204': description: Response @@ -119519,8 +119765,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *399 - - *400 + - *402 + - *403 - name: token description: package token schema: @@ -119552,8 +119798,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *399 - - *400 + - *402 + - *403 - *19 - *17 - name: state @@ -119573,7 +119819,7 @@ paths: application/json: schema: type: array - items: *401 + items: *404 examples: default: value: @@ -119622,15 +119868,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *399 - - *400 - *402 + - *403 + - *405 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: default: value: @@ -119666,9 +119912,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *399 - - *400 - *402 + - *403 + - *405 responses: '204': description: Response @@ -119698,9 +119944,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *399 - - *400 - *402 + - *403 + - *405 responses: '204': description: Response @@ -119737,9 +119983,9 @@ paths: application/json: schema: type: array - items: *819 + items: *822 examples: - default: *831 + default: *834 headers: Link: *47 '304': *37 @@ -119850,9 +120096,9 @@ paths: application/json: schema: type: array - items: *78 + items: *80 examples: - default: &838 + default: &841 summary: Default response value: - id: 1296269 @@ -120156,9 +120402,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *475 + default: *478 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -120196,9 +120442,9 @@ paths: application/json: schema: type: array - items: *659 + items: *662 examples: - default: *832 + default: *835 headers: Link: *47 '304': *37 @@ -120221,12 +120467,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *377 + - *380 responses: '204': description: Response '403': *29 - '409': *119 + '409': *121 '404': *6 '304': *37 x-github: @@ -120244,11 +120490,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *377 + - *380 responses: '204': description: Response - '409': *119 + '409': *121 '304': *37 '404': *6 '403': *29 @@ -120277,7 +120523,7 @@ paths: application/json: schema: type: array - items: &833 + items: &836 title: Social account description: Social media account type: object @@ -120292,7 +120538,7 @@ paths: - provider - url examples: - default: &834 + default: &837 value: - provider: twitter url: https://twitter.com/github @@ -120354,9 +120600,9 @@ paths: application/json: schema: type: array - items: *833 + items: *836 examples: - default: *834 + default: *837 '422': *15 '304': *37 '404': *6 @@ -120443,7 +120689,7 @@ paths: application/json: schema: type: array - items: &835 + items: &838 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -120463,7 +120709,7 @@ paths: - title - created_at examples: - default: &862 + default: &865 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -120527,9 +120773,9 @@ paths: description: Response content: application/json: - schema: *835 + schema: *838 examples: - default: &836 + default: &839 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -120559,7 +120805,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &837 + - &840 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -120571,9 +120817,9 @@ paths: description: Response content: application/json: - schema: *835 + schema: *838 examples: - default: *836 + default: *839 '404': *6 '304': *37 '403': *29 @@ -120596,7 +120842,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *837 + - *840 responses: '204': description: Response @@ -120625,7 +120871,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &863 + - &866 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 @@ -120638,7 +120884,7 @@ paths: - created - updated default: created - - *110 + - *112 - *17 - *19 responses: @@ -120648,13 +120894,13 @@ paths: application/json: schema: type: array - items: *78 + items: *80 examples: - default-response: *838 + default-response: *841 application/vnd.github.v3.star+json: schema: type: array - items: &864 + items: &867 title: Starred Repository description: Starred Repository type: object @@ -120662,7 +120908,7 @@ paths: starred_at: type: string format: date-time - repo: *78 + repo: *80 required: - starred_at - repo @@ -120810,8 +121056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response if this repository is starred by you @@ -120839,8 +121085,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -120864,8 +121110,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -120898,9 +121144,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *403 + default: *406 headers: Link: *47 '304': *37 @@ -120937,7 +121183,7 @@ paths: application/json: schema: type: array - items: *460 + items: *463 examples: default: value: @@ -121015,7 +121261,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *245 + - *247 responses: '200': description: Response @@ -121023,10 +121269,10 @@ paths: application/json: schema: oneOf: - - *812 - - *811 + - *815 + - *814 examples: - default-response: &842 + default-response: &845 summary: Default response value: login: octocat @@ -121061,7 +121307,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &843 + response-with-git-hub-plan-information: &846 summary: Response with GitHub plan information value: login: octocat @@ -121118,14 +121364,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &840 + - &843 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *415 + - *418 requestBody: required: true description: Details of the draft item to create in the project. @@ -121159,9 +121405,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *424 examples: - draft_issue: *422 + draft_issue: *425 '304': *37 '403': *29 '401': *25 @@ -121184,7 +121430,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *839 + - *842 - *17 responses: '200': @@ -121195,7 +121441,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: example: ; rel="next" @@ -121219,8 +121465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *840 - - *415 + - *843 + - *418 requestBody: required: true content: @@ -121291,17 +121537,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *841 + schema: *844 examples: table_view: summary: Response for creating a table view - value: *426 + value: *429 board_view: summary: Response for creating a board view with filter - value: *426 + value: *429 roadmap_view: summary: Response for creating a roadmap view - value: *426 + value: *429 '304': *37 '403': *29 '401': *25 @@ -121335,7 +121581,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *143 + - *145 responses: '200': description: Response @@ -121343,11 +121589,11 @@ paths: application/json: schema: oneOf: - - *812 - - *811 + - *815 + - *814 examples: - default-response: *842 - response-with-git-hub-plan-information: *843 + default-response: *845 + response-with-git-hub-plan-information: *846 '404': *6 x-github: githubCloudOnly: false @@ -121371,9 +121617,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *108 - - *109 - - *143 + - *110 + - *111 + - *145 requestBody: required: true content: @@ -121397,8 +121643,8 @@ paths: required: - subject_digests examples: - default: *844 - withPredicateType: *845 + default: *847 + withPredicateType: *848 responses: '200': description: Response @@ -121451,7 +121697,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *846 + default: *849 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -121469,7 +121715,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *143 + - *145 requestBody: required: true content: @@ -121534,7 +121780,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *143 + - *145 - name: subject_digest description: Subject Digest in: path @@ -121565,7 +121811,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *143 + - *145 - name: attestation_id description: Attestation ID in: path @@ -121601,9 +121847,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations parameters: - *17 - - *108 - - *109 - - *143 + - *110 + - *111 + - *145 - name: subject_digest description: Subject Digest in: path @@ -121656,12 +121902,12 @@ paths: initiator: type: string examples: - default: *515 + default: *518 '201': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -121687,7 +121933,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *143 + - *145 responses: '200': description: Response @@ -121695,9 +121941,9 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: - default: *829 + default: *832 '403': *29 '401': *25 x-github: @@ -121720,7 +121966,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121730,7 +121976,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -121792,8 +122038,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *143 - - *87 + - *145 + - *89 - *17 - *19 responses: @@ -121803,7 +122049,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -121880,7 +122126,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121890,7 +122136,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -121948,7 +122194,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121960,7 +122206,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -121979,7 +122225,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121991,7 +122237,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -122010,7 +122256,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-user-follows-another-user parameters: - - *143 + - *145 - name: target_user in: path required: true @@ -122037,8 +122283,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *143 - - *232 + - *145 + - *234 - *17 - *19 responses: @@ -122048,9 +122294,9 @@ paths: application/json: schema: type: array - items: *233 + items: *235 examples: - default: *234 + default: *236 headers: Link: *47 '422': *15 @@ -122071,7 +122317,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -122081,9 +122327,9 @@ paths: application/json: schema: type: array - items: *820 + items: *823 examples: - default: *847 + default: *850 headers: Link: *47 x-github: @@ -122107,7 +122353,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *143 + - *145 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -122179,7 +122425,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *143 + - *145 responses: '200': description: Response @@ -122187,7 +122433,7 @@ paths: application/json: schema: *22 examples: - default: *371 + default: *374 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122205,7 +122451,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -122260,7 +122506,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -122270,9 +122516,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *256 + default: *258 headers: Link: *47 x-github: @@ -122311,8 +122557,8 @@ paths: - docker - nuget - container - - *828 - - *143 + - *831 + - *145 - *19 - *17 responses: @@ -122322,12 +122568,12 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: - default: *829 + default: *832 '403': *29 '401': *25 - '400': *830 + '400': *833 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122347,17 +122593,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *399 - - *400 - - *143 + - *402 + - *403 + - *145 responses: '200': description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *848 + default: *851 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122378,9 +122624,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *399 - - *400 - - *143 + - *402 + - *403 + - *145 responses: '204': description: Response @@ -122412,9 +122658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *399 - - *400 - - *143 + - *402 + - *403 + - *145 - name: token description: package token schema: @@ -122446,9 +122692,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *399 - - *400 - - *143 + - *402 + - *403 + - *145 responses: '200': description: Response @@ -122456,7 +122702,7 @@ paths: application/json: schema: type: array - items: *401 + items: *404 examples: default: value: @@ -122514,16 +122760,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *399 - - *400 - *402 - - *143 + - *403 + - *405 + - *145 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: default: value: @@ -122558,10 +122804,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *399 - - *400 - - *143 - *402 + - *403 + - *145 + - *405 responses: '204': description: Response @@ -122593,10 +122839,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *399 - - *400 - - *143 - *402 + - *403 + - *145 + - *405 responses: '204': description: Response @@ -122620,15 +122866,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-user parameters: - - *143 + - *145 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *108 - - *109 + - *110 + - *111 - *17 responses: '200': @@ -122637,9 +122883,9 @@ paths: application/json: schema: type: array - items: *413 + items: *416 examples: - default: *414 + default: *417 headers: Link: *47 '304': *37 @@ -122661,16 +122907,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *415 - - *143 + - *418 + - *145 responses: '200': description: Response content: application/json: - schema: *413 + schema: *416 examples: - default: *414 + default: *417 headers: Link: *47 '304': *37 @@ -122692,11 +122938,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *415 - - *143 + - *418 + - *145 - *17 - - *108 - - *109 + - *110 + - *111 responses: '200': description: Response @@ -122704,9 +122950,9 @@ paths: application/json: schema: type: array - items: *419 + items: *422 examples: - default: *849 + default: *852 headers: Link: *47 '304': *37 @@ -122727,8 +122973,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#add-field-to-user-owned-project parameters: - - *143 - - *415 + - *145 + - *418 requestBody: required: true content: @@ -122766,7 +123012,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *850 + items: *853 required: - name - data_type @@ -122782,7 +123028,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *851 + iteration_configuration: *854 required: - name - data_type @@ -122804,20 +123050,20 @@ paths: value: name: Due date data_type: date - single_select_field: *852 - iteration_field: *853 + single_select_field: *855 + iteration_field: *856 responses: '201': description: Response content: application/json: - schema: *419 + schema: *422 examples: - text_field: *854 - number_field: *855 - date_field: *856 - single_select_field: *857 - iteration_field: *858 + text_field: *857 + number_field: *858 + date_field: *859 + single_select_field: *860 + iteration_field: *861 '304': *37 '403': *29 '401': *25 @@ -122838,17 +123084,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *415 - - *859 - - *143 + - *418 + - *862 + - *145 responses: '200': description: Response content: application/json: - schema: *419 + schema: *422 examples: - default: *860 + default: *863 headers: Link: *47 '304': *37 @@ -122871,10 +123117,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-owned-project parameters: - - *415 - - *143 - - *108 - - *109 + - *418 + - *145 + - *110 + - *111 - *17 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -122904,9 +123150,9 @@ paths: application/json: schema: type: array - items: *423 + items: *426 examples: - default: *424 + default: *427 headers: Link: *47 '304': *37 @@ -122927,8 +123173,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - - *143 - - *415 + - *145 + - *418 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -122998,22 +123244,22 @@ paths: description: Response content: application/json: - schema: *421 + schema: *424 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *422 + value: *425 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *422 + value: *425 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *422 + value: *425 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *422 + value: *425 '304': *37 '403': *29 '401': *25 @@ -123033,9 +123279,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *415 - - *143 - - *425 + - *418 + - *145 + - *428 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -123055,9 +123301,9 @@ paths: description: Response content: application/json: - schema: *423 + schema: *426 examples: - default: *424 + default: *427 headers: Link: *47 '304': *37 @@ -123078,9 +123324,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *415 - - *143 - - *425 + - *418 + - *145 + - *428 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -123150,13 +123396,13 @@ paths: description: Response content: application/json: - schema: *423 + schema: *426 examples: - text_field: *424 - number_field: *424 - date_field: *424 - single_select_field: *424 - iteration_field: *424 + text_field: *427 + number_field: *427 + date_field: *427 + single_select_field: *427 + iteration_field: *427 '401': *25 '403': *29 '404': *6 @@ -123176,9 +123422,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *415 - - *143 - - *425 + - *418 + - *145 + - *428 responses: '204': description: Response @@ -123200,9 +123446,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-project-view parameters: - - *415 - - *143 - - *861 + - *418 + - *145 + - *864 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -123218,8 +123464,8 @@ paths: maxItems: 50 items: type: string - - *108 - - *109 + - *110 + - *111 - *17 responses: '200': @@ -123228,9 +123474,9 @@ paths: application/json: schema: type: array - items: *423 + items: *426 examples: - default: *424 + default: *427 headers: Link: *47 '304': *37 @@ -123258,7 +123504,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -123268,7 +123514,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -123333,7 +123579,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-received-by-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -123343,7 +123589,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -123406,7 +123652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *143 + - *145 - name: type description: Limit results to repositories of the specified type. in: query @@ -123449,9 +123695,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *403 + default: *406 headers: Link: *47 x-github: @@ -123471,7 +123717,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -123481,9 +123727,9 @@ paths: application/json: schema: type: array - items: *833 + items: *836 examples: - default: *834 + default: *837 headers: Link: *47 x-github: @@ -123503,7 +123749,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -123513,9 +123759,9 @@ paths: application/json: schema: type: array - items: *835 + items: *838 examples: - default: *862 + default: *865 headers: Link: *47 x-github: @@ -123539,9 +123785,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *143 - - *863 - - *110 + - *145 + - *866 + - *112 - *17 - *19 responses: @@ -123552,11 +123798,11 @@ paths: schema: anyOf: - type: array - items: *864 + items: *867 - type: array - items: *78 + items: *80 examples: - default-response: *838 + default-response: *841 headers: Link: *47 x-github: @@ -123575,7 +123821,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -123585,9 +123831,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *403 + default: *406 headers: Link: *47 x-github: @@ -123715,7 +123961,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &865 + enterprise: &868 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -123773,7 +124019,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &866 + installation: &869 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -123792,7 +124038,7 @@ x-webhooks: required: - id - node_id - organization: &867 + organization: &870 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -123852,13 +124098,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &868 + repository: &871 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &907 + properties: &910 id: description: Unique identifier of the repository example: 42 @@ -123878,8 +124124,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true organization: title: Simple User @@ -124558,7 +124804,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &908 + required: &911 - archive_url - assignees_url - blobs_url @@ -124709,10 +124955,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -124788,11 +125034,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - rule: &869 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + rule: &872 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest//github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -125015,11 +125261,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - rule: *869 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + rule: *872 sender: *4 required: - action @@ -125202,11 +125448,11 @@ x-webhooks: - everyone required: - from - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - rule: *869 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + rule: *872 sender: *4 required: - action @@ -125279,7 +125525,7 @@ x-webhooks: required: true content: application/json: - schema: &891 + schema: &894 title: Exemption request cancellation event type: object properties: @@ -125287,11 +125533,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - exemption_request: &870 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + exemption_request: &873 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -125560,7 +125806,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &871 + items: &874 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -125670,7 +125916,7 @@ x-webhooks: required: true content: application/json: - schema: &892 + schema: &895 title: Exemption request completed event type: object properties: @@ -125678,11 +125924,11 @@ x-webhooks: type: string enum: - completed - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - exemption_request: *870 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + exemption_request: *873 sender: *4 required: - action @@ -125754,7 +126000,7 @@ x-webhooks: required: true content: application/json: - schema: &889 + schema: &892 title: Exemption request created event type: object properties: @@ -125762,11 +126008,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - exemption_request: *870 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + exemption_request: *873 sender: *4 required: - action @@ -125838,7 +126084,7 @@ x-webhooks: required: true content: application/json: - schema: &893 + schema: &896 title: Exemption response dismissed event type: object properties: @@ -125846,12 +126092,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - exemption_request: *870 - exemption_response: *871 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + exemption_request: *873 + exemption_response: *874 sender: *4 required: - action @@ -125925,7 +126171,7 @@ x-webhooks: required: true content: application/json: - schema: &890 + schema: &893 title: Exemption response submitted event type: object properties: @@ -125933,12 +126179,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - exemption_request: *870 - exemption_response: *871 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + exemption_request: *873 + exemption_response: *874 sender: *4 required: - action @@ -126022,7 +126268,7 @@ x-webhooks: type: string enum: - completed - check_run: &873 + check_run: &876 title: CheckRun description: A check performed on the code of a given code change type: object @@ -126075,8 +126321,8 @@ x-webhooks: type: string pull_requests: type: array - items: *230 - repository: *288 + items: *232 + repository: *291 status: example: completed type: string @@ -126113,7 +126359,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *872 + deployment: *875 details_url: example: https://example.com type: string @@ -126163,7 +126409,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *230 + items: *232 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -126198,10 +126444,10 @@ x-webhooks: - output - app - pull_requests - installation: *866 - enterprise: *865 - organization: *867 - repository: *868 + installation: *869 + enterprise: *868 + organization: *870 + repository: *871 sender: *4 required: - check_run @@ -126592,11 +126838,11 @@ x-webhooks: type: string enum: - created - check_run: *873 - installation: *866 - enterprise: *865 - organization: *867 - repository: *868 + check_run: *876 + installation: *869 + enterprise: *868 + organization: *870 + repository: *871 sender: *4 required: - check_run @@ -126990,11 +127236,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *873 - installation: *866 - enterprise: *865 - organization: *867 - repository: *868 + check_run: *876 + installation: *869 + enterprise: *868 + organization: *870 + repository: *871 requested_action: description: The action requested by the user. type: object @@ -127397,11 +127643,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *873 - installation: *866 - enterprise: *865 - organization: *867 - repository: *868 + check_run: *876 + installation: *869 + enterprise: *868 + organization: *870 + repository: *871 sender: *4 required: - check_run @@ -128371,10 +128617,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -129063,10 +129309,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -129749,10 +129995,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -129918,7 +130164,7 @@ x-webhooks: required: - login - id - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -130063,20 +130309,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &874 + commit_oid: &877 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: *865 - installation: *866 - organization: *867 - ref: &875 + enterprise: *868 + installation: *869 + organization: *870 + ref: &878 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: *868 + repository: *871 sender: *4 required: - action @@ -130241,7 +130487,7 @@ x-webhooks: required: - login - id - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -130471,12 +130717,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *874 - enterprise: *865 - installation: *866 - organization: *867 - ref: *875 - repository: *868 + commit_oid: *877 + enterprise: *868 + installation: *869 + organization: *870 + ref: *878 + repository: *871 sender: *4 required: - action @@ -130571,7 +130817,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130742,12 +130988,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *874 - enterprise: *865 - installation: *866 - organization: *867 - ref: *875 - repository: *868 + commit_oid: *877 + enterprise: *868 + installation: *869 + organization: *870 + ref: *878 + repository: *871 sender: *4 required: - action @@ -130913,7 +131159,7 @@ x-webhooks: required: - login - id - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -131079,12 +131325,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *874 - enterprise: *865 - installation: *866 - organization: *867 - ref: *875 - repository: *868 + commit_oid: *877 + enterprise: *868 + installation: *869 + organization: *870 + ref: *878 + repository: *871 sender: *4 required: - action @@ -131183,7 +131429,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131358,16 +131604,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *868 + repository: *871 sender: *4 required: - action @@ -131464,7 +131710,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131604,12 +131850,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *874 - enterprise: *865 - installation: *866 - organization: *867 - ref: *875 - repository: *868 + commit_oid: *877 + enterprise: *868 + installation: *869 + organization: *870 + ref: *878 + repository: *871 sender: *4 required: - action @@ -131775,7 +132021,7 @@ x-webhooks: required: - login - id - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -131920,10 +132166,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -132178,10 +132424,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -132261,18 +132507,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *867 - pusher_type: &876 + organization: *870 + pusher_type: &879 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &877 + ref: &880 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -132282,7 +132528,7 @@ x-webhooks: enum: - tag - branch - repository: *868 + repository: *871 sender: *4 required: - ref @@ -132364,10 +132610,10 @@ x-webhooks: type: string enum: - created - definition: *157 - enterprise: *865 - installation: *866 - organization: *867 + definition: *159 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 required: - action @@ -132452,9 +132698,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 required: - action @@ -132531,10 +132777,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *157 - enterprise: *865 - installation: *866 - organization: *867 + definition: *159 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 required: - action @@ -132611,10 +132857,10 @@ x-webhooks: type: string enum: - updated - definition: *157 - enterprise: *865 - installation: *866 - organization: *867 + definition: *159 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 required: - action @@ -132691,19 +132937,19 @@ x-webhooks: type: string enum: - updated - enterprise: *865 - installation: *866 - repository: *868 - organization: *867 + enterprise: *868 + installation: *869 + repository: *871 + organization: *870 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *156 + items: *158 old_property_values: type: array description: The old custom property values for the repository. - items: *156 + items: *158 required: - action - repository @@ -132779,18 +133025,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *865 - installation: *866 - organization: *867 - pusher_type: *876 - ref: *877 + enterprise: *868 + installation: *869 + organization: *870 + pusher_type: *879 + ref: *880 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *868 + repository: *871 sender: *4 required: - ref @@ -132870,11 +133116,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -132954,11 +133200,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -133039,11 +133285,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -133124,11 +133370,11 @@ x-webhooks: type: string enum: - created - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -133207,11 +133453,11 @@ x-webhooks: type: string enum: - dismissed - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -133290,11 +133536,11 @@ x-webhooks: type: string enum: - fixed - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -133374,11 +133620,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -133457,11 +133703,11 @@ x-webhooks: type: string enum: - reopened - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -133538,9 +133784,9 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - key: &878 + enterprise: *868 + installation: *869 + key: &881 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -133576,8 +133822,8 @@ x-webhooks: - verified - created_at - read_only - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -133654,11 +133900,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - key: *878 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + key: *881 + organization: *870 + repository: *871 sender: *4 required: - action @@ -134214,12 +134460,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - workflow: &884 + workflow: &887 title: Workflow type: object nullable: true @@ -134960,15 +135206,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *879 - required: *880 + properties: *882 + required: *883 nullable: true pull_requests: type: array - items: *712 - repository: *868 - organization: *867 - installation: *866 + items: *715 + repository: *871 + organization: *870 + installation: *869 sender: *4 responses: '200': @@ -135039,7 +135285,7 @@ x-webhooks: type: string enum: - approved - approver: &881 + approver: &884 type: object properties: avatar_url: @@ -135082,11 +135328,11 @@ x-webhooks: type: string comment: type: string - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - reviewers: &882 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + reviewers: &885 type: array items: type: object @@ -135165,7 +135411,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &883 + workflow_job_run: &886 type: object properties: conclusion: @@ -135896,18 +136142,18 @@ x-webhooks: type: string enum: - rejected - approver: *881 + approver: *884 comment: type: string - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - reviewers: *882 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + reviewers: *885 sender: *4 since: type: string - workflow_job_run: *883 + workflow_job_run: *886 workflow_job_runs: type: array items: @@ -136611,13 +136857,13 @@ x-webhooks: type: string enum: - requested - enterprise: *865 + enterprise: *868 environment: type: string - installation: *866 - organization: *867 - repository: *868 - requestor: &894 + installation: *869 + organization: *870 + repository: *871 + requestor: &897 title: User type: object nullable: true @@ -138506,12 +138752,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - workflow: *884 + workflow: *887 workflow_run: title: Deployment Workflow Run type: object @@ -139191,7 +139437,7 @@ x-webhooks: type: string enum: - answered - answer: &887 + answer: &890 type: object properties: author_association: @@ -139348,11 +139594,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139479,11 +139725,11 @@ x-webhooks: - from required: - category - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139566,11 +139812,11 @@ x-webhooks: type: string enum: - closed - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139652,7 +139898,7 @@ x-webhooks: type: string enum: - created - comment: &886 + comment: &889 type: object properties: author_association: @@ -139809,11 +140055,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139896,12 +140142,12 @@ x-webhooks: type: string enum: - deleted - comment: *886 - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + comment: *889 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139996,12 +140242,12 @@ x-webhooks: - from required: - body - comment: *886 - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + comment: *889 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140085,11 +140331,11 @@ x-webhooks: type: string enum: - created - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140171,11 +140417,11 @@ x-webhooks: type: string enum: - deleted - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140275,11 +140521,11 @@ x-webhooks: type: string required: - from - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140361,10 +140607,10 @@ x-webhooks: type: string enum: - labeled - discussion: *885 - enterprise: *865 - installation: *866 - label: &888 + discussion: *888 + enterprise: *868 + installation: *869 + label: &891 title: Label type: object properties: @@ -140396,8 +140642,8 @@ x-webhooks: - color - default - description - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140480,11 +140726,11 @@ x-webhooks: type: string enum: - locked - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140566,11 +140812,11 @@ x-webhooks: type: string enum: - pinned - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140652,11 +140898,11 @@ x-webhooks: type: string enum: - reopened - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140741,16 +140987,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *885 - new_repository: *868 + new_discussion: *888 + new_repository: *871 required: - new_discussion - new_repository - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140833,10 +141079,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *885 - old_answer: *887 - organization: *867 - repository: *868 + discussion: *888 + old_answer: *890 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140918,12 +141164,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *885 - enterprise: *865 - installation: *866 - label: *888 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -141006,11 +141252,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -141092,11 +141338,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -141165,7 +141411,7 @@ x-webhooks: required: true content: application/json: - schema: *889 + schema: *892 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141228,7 +141474,7 @@ x-webhooks: required: true content: application/json: - schema: *890 + schema: *893 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141291,7 +141537,7 @@ x-webhooks: required: true content: application/json: - schema: *891 + schema: *894 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141354,7 +141600,7 @@ x-webhooks: required: true content: application/json: - schema: *889 + schema: *892 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141417,7 +141663,7 @@ x-webhooks: required: true content: application/json: - schema: *890 + schema: *893 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141483,7 +141729,7 @@ x-webhooks: required: true content: application/json: - schema: *891 + schema: *894 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141549,7 +141795,7 @@ x-webhooks: required: true content: application/json: - schema: *892 + schema: *895 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141615,7 +141861,7 @@ x-webhooks: required: true content: application/json: - schema: *889 + schema: *892 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141681,7 +141927,7 @@ x-webhooks: required: true content: application/json: - schema: *893 + schema: *896 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141747,7 +141993,7 @@ x-webhooks: required: true content: application/json: - schema: *890 + schema: *893 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141812,7 +142058,7 @@ x-webhooks: required: true content: application/json: - schema: *891 + schema: *894 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141877,7 +142123,7 @@ x-webhooks: required: true content: application/json: - schema: *892 + schema: *895 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141942,7 +142188,7 @@ x-webhooks: required: true content: application/json: - schema: *889 + schema: *892 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142007,7 +142253,7 @@ x-webhooks: required: true content: application/json: - schema: *893 + schema: *896 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142073,7 +142319,7 @@ x-webhooks: required: true content: application/json: - schema: *890 + schema: *893 responses: '200': description: Return a 200 status to indicate that the data was received @@ -142140,7 +142386,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *865 + enterprise: *868 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -142800,9 +143046,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *866 - organization: *867 - repository: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - forkee @@ -142948,9 +143194,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pages: description: The pages that were updated. type: array @@ -142987,7 +143233,7 @@ x-webhooks: - action - sha - html_url - repository: *868 + repository: *871 sender: *4 required: - pages @@ -143063,10 +143309,10 @@ x-webhooks: type: string enum: - created - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories: &895 + organization: *870 + repositories: &898 description: An array of repository objects that the installation can access. type: array @@ -143092,8 +143338,8 @@ x-webhooks: - name - full_name - private - repository: *868 - requester: *894 + repository: *871 + requester: *897 sender: *4 required: - action @@ -143168,11 +143414,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories: *895 - repository: *868 + organization: *870 + repositories: *898 + repository: *871 requester: nullable: true sender: *4 @@ -143248,11 +143494,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories: *895 - repository: *868 + organization: *870 + repositories: *898 + repository: *871 requester: nullable: true sender: *4 @@ -143328,10 +143574,10 @@ x-webhooks: type: string enum: - added - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories_added: &896 + organization: *870 + repositories_added: &899 description: An array of repository objects, which were added to the installation. type: array @@ -143377,15 +143623,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *868 - repository_selection: &897 + repository: *871 + repository_selection: &900 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *894 + requester: *897 sender: *4 required: - action @@ -143464,10 +143710,10 @@ x-webhooks: type: string enum: - removed - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories_added: *896 + organization: *870 + repositories_added: *899 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -143494,9 +143740,9 @@ x-webhooks: - name - full_name - private - repository: *868 - repository_selection: *897 - requester: *894 + repository: *871 + repository_selection: *900 + requester: *897 sender: *4 required: - action @@ -143575,11 +143821,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories: *895 - repository: *868 + organization: *870 + repositories: *898 + repository: *871 requester: nullable: true sender: *4 @@ -143758,10 +144004,10 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 target_type: type: string @@ -143840,11 +144086,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories: *895 - repository: *868 + organization: *870 + repositories: *898 + repository: *871 requester: nullable: true sender: *4 @@ -143968,8 +144214,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 reactions: title: Reactions type: object @@ -144018,8 +144264,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *687 - required: *688 + properties: *690 + required: *691 nullable: true user: title: User @@ -144104,8 +144350,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -144894,8 +145140,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144911,7 +145157,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -145244,8 +145490,8 @@ x-webhooks: - state - locked - assignee - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -145325,7 +145571,7 @@ x-webhooks: type: string enum: - deleted - comment: &898 + comment: &901 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -145482,8 +145728,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *687 - required: *688 + properties: *690 + required: *691 nullable: true required: - url @@ -145498,8 +145744,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -146284,8 +146530,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146301,7 +146547,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -146636,8 +146882,8 @@ x-webhooks: - state - locked - assignee - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -146717,7 +146963,7 @@ x-webhooks: type: string enum: - edited - changes: &927 + changes: &930 description: The changes to the comment. type: object properties: @@ -146729,9 +146975,9 @@ x-webhooks: type: string required: - from - comment: *898 - enterprise: *865 - installation: *866 + comment: *901 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147519,8 +147765,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147536,7 +147782,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -147869,8 +148115,8 @@ x-webhooks: - state - locked - assignee - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -147951,9 +148197,9 @@ x-webhooks: type: string enum: - pinned - comment: *898 - enterprise: *865 - installation: *866 + comment: *901 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148743,8 +148989,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148760,7 +149006,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -149095,8 +149341,8 @@ x-webhooks: - state - locked - assignee - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -149176,9 +149422,9 @@ x-webhooks: type: string enum: - unpinned - comment: *898 - enterprise: *865 - installation: *866 + comment: *901 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -149968,8 +150214,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149985,7 +150231,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -150320,8 +150566,8 @@ x-webhooks: - state - locked - assignee - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -150404,15 +150650,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *225 + blocked_issue: *227 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *225 - blocking_issue_repo: *78 - installation: *866 - organization: *867 - repository: *868 + blocking_issue: *227 + blocking_issue_repo: *80 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -150495,15 +150741,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *225 + blocked_issue: *227 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *225 - blocking_issue_repo: *78 - installation: *866 - organization: *867 - repository: *868 + blocking_issue: *227 + blocking_issue_repo: *80 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -150585,15 +150831,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *225 - blocked_issue_repo: *78 + blocked_issue: *227 + blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *225 - installation: *866 - organization: *867 - repository: *868 + blocking_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -150676,15 +150922,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *225 - blocked_issue_repo: *78 + blocked_issue: *227 + blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *225 - installation: *866 - organization: *867 - repository: *868 + blocking_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -150764,10 +151010,10 @@ x-webhooks: type: string enum: - assigned - assignee: *894 - enterprise: *865 - installation: *866 - issue: &901 + assignee: *897 + enterprise: *868 + installation: *869 + issue: &904 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -151556,14 +151802,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151579,7 +151825,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -151680,8 +151926,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -151761,8 +152007,8 @@ x-webhooks: type: string enum: - closed - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -152556,14 +152802,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152579,7 +152825,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -152815,8 +153061,8 @@ x-webhooks: required: - state - closed_at - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -152895,8 +153141,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153681,14 +153927,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153704,7 +153950,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -153804,8 +154050,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -153884,8 +154130,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154692,14 +154938,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154715,7 +154961,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -154794,7 +155040,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &899 + milestone: &902 title: Milestone description: A collection of related issues and pull requests. type: object @@ -154932,8 +155178,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -155032,8 +155278,8 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155822,14 +156068,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155842,7 +156088,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *381 + type: *384 title: description: Title of the issue type: string @@ -155946,9 +156192,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *888 - organization: *867 - repository: *868 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -156028,8 +156274,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156817,14 +157063,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156837,7 +157083,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *381 + type: *384 title: description: Title of the issue type: string @@ -156941,9 +157187,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *888 - organization: *867 - repository: *868 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -157023,8 +157269,8 @@ x-webhooks: type: string enum: - locked - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157836,14 +158082,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157856,7 +158102,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *381 + type: *384 title: description: Title of the issue type: string @@ -157937,8 +158183,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -158017,8 +158263,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -158824,14 +159070,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158847,7 +159093,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -158925,9 +159171,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *899 - organization: *867 - repository: *868 + milestone: *902 + organization: *870 + repository: *871 sender: *4 required: - action @@ -159790,11 +160036,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159822,8 +160068,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true user: title: User @@ -159895,7 +160141,7 @@ x-webhooks: required: - login - id - type: *381 + type: *384 required: - id - number @@ -160379,8 +160625,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -161164,11 +161410,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161184,7 +161430,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -161197,8 +161443,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true user: title: User @@ -161292,8 +161538,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -161373,9 +161619,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *865 - installation: *866 - issue: &900 + enterprise: *868 + installation: *869 + issue: &903 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -162158,14 +162404,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162181,7 +162427,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -162281,8 +162527,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -162361,8 +162607,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -163172,14 +163418,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163273,9 +163519,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *381 - organization: *867 - repository: *868 + type: *384 + organization: *870 + repository: *871 sender: *4 required: - action @@ -164141,14 +164387,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164164,7 +164410,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -164747,11 +164993,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *865 - installation: *866 - issue: *900 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *903 + organization: *870 + repository: *871 sender: *4 required: - action @@ -164831,12 +165077,12 @@ x-webhooks: type: string enum: - typed - enterprise: *865 - installation: *866 - issue: *901 - type: *381 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *904 + type: *384 + organization: *870 + repository: *871 sender: *4 required: - action @@ -164917,7 +165163,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &930 + assignee: &933 title: User type: object nullable: true @@ -164987,11 +165233,11 @@ x-webhooks: required: - login - id - enterprise: *865 - installation: *866 - issue: *901 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *904 + organization: *870 + repository: *871 sender: *4 required: - action @@ -165070,12 +165316,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *865 - installation: *866 - issue: *901 - label: *888 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *904 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -165155,8 +165401,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -165966,14 +166212,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165989,7 +166235,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -166067,8 +166313,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -166148,11 +166394,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *865 - installation: *866 - issue: *900 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *903 + organization: *870 + repository: *871 sender: *4 required: - action @@ -166231,12 +166477,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *865 - installation: *866 - issue: *901 - type: *381 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *904 + type: *384 + organization: *870 + repository: *871 sender: *4 required: - action @@ -166316,11 +166562,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - label: *888 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -166398,11 +166644,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - label: *888 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -166512,11 +166758,11 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - label: *888 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -166598,9 +166844,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *865 - installation: *866 - marketplace_purchase: &902 + enterprise: *868 + installation: *869 + marketplace_purchase: &905 title: Marketplace Purchase type: object required: @@ -166683,8 +166929,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *867 - previous_marketplace_purchase: &903 + organization: *870 + previous_marketplace_purchase: &906 title: Marketplace Purchase type: object properties: @@ -166764,7 +167010,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *868 + repository: *871 sender: *4 required: - action @@ -166844,10 +167090,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *865 - installation: *866 - marketplace_purchase: *902 - organization: *867 + enterprise: *868 + installation: *869 + marketplace_purchase: *905 + organization: *870 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -166930,7 +167176,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *868 + repository: *871 sender: *4 required: - action @@ -167012,10 +167258,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *865 - installation: *866 - marketplace_purchase: *902 - organization: *867 + enterprise: *868 + installation: *869 + marketplace_purchase: *905 + organization: *870 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -167097,7 +167343,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *868 + repository: *871 sender: *4 required: - action @@ -167178,8 +167424,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 marketplace_purchase: title: Marketplace Purchase type: object @@ -167261,9 +167507,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *867 - previous_marketplace_purchase: *903 - repository: *868 + organization: *870 + previous_marketplace_purchase: *906 + repository: *871 sender: *4 required: - action @@ -167343,12 +167589,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *865 - installation: *866 - marketplace_purchase: *902 - organization: *867 - previous_marketplace_purchase: *903 - repository: *868 + enterprise: *868 + installation: *869 + marketplace_purchase: *905 + organization: *870 + previous_marketplace_purchase: *906 + repository: *871 sender: *4 required: - action @@ -167450,11 +167696,11 @@ x-webhooks: type: string required: - to - enterprise: *865 - installation: *866 - member: *894 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + member: *897 + organization: *870 + repository: *871 sender: *4 required: - action @@ -167554,11 +167800,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *865 - installation: *866 - member: *894 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + member: *897 + organization: *870 + repository: *871 sender: *4 required: - action @@ -167637,11 +167883,11 @@ x-webhooks: type: string enum: - removed - enterprise: *865 - installation: *866 - member: *894 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + member: *897 + organization: *870 + repository: *871 sender: *4 required: - action @@ -167719,11 +167965,11 @@ x-webhooks: type: string enum: - added - enterprise: *865 - installation: *866 - member: *894 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + member: *897 + organization: *870 + repository: *871 scope: description: The scope of the membership. Currently, can only be `team`. @@ -167799,7 +168045,7 @@ x-webhooks: required: - login - id - team: &904 + team: &907 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -168022,11 +168268,11 @@ x-webhooks: type: string enum: - removed - enterprise: *865 - installation: *866 - member: *894 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + member: *897 + organization: *870 + repository: *871 scope: description: The scope of the membership. Currently, can only be `team`. @@ -168103,7 +168349,7 @@ x-webhooks: required: - login - id - team: *904 + team: *907 required: - action - scope @@ -168185,8 +168431,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *866 - merge_group: &906 + installation: *869 + merge_group: &909 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -168205,15 +168451,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *905 + head_commit: *908 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168299,10 +168545,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *866 - merge_group: *906 - organization: *867 - repository: *868 + installation: *869 + merge_group: *909 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168375,7 +168621,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 + enterprise: *868 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -168484,16 +168730,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *866 - organization: *867 + installation: *869 + organization: *870 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *907 - required: *908 + properties: *910 + required: *911 nullable: true sender: *4 required: @@ -168574,11 +168820,11 @@ x-webhooks: type: string enum: - closed - enterprise: *865 - installation: *866 - milestone: *899 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + milestone: *902 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168657,9 +168903,9 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - milestone: &909 + enterprise: *868 + installation: *869 + milestone: &912 title: Milestone description: A collection of related issues and pull requests. type: object @@ -168796,8 +169042,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168876,11 +169122,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - milestone: *899 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + milestone: *902 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168990,11 +169236,11 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - milestone: *899 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + milestone: *902 + organization: *870 + repository: *871 sender: *4 required: - action @@ -169074,11 +169320,11 @@ x-webhooks: type: string enum: - opened - enterprise: *865 - installation: *866 - milestone: *909 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + milestone: *912 + organization: *870 + repository: *871 sender: *4 required: - action @@ -169157,11 +169403,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *894 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + blocked_user: *897 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -169240,11 +169486,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *894 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + blocked_user: *897 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -169319,8 +169565,8 @@ x-webhooks: type: string enum: - created - definition: *151 - enterprise: *865 + definition: *153 + enterprise: *868 sender: *4 required: - action @@ -169400,8 +169646,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 sender: *4 required: - action @@ -169473,9 +169719,9 @@ x-webhooks: type: string enum: - updated - definition: *151 - enterprise: *865 - installation: *866 + definition: *153 + enterprise: *868 + installation: *869 sender: *4 required: - action @@ -169547,18 +169793,18 @@ x-webhooks: type: string enum: - updated - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 new_property_values: type: array description: The new custom property values. - items: *156 + items: *158 old_property_values: type: array description: The old custom property values. - items: *156 + items: *158 required: - action - organization @@ -169637,9 +169883,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - membership: &910 + enterprise: *868 + installation: *869 + membership: &913 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -169746,8 +169992,8 @@ x-webhooks: - role - organization_url - user - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -169825,11 +170071,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *865 - installation: *866 - membership: *910 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + membership: *913 + organization: *870 + repository: *871 sender: *4 required: - action @@ -169908,8 +170154,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -170025,10 +170271,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 - user: *894 + user: *897 required: - action - invitation @@ -170106,11 +170352,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *865 - installation: *866 - membership: *910 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + membership: *913 + organization: *870 + repository: *871 sender: *4 required: - action @@ -170197,11 +170443,11 @@ x-webhooks: properties: from: type: string - enterprise: *865 - installation: *866 - membership: *910 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + membership: *913 + organization: *870 + repository: *871 sender: *4 required: - action @@ -170279,9 +170525,9 @@ x-webhooks: type: string enum: - published - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 package: description: Information about the package. type: object @@ -170780,7 +171026,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &911 + items: &914 title: Ruby Gems metadata type: object properties: @@ -170875,7 +171121,7 @@ x-webhooks: - owner - package_version - registry - repository: *868 + repository: *871 sender: *4 required: - action @@ -170952,9 +171198,9 @@ x-webhooks: type: string enum: - updated - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 package: description: Information about the package. type: object @@ -171307,7 +171553,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *911 + items: *914 source_url: type: string format: uri @@ -171377,7 +171623,7 @@ x-webhooks: - owner - package_version - registry - repository: *868 + repository: *871 sender: *4 required: - action @@ -171553,12 +171799,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *865 + enterprise: *868 id: type: integer - installation: *866 - organization: *867 - repository: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - id @@ -171635,7 +171881,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &912 + personal_access_token_request: &915 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -171781,10 +172027,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *865 - organization: *867 + enterprise: *868 + organization: *870 sender: *4 - installation: *866 + installation: *869 required: - action - personal_access_token_request @@ -171861,11 +172107,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *912 - enterprise: *865 - organization: *867 + personal_access_token_request: *915 + enterprise: *868 + organization: *870 sender: *4 - installation: *866 + installation: *869 required: - action - personal_access_token_request @@ -171941,11 +172187,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *912 - enterprise: *865 - organization: *867 + personal_access_token_request: *915 + enterprise: *868 + organization: *870 sender: *4 - installation: *866 + installation: *869 required: - action - personal_access_token_request @@ -172020,11 +172266,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *912 - organization: *867 - enterprise: *865 + personal_access_token_request: *915 + organization: *870 + enterprise: *868 sender: *4 - installation: *866 + installation: *869 required: - action - personal_access_token_request @@ -172129,7 +172375,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *913 + last_response: *916 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -172161,8 +172407,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 zen: description: Random string of GitHub zen. @@ -172407,10 +172653,10 @@ x-webhooks: - from required: - note - enterprise: *865 - installation: *866 - organization: *867 - project_card: &914 + enterprise: *868 + installation: *869 + organization: *870 + project_card: &917 title: Project Card type: object properties: @@ -172529,7 +172775,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *868 + repository: *871 sender: *4 required: - action @@ -172610,11 +172856,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - project_card: *914 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project_card: *917 + repository: *871 sender: *4 required: - action @@ -172694,9 +172940,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 project_card: title: Project Card type: object @@ -172824,8 +173070,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *907 - required: *908 + properties: *910 + required: *911 nullable: true sender: *4 required: @@ -172919,11 +173165,11 @@ x-webhooks: - from required: - note - enterprise: *865 - installation: *866 - organization: *867 - project_card: *914 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project_card: *917 + repository: *871 sender: *4 required: - action @@ -173017,9 +173263,9 @@ x-webhooks: - from required: - column_id - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 project_card: allOf: - title: Project Card @@ -173209,7 +173455,7 @@ x-webhooks: type: string required: - after_id - repository: *868 + repository: *871 sender: *4 required: - action @@ -173289,10 +173535,10 @@ x-webhooks: type: string enum: - closed - enterprise: *865 - installation: *866 - organization: *867 - project: &916 + enterprise: *868 + installation: *869 + organization: *870 + project: &919 title: Project type: object properties: @@ -173416,7 +173662,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *868 + repository: *871 sender: *4 required: - action @@ -173496,10 +173742,10 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - project_column: &915 + enterprise: *868 + installation: *869 + organization: *870 + project_column: &918 title: Project Column type: object properties: @@ -173538,7 +173784,7 @@ x-webhooks: - name - created_at - updated_at - repository: *868 + repository: *871 sender: *4 required: - action @@ -173617,18 +173863,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - project_column: *915 + enterprise: *868 + installation: *869 + organization: *870 + project_column: *918 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *907 - required: *908 + properties: *910 + required: *911 nullable: true sender: *4 required: @@ -173718,11 +173964,11 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - organization: *867 - project_column: *915 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project_column: *918 + repository: *871 sender: *4 required: - action @@ -173802,11 +174048,11 @@ x-webhooks: type: string enum: - moved - enterprise: *865 - installation: *866 - organization: *867 - project_column: *915 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project_column: *918 + repository: *871 sender: *4 required: - action @@ -173886,11 +174132,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - project: *916 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project: *919 + repository: *871 sender: *4 required: - action @@ -173970,18 +174216,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - project: *916 + enterprise: *868 + installation: *869 + organization: *870 + project: *919 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *907 - required: *908 + properties: *910 + required: *911 nullable: true sender: *4 required: @@ -174083,11 +174329,11 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - organization: *867 - project: *916 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project: *919 + repository: *871 sender: *4 required: - action @@ -174166,11 +174412,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *865 - installation: *866 - organization: *867 - project: *916 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project: *919 + repository: *871 sender: *4 required: - action @@ -174251,9 +174497,9 @@ x-webhooks: type: string enum: - closed - installation: *866 - organization: *867 - projects_v2: *413 + installation: *869 + organization: *870 + projects_v2: *416 sender: *4 required: - action @@ -174334,9 +174580,9 @@ x-webhooks: type: string enum: - created - installation: *866 - organization: *867 - projects_v2: *413 + installation: *869 + organization: *870 + projects_v2: *416 sender: *4 required: - action @@ -174417,9 +174663,9 @@ x-webhooks: type: string enum: - deleted - installation: *866 - organization: *867 - projects_v2: *413 + installation: *869 + organization: *870 + projects_v2: *416 sender: *4 required: - action @@ -174536,9 +174782,9 @@ x-webhooks: type: string to: type: string - installation: *866 - organization: *867 - projects_v2: *413 + installation: *869 + organization: *870 + projects_v2: *416 sender: *4 required: - action @@ -174621,7 +174867,7 @@ x-webhooks: type: string enum: - archived - changes: &920 + changes: &923 type: object properties: archived_at: @@ -174635,9 +174881,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *866 - organization: *867 - projects_v2_item: &917 + installation: *869 + organization: *870 + projects_v2_item: &920 title: Projects v2 Item description: An item belonging to a project type: object @@ -174655,7 +174901,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *420 + content_type: *423 creator: *4 created_at: type: string @@ -174772,9 +175018,9 @@ x-webhooks: nullable: true to: type: string - installation: *866 - organization: *867 - projects_v2_item: *917 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -174856,9 +175102,9 @@ x-webhooks: type: string enum: - created - installation: *866 - organization: *867 - projects_v2_item: *917 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -174939,9 +175185,9 @@ x-webhooks: type: string enum: - deleted - installation: *866 - organization: *867 - projects_v2_item: *917 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -175047,7 +175293,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &918 + - &921 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -175069,7 +175315,7 @@ x-webhooks: required: - id - name - - &919 + - &922 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -175103,8 +175349,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *918 - - *919 + - *921 + - *922 required: - field_value - type: object @@ -175120,9 +175366,9 @@ x-webhooks: nullable: true required: - body - installation: *866 - organization: *867 - projects_v2_item: *917 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -175217,9 +175463,9 @@ x-webhooks: to: type: string nullable: true - installation: *866 - organization: *867 - projects_v2_item: *917 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -175302,10 +175548,10 @@ x-webhooks: type: string enum: - restored - changes: *920 - installation: *866 - organization: *867 - projects_v2_item: *917 + changes: *923 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -175387,9 +175633,9 @@ x-webhooks: type: string enum: - reopened - installation: *866 - organization: *867 - projects_v2: *413 + installation: *869 + organization: *870 + projects_v2: *416 sender: *4 required: - action @@ -175470,14 +175716,14 @@ x-webhooks: type: string enum: - created - installation: *866 - organization: *867 - projects_v2_status_update: &923 + installation: *869 + organization: *870 + projects_v2_status_update: &926 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *921 - required: *922 + properties: *924 + required: *925 sender: *4 required: - action @@ -175558,9 +175804,9 @@ x-webhooks: type: string enum: - deleted - installation: *866 - organization: *867 - projects_v2_status_update: *923 + installation: *869 + organization: *870 + projects_v2_status_update: *926 sender: *4 required: - action @@ -175696,9 +175942,9 @@ x-webhooks: type: string format: date nullable: true - installation: *866 - organization: *867 - projects_v2_status_update: *923 + installation: *869 + organization: *870 + projects_v2_status_update: *926 sender: *4 required: - action @@ -175769,10 +176015,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - repository @@ -175849,13 +176095,13 @@ x-webhooks: type: string enum: - assigned - assignee: *894 - enterprise: *865 - installation: *866 - number: &924 + assignee: *897 + enterprise: *868 + installation: *869 + number: &927 description: The pull request number. type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -178168,7 +178414,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -178250,11 +178496,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -180562,7 +180808,7 @@ x-webhooks: - draft reason: type: string - repository: *868 + repository: *871 sender: *4 required: - action @@ -180644,11 +180890,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -182956,7 +183202,7 @@ x-webhooks: - draft reason: type: string - repository: *868 + repository: *871 sender: *4 required: - action @@ -183038,13 +183284,13 @@ x-webhooks: type: string enum: - closed - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: &925 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: &928 allOf: - - *712 + - *715 - type: object properties: allow_auto_merge: @@ -183106,7 +183352,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *868 + repository: *871 sender: *4 required: - action @@ -183187,12 +183433,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: *925 - repository: *868 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: *928 + repository: *871 sender: *4 required: - action @@ -183272,11 +183518,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *865 - milestone: *694 - number: *924 - organization: *867 - pull_request: &926 + enterprise: *868 + milestone: *697 + number: *927 + organization: *870 + pull_request: &929 title: Pull Request type: object properties: @@ -185569,7 +185815,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -185648,11 +185894,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -187964,7 +188210,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *868 + repository: *871 sender: *4 required: - action @@ -188088,12 +188334,12 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: *925 - repository: *868 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: *928 + repository: *871 sender: *4 required: - action @@ -188173,11 +188419,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -190474,7 +190720,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -190554,11 +190800,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *865 - installation: *866 - label: *888 - number: *924 - organization: *867 + enterprise: *868 + installation: *869 + label: *891 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -192870,7 +193116,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -192951,10 +193197,10 @@ x-webhooks: type: string enum: - locked - enterprise: *865 - installation: *866 - number: *924 - organization: *867 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -195264,7 +195510,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -195344,12 +195590,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *865 - milestone: *694 - number: *924 - organization: *867 - pull_request: *926 - repository: *868 + enterprise: *868 + milestone: *697 + number: *927 + organization: *870 + pull_request: *929 + repository: *871 sender: *4 required: - action @@ -195428,12 +195674,12 @@ x-webhooks: type: string enum: - opened - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: *925 - repository: *868 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: *928 + repository: *871 sender: *4 required: - action @@ -195514,12 +195760,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: *925 - repository: *868 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: *928 + repository: *871 sender: *4 required: - action @@ -195599,12 +195845,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: *925 - repository: *868 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: *928 + repository: *871 sender: *4 required: - action @@ -195970,9 +196216,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: type: object properties: @@ -198172,7 +198418,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *868 + repository: *871 sender: *4 required: - action @@ -198252,7 +198498,7 @@ x-webhooks: type: string enum: - deleted - comment: &928 + comment: &931 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -198537,9 +198783,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: type: object properties: @@ -200727,7 +200973,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *868 + repository: *871 sender: *4 required: - action @@ -200807,11 +201053,11 @@ x-webhooks: type: string enum: - edited - changes: *927 - comment: *928 - enterprise: *865 - installation: *866 - organization: *867 + changes: *930 + comment: *931 + enterprise: *868 + installation: *869 + organization: *870 pull_request: type: object properties: @@ -203002,7 +203248,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *868 + repository: *871 sender: *4 required: - action @@ -203083,9 +203329,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: title: Simple Pull Request type: object @@ -205288,7 +205534,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *868 + repository: *871 review: description: The review that was affected. type: object @@ -205535,9 +205781,9 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: title: Simple Pull Request type: object @@ -207591,8 +207837,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *868 - review: &929 + repository: *871 + review: &932 description: The review that was affected. type: object properties: @@ -207825,12 +208071,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: description: The pull request number. type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -210143,7 +210389,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 requested_reviewer: title: User type: object @@ -210227,12 +210473,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: description: The pull request number. type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -212552,7 +212798,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 requested_team: title: Team description: Groups of organization members that gives permissions @@ -212744,12 +212990,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: description: The pull request number. type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -215064,7 +215310,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 requested_reviewer: title: User type: object @@ -215149,12 +215395,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: description: The pull request number. type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -217460,7 +217706,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 requested_team: title: Team description: Groups of organization members that gives permissions @@ -217641,9 +217887,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: title: Simple Pull Request type: object @@ -219848,8 +220094,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *868 - review: *929 + repository: *871 + review: *932 sender: *4 required: - action @@ -219929,9 +220175,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: title: Simple Pull Request type: object @@ -222031,7 +222277,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *868 + repository: *871 sender: *4 thread: type: object @@ -222418,9 +222664,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: title: Simple Pull Request type: object @@ -224506,7 +224752,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *868 + repository: *871 sender: *4 thread: type: object @@ -224896,10 +225142,10 @@ x-webhooks: type: string before: type: string - enterprise: *865 - installation: *866 - number: *924 - organization: *867 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -227200,7 +227446,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -227282,11 +227528,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *930 - enterprise: *865 - installation: *866 - number: *924 - organization: *867 + assignee: *933 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -229599,7 +229845,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -229678,11 +229924,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *865 - installation: *866 - label: *888 - number: *924 - organization: *867 + enterprise: *868 + installation: *869 + label: *891 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -231985,7 +232231,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -232066,10 +232312,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *865 - installation: *866 - number: *924 - organization: *867 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -234364,7 +234610,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -234564,7 +234810,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *865 + enterprise: *868 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -234656,8 +234902,8 @@ x-webhooks: - url - author - committer - installation: *866 - organization: *867 + installation: *869 + organization: *870 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -235247,9 +235493,9 @@ x-webhooks: type: string enum: - published - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 registry_package: type: object properties: @@ -235695,7 +235941,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *911 + items: *914 summary: type: string tag_name: @@ -235749,7 +235995,7 @@ x-webhooks: - owner - package_version - registry - repository: *868 + repository: *871 sender: *4 required: - action @@ -235827,9 +236073,9 @@ x-webhooks: type: string enum: - updated - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 registry_package: type: object properties: @@ -236137,7 +236383,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *911 + items: *914 summary: type: string tag_name: @@ -236186,7 +236432,7 @@ x-webhooks: - owner - package_version - registry - repository: *868 + repository: *871 sender: *4 required: - action @@ -236263,10 +236509,10 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - release: &931 + enterprise: *868 + installation: *869 + organization: *870 + release: &934 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -236584,7 +236830,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *868 + repository: *871 sender: *4 required: - action @@ -236661,11 +236907,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - release: *931 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + release: *934 + repository: *871 sender: *4 required: - action @@ -236782,11 +237028,11 @@ x-webhooks: type: boolean required: - to - enterprise: *865 - installation: *866 - organization: *867 - release: *931 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + release: *934 + repository: *871 sender: *4 required: - action @@ -236864,9 +237110,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -237188,7 +237434,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *868 + repository: *871 sender: *4 required: - action @@ -237264,10 +237510,10 @@ x-webhooks: type: string enum: - published - enterprise: *865 - installation: *866 - organization: *867 - release: &932 + enterprise: *868 + installation: *869 + organization: *870 + release: &935 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -237586,7 +237832,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *868 + repository: *871 sender: *4 required: - action @@ -237662,11 +237908,11 @@ x-webhooks: type: string enum: - released - enterprise: *865 - installation: *866 - organization: *867 - release: *931 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + release: *934 + repository: *871 sender: *4 required: - action @@ -237742,11 +237988,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *865 - installation: *866 - organization: *867 - release: *932 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + release: *935 + repository: *871 sender: *4 required: - action @@ -237822,11 +238068,11 @@ x-webhooks: type: string enum: - published - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - repository_advisory: *764 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + repository_advisory: *767 sender: *4 required: - action @@ -237902,11 +238148,11 @@ x-webhooks: type: string enum: - reported - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - repository_advisory: *764 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + repository_advisory: *767 sender: *4 required: - action @@ -237982,10 +238228,10 @@ x-webhooks: type: string enum: - archived - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238062,10 +238308,10 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238143,10 +238389,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238230,10 +238476,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238345,10 +238591,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238420,10 +238666,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 status: type: string @@ -238504,10 +238750,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238584,10 +238830,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238681,10 +238927,10 @@ x-webhooks: - name required: - repository - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238764,11 +239010,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - repository_ruleset: *191 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + repository_ruleset: *193 sender: *4 required: - action @@ -238846,11 +239092,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - repository_ruleset: *191 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + repository_ruleset: *193 sender: *4 required: - action @@ -238928,11 +239174,11 @@ x-webhooks: type: string enum: - edited - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - repository_ruleset: *191 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + repository_ruleset: *193 changes: type: object properties: @@ -238951,16 +239197,16 @@ x-webhooks: properties: added: type: array - items: *162 + items: *164 deleted: type: array - items: *162 + items: *164 updated: type: array items: type: object properties: - condition: *162 + condition: *164 changes: type: object properties: @@ -238993,16 +239239,16 @@ x-webhooks: properties: added: type: array - items: *732 + items: *735 deleted: type: array - items: *732 + items: *735 updated: type: array items: type: object properties: - rule: *732 + rule: *735 changes: type: object properties: @@ -239236,10 +239482,10 @@ x-webhooks: - from required: - owner - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -239317,10 +239563,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -239398,7 +239644,7 @@ x-webhooks: type: string enum: - create - alert: &933 + alert: &936 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -239520,10 +239766,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -239729,10 +239975,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -239810,11 +240056,11 @@ x-webhooks: type: string enum: - reopen - alert: *933 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *936 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240013,10 +240259,10 @@ x-webhooks: enum: - fixed - open - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240094,11 +240340,11 @@ x-webhooks: type: string enum: - assigned - alert: &934 + alert: &937 type: object properties: - number: *128 - created_at: *135 + number: *130 + created_at: *137 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -240106,8 +240352,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *133 - html_url: *134 + url: *135 + html_url: *136 locations_url: type: string format: uri @@ -240213,10 +240459,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240294,11 +240540,11 @@ x-webhooks: type: string enum: - created - alert: *934 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *937 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240379,11 +240625,11 @@ x-webhooks: type: string enum: - created - alert: *934 - installation: *866 - location: *935 - organization: *867 - repository: *868 + alert: *937 + installation: *869 + location: *938 + organization: *870 + repository: *871 sender: *4 required: - location @@ -240621,11 +240867,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *934 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *937 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240703,11 +240949,11 @@ x-webhooks: type: string enum: - reopened - alert: *934 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *937 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240785,11 +241031,11 @@ x-webhooks: type: string enum: - resolved - alert: *934 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *937 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240867,12 +241113,12 @@ x-webhooks: type: string enum: - unassigned - alert: *934 + alert: *937 assignee: *4 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240950,11 +241196,11 @@ x-webhooks: type: string enum: - validated - alert: *934 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *937 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -241080,10 +241326,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *868 - enterprise: *865 - installation: *866 - organization: *867 + repository: *871 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 required: - action @@ -241161,11 +241407,11 @@ x-webhooks: type: string enum: - published - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - security_advisory: &936 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + security_advisory: &939 description: The details of the security advisory, including summary, description, and severity. type: object @@ -241181,7 +241427,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *130 + cvss_severities: *132 cwes: type: array items: @@ -241348,11 +241594,11 @@ x-webhooks: type: string enum: - updated - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - security_advisory: *936 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + security_advisory: *939 sender: *4 required: - action @@ -241425,10 +241671,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -241445,7 +241691,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *130 + cvss_severities: *132 cwes: type: array items: @@ -241612,11 +241858,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *430 - enterprise: *865 - installation: *866 - organization: *867 - repository: *473 + security_and_analysis: *433 + enterprise: *868 + installation: *869 + organization: *870 + repository: *476 sender: *4 required: - changes @@ -241694,12 +241940,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: &937 + sponsorship: &940 type: object properties: created_at: @@ -242000,12 +242246,12 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: *937 + sponsorship: *940 required: - action - sponsorship @@ -242093,12 +242339,12 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: *937 + sponsorship: *940 required: - action - changes @@ -242175,17 +242421,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &938 + effective_date: &941 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: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: *937 + sponsorship: *940 required: - action - sponsorship @@ -242259,7 +242505,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &939 + changes: &942 type: object properties: tier: @@ -242303,13 +242549,13 @@ x-webhooks: - from required: - tier - effective_date: *938 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + effective_date: *941 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: *937 + sponsorship: *940 required: - action - changes @@ -242386,13 +242632,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *939 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + changes: *942 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: *937 + sponsorship: *940 required: - action - changes @@ -242466,10 +242712,10 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242552,10 +242798,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242975,15 +243221,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *865 + enterprise: *868 id: description: The unique identifier of the status. type: integer - installation: *866 + installation: *869 name: type: string - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 sha: description: The Commit SHA. @@ -243092,15 +243338,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *225 - parent_issue_repo: *78 + parent_issue: *227 + parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *225 - installation: *866 - organization: *867 - repository: *868 + sub_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -243184,15 +243430,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *225 - parent_issue_repo: *78 + parent_issue: *227 + parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *225 - installation: *866 - organization: *867 - repository: *868 + sub_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -243276,15 +243522,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *225 - sub_issue_repo: *78 + sub_issue: *227 + sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *225 - installation: *866 - organization: *867 - repository: *868 + parent_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -243368,15 +243614,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *225 - sub_issue_repo: *78 + sub_issue: *227 + sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *225 - installation: *866 - organization: *867 - repository: *868 + parent_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -243453,12 +243699,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - team: &940 + team: &943 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -243681,9 +243927,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 repository: title: Repository description: A git repository @@ -244141,7 +244387,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *940 + team: *943 required: - action - team @@ -244217,9 +244463,9 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 repository: title: Repository description: A git repository @@ -244677,7 +244923,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *940 + team: *943 required: - action - team @@ -244754,9 +245000,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 repository: title: Repository description: A git repository @@ -245214,7 +245460,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *940 + team: *943 required: - action - team @@ -245358,9 +245604,9 @@ x-webhooks: - from required: - permissions - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 repository: title: Repository description: A git repository @@ -245818,7 +246064,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *940 + team: *943 required: - action - changes @@ -245896,9 +246142,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 repository: title: Repository description: A git repository @@ -246356,7 +246602,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *940 + team: *943 required: - action - team @@ -246432,10 +246678,10 @@ x-webhooks: type: string enum: - started - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -246508,16 +246754,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *865 + enterprise: *868 inputs: type: object nullable: true additionalProperties: true - installation: *866 - organization: *867 + installation: *869 + organization: *870 ref: type: string - repository: *868 + repository: *871 sender: *4 workflow: type: string @@ -246599,10 +246845,10 @@ x-webhooks: type: string enum: - completed - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 workflow_job: allOf: @@ -246839,7 +247085,7 @@ x-webhooks: type: string required: - conclusion - deployment: *612 + deployment: *615 required: - action - repository @@ -246918,10 +247164,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 workflow_job: allOf: @@ -247181,7 +247427,7 @@ x-webhooks: required: - status - steps - deployment: *612 + deployment: *615 required: - action - repository @@ -247260,10 +247506,10 @@ x-webhooks: type: string enum: - queued - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 workflow_job: type: object @@ -247398,7 +247644,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *612 + deployment: *615 required: - action - repository @@ -247477,10 +247723,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 workflow_job: type: object @@ -247616,7 +247862,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *612 + deployment: *615 required: - action - repository @@ -247696,12 +247942,12 @@ x-webhooks: type: string enum: - completed - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - workflow: *884 + workflow: *887 workflow_run: title: Workflow Run type: object @@ -248700,12 +248946,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - workflow: *884 + workflow: *887 workflow_run: title: Workflow Run type: object @@ -249689,12 +249935,12 @@ x-webhooks: type: string enum: - requested - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - workflow: *884 + workflow: *887 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json index 3260a0bef0..2c7f809cfe 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -20632,6 +20632,345 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/actions/permissions": { "get": { "summary": "Get GitHub Actions permissions for an enterprise", @@ -119679,6 +120018,340 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", diff --git a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml index 3f2d33cec0..d4fe93c084 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml @@ -436,7 +436,7 @@ paths: The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs. schema: type: string - - &108 + - &110 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For @@ -445,7 +445,7 @@ paths: required: false schema: type: string - - &109 + - &111 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For @@ -454,7 +454,7 @@ paths: required: false schema: type: string - - &110 + - &112 name: direction description: The direction to sort the results by. in: query @@ -657,7 +657,7 @@ paths: - vulnerable_version_range - first_patched_version - vulnerable_functions - cvss_severities: &130 + cvss_severities: &132 type: object nullable: true properties: @@ -697,7 +697,7 @@ paths: required: - vector_string - score - epss: &131 + epss: &133 type: object nullable: true readOnly: true @@ -835,7 +835,7 @@ paths: - subscriptions_url - type - url - type: &451 + type: &454 type: string description: The type of credit the user is receiving. enum: @@ -967,7 +967,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &264 + schema: &266 title: Validation Error Simple description: Validation Error Simple type: object @@ -1000,7 +1000,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &766 + - &769 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1118,7 +1118,7 @@ paths: GitHub. type: object nullable: true - properties: &220 + properties: &222 id: description: Unique identifier of the GitHub app example: 37 @@ -1140,7 +1140,7 @@ paths: title: Enterprise description: An enterprise on GitHub. type: object - properties: &139 + properties: &141 description: description: A short description of the enterprise. type: string @@ -1182,7 +1182,7 @@ paths: avatar_url: type: string format: uri - required: &140 + required: &142 - id - node_id - name @@ -1251,7 +1251,7 @@ paths: about itself. example: 5 type: integer - required: &221 + required: &223 - id - node_id - owner @@ -1556,7 +1556,7 @@ paths: schema: type: integer default: 30 - - &355 + - &358 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 @@ -1572,7 +1572,7 @@ paths: application/json: schema: type: array - items: &356 + items: &359 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1652,7 +1652,7 @@ paths: - installation_id - repository_id examples: - default: &357 + default: &360 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1684,7 +1684,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &776 + schema: &779 title: Scim Error description: Scim Error type: object @@ -1711,7 +1711,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &263 + schema: &265 title: Validation Error description: Validation Error type: object @@ -1780,7 +1780,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &361 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1894,7 +1894,7 @@ paths: - request - response examples: - default: &359 + default: &362 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2095,7 +2095,7 @@ paths: parameters: - *17 - *19 - - &232 + - &234 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2728,7 +2728,7 @@ paths: application/json: schema: *22 examples: - default: &88 + default: &90 value: id: 1 account: @@ -2878,11 +2878,11 @@ paths: - selected repositories: type: array - items: &78 + items: &80 title: Repository description: A repository on GitHub. type: object - properties: &428 + properties: &431 id: description: Unique identifier of the repository example: 42 @@ -2902,7 +2902,7 @@ paths: title: License Simple description: License Simple type: object - properties: &228 + properties: &230 key: type: string example: mit @@ -2924,7 +2924,7 @@ paths: html_url: type: string format: uri - required: &229 + required: &231 - key - name - url @@ -3323,7 +3323,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &429 + required: &432 - archive_url - assignees_url - blobs_url @@ -7631,7 +7631,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &267 type: object properties: total_active_caches_count: @@ -7646,7 +7646,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &266 + default: &268 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -7839,7 +7839,7 @@ paths: - public_ip_enabled - platform examples: - default: &267 + default: &269 value: total_count: 2 runners: @@ -8134,7 +8134,7 @@ paths: application/json: schema: *49 examples: - default: &268 + default: &270 value: id: 1 platform: linux-x64 @@ -8274,7 +8274,7 @@ paths: application/json: schema: *52 examples: - default: &269 + default: &271 value: version: 1.0.0 size_gb: 75 @@ -8438,7 +8438,7 @@ paths: description: Response content: application/json: - schema: &270 + schema: &272 type: object properties: public_ips: @@ -8463,7 +8463,7 @@ paths: required: - public_ips examples: - default: &271 + default: &273 value: public_ips: current_usage: 17 @@ -8503,7 +8503,7 @@ paths: type: array items: *56 examples: - default: &272 + default: &274 value: id: 4-core cpu_cores: 4 @@ -8730,6 +8730,147 @@ paths: githubCloudOnly: true category: actions subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - *41 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &59 + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included + in the OIDC token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization + or enterprise level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *41 + requestBody: + required: true + content: + application/json: + schema: &275 + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC + token + required: + - custom_property_name + examples: + default: &60 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *59 + examples: + default: *60 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *41 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/actions/permissions": get: summary: Get GitHub Actions permissions for an enterprise @@ -8753,7 +8894,7 @@ paths: schema: type: object properties: - enabled_organizations: &59 + enabled_organizations: &61 type: string description: The policy that controls the organizations in the enterprise that are allowed to run GitHub Actions. @@ -8766,7 +8907,7 @@ paths: description: The API URL to use to get or set the selected organizations that are allowed to run GitHub Actions, when `enabled_organizations` is set to `selected`. - allowed_actions: &60 + allowed_actions: &62 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -8774,12 +8915,12 @@ paths: - all - local_only - selected - selected_actions_url: &275 + selected_actions_url: &278 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` is set to `selected`. - sha_pinning_required: &61 + sha_pinning_required: &63 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -8821,9 +8962,9 @@ paths: schema: type: object properties: - enabled_organizations: *59 - allowed_actions: *60 - sha_pinning_required: *61 + enabled_organizations: *61 + allowed_actions: *62 + sha_pinning_required: *63 required: - enabled_organizations examples: @@ -8854,7 +8995,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &277 + schema: &280 type: object properties: days: @@ -8872,7 +9013,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &777 + '401': &780 description: Authorization failure '404': *6 x-github: @@ -8900,7 +9041,7 @@ paths: required: true content: application/json: - schema: &278 + schema: &281 type: object properties: days: @@ -8935,7 +9076,7 @@ paths: description: Response content: application/json: - schema: &62 + schema: &64 type: object properties: approval_policy: @@ -8949,7 +9090,7 @@ paths: required: - approval_policy examples: - default: &279 + default: &282 value: approval_policy: first_time_contributors '404': *6 @@ -8978,7 +9119,7 @@ paths: required: true content: application/json: - schema: *62 + schema: *64 examples: default: summary: Set approval policy to first time contributors @@ -9007,7 +9148,7 @@ paths: description: Response content: application/json: - schema: &280 + schema: &283 type: object required: - run_workflows_from_fork_pull_requests @@ -9033,7 +9174,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &63 + default: &65 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -9061,7 +9202,7 @@ paths: required: true content: application/json: - schema: &281 + schema: &284 type: object required: - run_workflows_from_fork_pull_requests @@ -9084,7 +9225,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *63 + default: *65 responses: '204': description: Empty response for successful settings update @@ -9124,11 +9265,11 @@ paths: type: number organizations: type: array - items: &73 + items: &75 title: Organization Simple description: A GitHub organization. type: object - properties: &121 + properties: &123 login: type: string example: github @@ -9169,7 +9310,7 @@ paths: type: string example: A great organization nullable: true - required: &122 + required: &124 - login - url - id @@ -9186,7 +9327,7 @@ paths: - total_count - organizations examples: - default: &74 + default: &76 value: total_count: 1 organizations: @@ -9265,7 +9406,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *41 - - &64 + - &66 name: org_id description: The unique identifier of the organization. in: path @@ -9294,7 +9435,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *41 - - *64 + - *66 responses: '204': description: Response @@ -9323,7 +9464,7 @@ paths: description: Response content: application/json: - schema: &65 + schema: &67 type: object properties: github_owned_allowed: @@ -9344,7 +9485,7 @@ paths: items: type: string examples: - default: &66 + default: &68 value: github_owned_allowed: true verified_allowed: false @@ -9377,9 +9518,9 @@ paths: required: true content: application/json: - schema: *65 + schema: *67 examples: - selected_actions: *66 + selected_actions: *68 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9484,17 +9625,17 @@ paths: description: Success response content: application/json: - schema: &284 + schema: &287 type: object properties: - default_workflow_permissions: &67 + default_workflow_permissions: &69 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &68 + can_approve_pull_request_reviews: &70 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -9502,7 +9643,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &69 + default: &71 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -9532,13 +9673,13 @@ paths: required: true content: application/json: - schema: &285 + schema: &288 type: object properties: - default_workflow_permissions: *67 - can_approve_pull_request_reviews: *68 + default_workflow_permissions: *69 + can_approve_pull_request_reviews: *70 examples: - default: *69 + default: *71 responses: '204': description: Success response @@ -9583,7 +9724,7 @@ paths: type: number runner_groups: type: array - items: &70 + items: &72 type: object properties: id: @@ -9762,9 +9903,9 @@ paths: description: Response content: application/json: - schema: *70 + schema: *72 examples: - default: &71 + default: &73 value: id: 2 name: octo-runner-group @@ -9799,7 +9940,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-enterprise parameters: - *41 - - &72 + - &74 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -9811,9 +9952,9 @@ paths: description: Response content: application/json: - schema: *70 + schema: *72 examples: - default: *71 + default: *73 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9833,7 +9974,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-enterprise parameters: - *41 - - *72 + - *74 requestBody: required: false content: @@ -9885,7 +10026,7 @@ paths: description: Response content: application/json: - schema: *70 + schema: *72 examples: default: value: @@ -9921,7 +10062,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-enterprise parameters: - *41 - - *72 + - *74 responses: '204': description: Response @@ -9945,7 +10086,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *72 + - *74 - *17 - *19 responses: @@ -9960,12 +10101,12 @@ paths: type: number organizations: type: array - items: *73 + items: *75 required: - total_count - organizations examples: - default: *74 + default: *76 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9985,7 +10126,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-organization-access-for-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *72 + - *74 requestBody: required: true content: @@ -10031,8 +10172,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *72 - - *64 + - *74 + - *66 responses: '204': description: Response @@ -10055,8 +10196,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-organization-access-to-a-self-hosted-runner-group-in-an-enterprise parameters: - *41 - - *72 - - *64 + - *74 + - *66 responses: '204': description: Response @@ -10080,7 +10221,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-enterprise parameters: - *41 - - *72 + - *74 - *17 - *19 responses: @@ -10095,7 +10236,7 @@ paths: type: number runners: type: array - items: &76 + items: &78 title: Self hosted runners description: A self hosted runner type: object @@ -10124,7 +10265,7 @@ paths: type: boolean labels: type: array - items: &80 + items: &82 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -10157,7 +10298,7 @@ paths: - total_count - runners examples: - default: &77 + default: &79 value: total_count: 2 runners: @@ -10217,7 +10358,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-enterprise parameters: - *41 - - *72 + - *74 requestBody: required: true content: @@ -10262,8 +10403,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-enterprise parameters: - *41 - - *72 - - &75 + - *74 + - &77 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -10292,8 +10433,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-enterprise parameters: - *41 - - *72 - - *75 + - *74 + - *77 responses: '204': description: Response @@ -10336,9 +10477,9 @@ paths: type: number runners: type: array - items: *76 + items: *78 examples: - default: *77 + default: *79 headers: Link: *47 x-github: @@ -10368,7 +10509,7 @@ paths: application/json: schema: type: array - items: &289 + items: &292 title: Runner Application description: Runner Application type: object @@ -10393,7 +10534,7 @@ paths: - download_url - filename examples: - default: &290 + default: &293 value: - os: osx architecture: x64 @@ -10477,7 +10618,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &291 + '201': &294 description: Response content: application/json: @@ -10487,7 +10628,7 @@ paths: - runner - encoded_jit_config properties: - runner: *76 + runner: *78 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -10516,7 +10657,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': &119 + '409': &121 description: Conflict content: application/json: @@ -10554,7 +10695,7 @@ paths: description: Response content: application/json: - schema: &79 + schema: &81 title: Authentication Token description: Authentication Token type: object @@ -10576,7 +10717,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *78 + items: *80 single_file: type: string example: config.yaml @@ -10592,7 +10733,7 @@ paths: - token - expires_at examples: - default: &292 + default: &295 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -10630,9 +10771,9 @@ paths: description: Response content: application/json: - schema: *79 + schema: *81 examples: - default: &293 + default: &296 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -10656,15 +10797,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 + - *77 responses: '200': description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: &294 + default: &297 value: id: 23 name: MBP @@ -10704,7 +10845,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-enterprise parameters: - *41 - - *75 + - *77 responses: '204': description: Response @@ -10729,9 +10870,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 + - *77 responses: - '200': &81 + '200': &83 description: Response content: application/json: @@ -10745,7 +10886,7 @@ paths: type: integer labels: type: array - items: *80 + items: *82 examples: default: value: @@ -10783,7 +10924,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 + - *77 requestBody: required: true content: @@ -10807,7 +10948,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -10830,7 +10971,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 + - *77 requestBody: required: true content: @@ -10855,7 +10996,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -10878,9 +11019,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 + - *77 responses: - '200': &295 + '200': &298 description: Response content: application/json: @@ -10894,7 +11035,7 @@ paths: type: integer labels: type: array - items: *80 + items: *82 examples: default: value: @@ -10935,8 +11076,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-enterprise parameters: - *41 - - *75 - - &296 + - *77 + - &299 name: name description: The name of a self-hosted runner's custom label. in: path @@ -10944,7 +11085,7 @@ paths: schema: type: string responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -10969,20 +11110,20 @@ paths: description: Response content: application/json: - schema: &86 + schema: &88 title: Announcement Banner description: Announcement at either the repository, organization, or enterprise level type: object properties: - announcement: &82 + announcement: &84 type: string description: The announcement text in GitHub Flavored Markdown. For more information about GitHub Flavored Markdown, see "[Basic writing and formatting syntax](https://docs.github.com/enterprise-cloud@latest//github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax)." example: Very **important** announcement about _something_. nullable: true - expires_at: &83 + expires_at: &85 type: string format: date-time description: 'The time at which the announcement expires. This @@ -10992,7 +11133,7 @@ paths: it to an empty string.' example: '"2021-01-01T00:00:00.000-07:00"' nullable: true - user_dismissible: &84 + user_dismissible: &86 type: boolean description: Whether an announcement can be dismissed by the user. example: false @@ -11003,7 +11144,7 @@ paths: - expires_at - user_dismissible examples: - default: &85 + default: &87 summary: Announcement banner value: announcement: Very **important** announcement about _something_. @@ -11027,18 +11168,18 @@ paths: required: true content: application/json: - schema: &303 + schema: &306 title: Enterprise Announcement description: Enterprise global announcement type: object properties: - announcement: *82 - expires_at: *83 - user_dismissible: *84 + announcement: *84 + expires_at: *85 + user_dismissible: *86 required: - announcement examples: - default: *85 + default: *87 parameters: - *41 responses: @@ -11046,9 +11187,9 @@ paths: description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *85 + default: *87 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -11144,7 +11285,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#get-repositories-belonging-to-an-enterprise-owned-organization parameters: - *41 - - &87 + - &89 name: org description: The organization name. The name is not case sensitive. in: path @@ -11161,7 +11302,7 @@ paths: application/json: schema: type: array - items: &89 + items: &91 title: Accessible Repository description: A repository that may be made accessible to a GitHub App. @@ -11212,7 +11353,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#list-github-apps-installed-on-an-enterprise-owned-organization parameters: - *41 - - *87 + - *89 - *17 - *19 responses: @@ -11307,7 +11448,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#install-a-github-app-on-an-enterprise-owned-organization parameters: - *41 - - *87 + - *89 responses: '200': description: A GitHub App installation that was installed previously. @@ -11315,14 +11456,14 @@ paths: application/json: schema: *22 examples: - default: *88 + default: *90 '201': description: A GitHub App installation. content: application/json: schema: *22 examples: - default: *88 + default: *90 requestBody: required: true content: @@ -11390,7 +11531,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#uninstall-a-github-app-from-an-enterprise-owned-organization parameters: - *41 - - *87 + - *89 - *23 responses: '204': @@ -11418,7 +11559,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#get-the-repositories-accessible-to-a-given-github-app-installation parameters: - *41 - - *87 + - *89 - *23 - *17 - *19 @@ -11430,7 +11571,7 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: default: value: @@ -11459,7 +11600,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#toggle-installation-repository-access-between-selected-and-all-repositories parameters: - *41 - - *87 + - *89 - *23 requestBody: required: true @@ -11499,7 +11640,7 @@ paths: application/json: schema: *22 examples: - default: *88 + default: *90 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -11520,7 +11661,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#grant-repository-access-to-an-organization-installation parameters: - *41 - - *87 + - *89 - *23 responses: '200': @@ -11530,7 +11671,7 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: default: value: @@ -11581,7 +11722,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#remove-repository-access-from-an-organization-installation parameters: - *41 - - *87 + - *89 - *23 responses: '200': @@ -11591,7 +11732,7 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: default: value: @@ -11668,7 +11809,7 @@ paths: required: false schema: type: string - - &306 + - &309 name: include description: |- The event types to include: @@ -11686,7 +11827,7 @@ paths: - web - git - all - - &307 + - &310 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. @@ -11694,7 +11835,7 @@ paths: required: false schema: type: string - - &308 + - &311 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. @@ -11702,7 +11843,7 @@ paths: required: false schema: type: string - - &309 + - &312 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -11724,7 +11865,7 @@ paths: application/json: schema: type: array - items: &310 + items: &313 type: object properties: "@timestamp": @@ -11846,7 +11987,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &311 + default: &314 value: - "@timestamp": 1606929874512 action: team.add_member @@ -12025,7 +12166,7 @@ paths: vendor_specific: type: object oneOf: - - &93 + - &95 title: AzureBlobConfig description: Azure Blob Config for audit log streaming configuration. type: object @@ -12044,7 +12185,7 @@ paths: - key_id - encrypted_sas_url - container - - &94 + - &96 title: AzureHubConfig description: Azure Event Hubs Config for audit log streaming configuration. type: object @@ -12063,7 +12204,7 @@ paths: - name - encrypted_connstring - key_id - - &95 + - &97 title: AmazonS3OIDCConfig description: Amazon S3 OIDC Config for audit log streaming configuration. type: object @@ -12091,7 +12232,7 @@ paths: - bucket - key_id - region - - &96 + - &98 title: AmazonS3AccessKeysConfig description: Amazon S3 Access Keys Config for audit log streaming configuration. @@ -12125,7 +12266,7 @@ paths: - encrypted_secret_key - key_id - region - - &97 + - &99 title: SplunkConfig description: Splunk Config for Audit Log Stream Configuration type: object @@ -12153,7 +12294,7 @@ paths: - key_id - port - ssl_verify - - &98 + - &100 title: HecConfig description: Hec Config for Audit Log Stream Configuration type: object @@ -12185,7 +12326,7 @@ paths: - key_id - port - ssl_verify - - &99 + - &101 title: GoogleCloudConfig description: Google Cloud Config for audit log streaming configuration. type: object @@ -12203,7 +12344,7 @@ paths: - bucket - key_id - encrypted_json_credentials - - &100 + - &102 title: DatadogConfig description: Datadog Config for audit log streaming configuration. type: object @@ -12234,7 +12375,7 @@ paths: - stream_type - vendor_specific examples: - default: &101 + default: &103 value: enabled: false stream_type: Azure Event Hubs @@ -12248,7 +12389,7 @@ paths: description: The audit log stream configuration was created successfully. content: application/json: - schema: &90 + schema: &92 title: Get an audit log streaming configuration description: Get an audit log streaming configuration for an enterprise. type: object @@ -12279,7 +12420,7 @@ paths: - created_at - updated_at examples: - default: &91 + default: &93 value: id: 1 stream_type: Splunk @@ -12308,7 +12449,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#list-one-audit-log-streaming-configuration-via-a-stream-id parameters: - *41 - - &92 + - &94 name: stream_id description: The ID of the audit log stream configuration. in: path @@ -12320,9 +12461,9 @@ paths: description: Lists one audit log stream configuration via stream ID. content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -12342,7 +12483,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#update-an-existing-audit-log-stream-configuration parameters: - *41 - - *92 + - *94 requestBody: required: true content: @@ -12368,28 +12509,28 @@ paths: vendor_specific: type: object oneOf: - - *93 - - *94 - *95 - *96 - *97 - *98 - *99 - *100 + - *101 + - *102 required: - enabled - stream_type - vendor_specific examples: - default: *101 + default: *103 responses: '200': description: Successful update content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '422': description: Validation error content: @@ -12420,7 +12561,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#delete-an-audit-log-streaming-configuration-for-an-enterprise parameters: - *41 - - *92 + - *94 responses: '204': description: The audit log stream configuration was deleted successfully. @@ -12447,13 +12588,13 @@ paths: subcategory: bypass-requests parameters: - *41 - - &102 + - &104 name: organization_name description: The name of the organization to filter on. in: query schema: type: string - - &103 + - &105 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -12461,7 +12602,7 @@ paths: required: false schema: type: string - - &104 + - &106 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -12469,7 +12610,7 @@ paths: required: false schema: type: string - - &105 + - &107 name: time_period description: |- The time period to filter by. @@ -12485,7 +12626,7 @@ paths: - week - month default: day - - &106 + - &108 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -12512,7 +12653,7 @@ paths: application/json: schema: type: array - items: &312 + items: &315 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -12629,7 +12770,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: &107 + items: &109 title: Bypass response description: A response made by a delegated bypasser to a bypass request. @@ -12673,7 +12814,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &313 + default: &316 value: - id: 21 number: 42 @@ -12764,11 +12905,11 @@ paths: subcategory: delegated-bypass parameters: - *41 - - *102 - - *103 - *104 - *105 - *106 + - *107 + - *108 - *17 - *19 responses: @@ -12778,7 +12919,7 @@ paths: application/json: schema: type: array - items: &315 + items: &318 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -12892,7 +13033,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: *107 + items: *109 url: type: string format: uri @@ -12903,7 +13044,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &316 + default: &319 value: - id: 21 number: 42 @@ -12988,17 +13129,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &321 + - &324 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`, but not both. in: query required: false - schema: &111 + schema: &113 type: string description: The name of the tool used to generate the code scanning analysis. - - &322 + - &325 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 @@ -13006,22 +13147,22 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &112 + schema: &114 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *108 - - *109 + - *110 + - *111 - *19 - *17 - - *110 + - *112 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &323 + schema: &326 type: string description: State of a code scanning alert. enum: @@ -13054,42 +13195,42 @@ paths: application/json: schema: type: array - items: &324 + items: &327 type: object properties: - number: &128 + number: &130 type: integer description: The security alert number. readOnly: true - created_at: &135 + created_at: &137 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &136 + updated_at: &138 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - url: &133 + url: &135 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &134 + html_url: &136 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &542 + instances_url: &545 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &113 + state: &115 type: string description: State of a code scanning alert. nullable: true @@ -13097,7 +13238,7 @@ paths: - open - dismissed - fixed - fixed_at: &138 + fixed_at: &140 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -13111,14 +13252,14 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: &137 + dismissed_at: &139 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissed_reason: &543 + dismissed_reason: &546 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -13127,13 +13268,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &544 + dismissed_comment: &547 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &545 + rule: &548 type: object properties: id: @@ -13186,42 +13327,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &546 + tool: &549 type: object properties: - name: *111 + name: *113 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *112 - most_recent_instance: &547 + guid: *114 + most_recent_instance: &550 type: object properties: - ref: &540 + ref: &543 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &557 + analysis_key: &560 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: &558 + environment: &561 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: &559 + category: &562 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *113 + state: *115 commit_sha: type: string message: @@ -13229,7 +13370,7 @@ paths: properties: text: type: string - location: &560 + location: &563 type: object description: Describe a region within a file for the alert. properties: @@ -13250,7 +13391,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: &561 + items: &564 type: string description: A classification of the file. For example to identify it as generated. @@ -13260,11 +13401,11 @@ paths: - generated - test - library - repository: &120 + repository: &122 title: Simple Repository description: A GitHub repository. type: object - properties: &259 + properties: &261 id: type: integer format: int64 @@ -13491,7 +13632,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &260 + required: &262 - archive_url - assignees_url - blobs_url @@ -13563,7 +13704,7 @@ paths: - most_recent_instance - repository examples: - default: &325 + default: &328 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -13794,7 +13935,7 @@ paths: headers: Link: *47 '404': *6 - '503': &196 + '503': &198 description: Service unavailable content: application/json: @@ -13838,8 +13979,8 @@ paths: schema: type: integer default: 30 - - *108 - - *109 + - *110 + - *111 responses: '200': description: Response @@ -13847,7 +13988,7 @@ paths: application/json: schema: type: array - items: &114 + items: &116 type: object description: A code security configuration properties: @@ -14237,7 +14378,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &118 + code_scanning_options: &120 type: object description: Security Configuration feature options for code scanning nullable: true @@ -14254,7 +14395,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &117 + code_scanning_default_setup_options: &119 type: object description: Feature options for code scanning default setup nullable: true @@ -14379,9 +14520,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *114 + schema: *116 examples: - default: &115 + default: &117 value: id: 1325 target_type: enterprise @@ -14439,7 +14580,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &330 type: array description: A list of default code security configurations items: @@ -14453,9 +14594,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *114 + configuration: *116 examples: - default: &328 + default: &331 value: - default_for_new_repos: public configuration: @@ -14544,7 +14685,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *41 - - &116 + - &118 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -14556,9 +14697,9 @@ paths: description: Response content: application/json: - schema: *114 + schema: *116 examples: - default: *115 + default: *117 '304': *37 '403': *29 '404': *6 @@ -14583,7 +14724,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *41 - - *116 + - *118 requestBody: required: true content: @@ -14662,8 +14803,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *117 - code_scanning_options: *118 + code_scanning_default_setup_options: *119 + code_scanning_options: *120 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -14759,13 +14900,13 @@ paths: description: Response content: application/json: - schema: *114 + schema: *116 examples: - default: *115 + default: *117 '304': *37 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14789,14 +14930,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *41 - - *116 + - *118 responses: - '204': &155 + '204': &157 description: A header with no content is returned. '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14821,7 +14962,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *41 - - *116 + - *118 requestBody: required: true content: @@ -14848,7 +14989,7 @@ paths: '202': *39 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -14873,7 +15014,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *41 - - *116 + - *118 requestBody: required: true content: @@ -14913,12 +15054,12 @@ paths: - none - private_and_internal - public - configuration: *114 + configuration: *116 examples: default: value: default_for_new_repos: all - configuration: &326 + configuration: &329 value: id: 1325 target_type: organization @@ -14975,7 +15116,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *41 - - *116 + - *118 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -14984,8 +15125,8 @@ paths: schema: type: integer default: 30 - - *108 - - *109 + - *110 + - *111 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -15003,7 +15144,7 @@ paths: application/json: schema: type: array - items: &329 + items: &332 type: object description: Repositories associated with a code security configuration and attachment status @@ -15021,13 +15162,13 @@ paths: - failed - updating - removed_by_enterprise - repository: *120 + repository: *122 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: &330 + repository: &333 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -15492,7 +15633,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &146 + items: &148 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -15509,14 +15650,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *121 - required: *122 + properties: *123 + required: *124 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &317 + - &320 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -15591,7 +15732,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &394 + properties: &397 id: description: Unique identifier of the team type: integer @@ -15663,7 +15804,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &395 + required: &398 - id - node_id - url @@ -15689,7 +15830,7 @@ paths: - slug - parent - type - - &145 + - &147 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -15799,7 +15940,7 @@ paths: - created_at additionalProperties: false examples: - default: &147 + default: &149 value: total_seats: 2 seats: @@ -16336,7 +16477,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': &332 + '413': &335 description: Payload Too Large content: application/json: @@ -16758,7 +16899,7 @@ paths: application/json: schema: type: array - items: &209 + items: &211 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -17065,7 +17206,7 @@ paths: - date additionalProperties: true examples: - default: &210 + default: &212 value: - date: '2024-06-24' total_active_users: 24 @@ -17167,7 +17308,7 @@ paths: '500': *40 '403': *29 '404': *6 - '422': &211 + '422': &213 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -17197,7 +17338,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-enterprise-usage-metrics-for-a-specific-day parameters: - *41 - - &123 + - &125 name: day description: The day to request data for, in `YYYY-MM-DD` format. in: query @@ -17211,7 +17352,7 @@ paths: description: Response content: application/json: - schema: &124 + schema: &126 type: object title: Copilot Metrics 1 Day Report description: Links to download the Copilot usage metrics report for @@ -17232,7 +17373,7 @@ paths: - download_links - report_day examples: - default: &125 + default: &127 value: download_links: - https://example.com/copilot-usage-report-1.json @@ -17270,7 +17411,7 @@ paths: description: Response content: application/json: - schema: &126 + schema: &128 type: object title: Copilot Metrics 28 Day Report description: Links to download the latest Copilot usage metrics report @@ -17298,7 +17439,7 @@ paths: - report_start_day - report_end_day examples: - default: &127 + default: &129 value: download_links: - https://example.com/copilot-usage-report-1.json @@ -17332,15 +17473,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-users-usage-metrics-for-a-specific-day parameters: - *41 - - *123 + - *125 responses: '200': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *125 + default: *127 '500': *40 '403': *29 '404': *6 @@ -17373,9 +17514,9 @@ paths: description: Response content: application/json: - schema: *126 + schema: *128 examples: - default: *127 + default: *129 '500': *40 '403': *29 '404': *6 @@ -17403,7 +17544,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &337 + - &340 name: state in: query description: |- @@ -17412,7 +17553,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &338 + - &341 name: severity in: query description: |- @@ -17421,7 +17562,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &339 + - &342 name: ecosystem in: query description: |- @@ -17430,14 +17571,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &340 + - &343 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &341 + - &344 name: epss_percentage in: query description: |- @@ -17449,7 +17590,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 - - &602 + - &605 name: has in: query description: |- @@ -17463,7 +17604,7 @@ paths: type: string enum: - patch - - &342 + - &345 name: assignee in: query description: |- @@ -17472,7 +17613,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &343 + - &346 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -17482,7 +17623,7 @@ paths: enum: - development - runtime - - &344 + - &347 name: sort in: query description: |- @@ -17497,9 +17638,9 @@ paths: - updated - epss_percentage default: created + - *112 - *110 - - *108 - - *109 + - *111 - *17 responses: '200': @@ -17508,11 +17649,11 @@ paths: application/json: schema: type: array - items: &345 + items: &348 type: object description: A Dependabot alert. properties: - number: *128 + number: *130 state: type: string description: The state of the Dependabot alert. @@ -17527,7 +17668,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &129 + package: &131 type: object description: Details for the vulnerable package. readOnly: true @@ -17571,7 +17712,7 @@ paths: - unknown - direct - transitive - security_advisory: &603 + security_advisory: &606 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -17601,13 +17742,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &132 + items: &134 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *129 + package: *131 severity: type: string description: The severity of the vulnerability. @@ -17652,8 +17793,8 @@ paths: - medium - high - critical - cvss_severities: *130 - epss: *131 + cvss_severities: *132 + epss: *133 cwes: type: array description: Details for the advisory pertaining to Common @@ -17751,12 +17892,12 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *132 - url: *133 - html_url: *134 - created_at: *135 - updated_at: *136 - dismissed_at: *137 + security_vulnerability: *134 + url: *135 + html_url: *136 + created_at: *137 + updated_at: *138 + dismissed_at: *139 dismissed_by: title: Simple User description: A GitHub user. @@ -17780,15 +17921,15 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *138 - auto_dismissed_at: &604 + fixed_at: *140 + auto_dismissed_at: &607 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &605 + dismissal_request: &608 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -17831,7 +17972,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *120 + repository: *122 required: - number - state @@ -17850,7 +17991,7 @@ paths: - repository additionalProperties: false examples: - default: &346 + default: &349 value: - number: 2 state: dismissed @@ -18233,7 +18374,7 @@ paths: roles: type: array description: The list of enterprise roles available to the enterprise. - items: &144 + items: &146 title: Enterprise Role description: Enterprise custom roles type: object @@ -18267,8 +18408,8 @@ paths: title: Enterprise description: An enterprise on GitHub. type: object - properties: *139 - required: *140 + properties: *141 + required: *142 nullable: true created_at: description: The date and time the role was created. @@ -18361,7 +18502,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-all-enterprise-roles-from-a-team parameters: - *41 - - &141 + - &143 name: team_slug description: The slug of the enterprise team name. in: path @@ -18404,8 +18545,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#assign-an-enterprise-role-to-a-team parameters: - *41 - - *141 - - &142 + - *143 + - &144 name: role_id description: The unique identifier of the role. in: path @@ -18447,8 +18588,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-an-enterprise-role-from-a-team parameters: - *41 - - *141 - - *142 + - *143 + - *144 responses: '204': description: Response @@ -18482,7 +18623,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-all-enterprise-roles-from-a-user parameters: - *41 - - &143 + - &145 name: username description: The handle for the GitHub user account. in: path @@ -18522,8 +18663,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#assign-an-enterprise-role-to-an-enterprise-user parameters: - *41 - - *143 - - *142 + - *145 + - *144 responses: '204': description: Response @@ -18556,8 +18697,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-enterprise-user-role-assignment parameters: - *41 - - *143 - - *142 + - *145 + - *144 responses: '204': description: Response @@ -18591,13 +18732,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#get-an-enterprise-role parameters: - *41 - - *142 + - *144 responses: '200': description: Response content: application/json: - schema: *144 + schema: *146 examples: default: value: @@ -18651,7 +18792,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#list-teams-that-are-assigned-to-an-enterprise-role parameters: - *41 - - *142 + - *144 - *17 - *19 responses: @@ -18661,9 +18802,9 @@ paths: application/json: schema: type: array - items: *145 + items: *147 examples: - default: &212 + default: &214 value: - id: 1 name: Justice League @@ -18702,7 +18843,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#list-users-that-are-assigned-to-an-enterprise-role parameters: - *41 - - *142 + - *144 - *17 - *19 responses: @@ -18734,7 +18875,7 @@ paths: description: Enterprise Team the user has gotten the role through type: array - items: *145 + items: *147 examples: default: value: @@ -18826,7 +18967,7 @@ paths: application/json: schema: *22 examples: - default: &371 + default: &374 value: id: 1 account: @@ -18967,7 +19108,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-an-enterprise-user parameters: - *41 - - *143 + - *145 responses: '200': description: The user's GitHub Copilot seat details, including usage. @@ -18983,9 +19124,9 @@ paths: teams or multiple organizations are only counted once. seats: type: array - items: *146 + items: *148 examples: - default: *147 + default: *149 '500': *40 '401': *25 '403': *29 @@ -19028,7 +19169,7 @@ paths: type: integer network_configurations: type: array - items: &148 + items: &150 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -19080,7 +19221,7 @@ paths: - name - created_on examples: - default: &456 + default: &459 value: total_count: 2 network_configurations: @@ -19159,9 +19300,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: &149 + default: &151 value: id: 123456789ABCDEF name: My network configuration @@ -19188,7 +19329,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise parameters: - *41 - - &150 + - &152 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -19200,9 +19341,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *149 + default: *151 headers: Link: *47 x-github: @@ -19222,7 +19363,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise parameters: - *41 - - *150 + - *152 requestBody: required: true content: @@ -19262,9 +19403,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *149 + default: *151 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19282,7 +19423,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise parameters: - *41 - - *150 + - *152 responses: '204': description: Response @@ -19305,7 +19446,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &457 + - &460 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -19317,7 +19458,7 @@ paths: description: Response content: application/json: - schema: &458 + schema: &461 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -19351,7 +19492,7 @@ paths: - subnet_id - region examples: - default: &459 + default: &462 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -19390,7 +19531,7 @@ paths: application/json: schema: type: array - items: &151 + items: &153 title: Custom Property for Organization description: Custom property defined for an organization allOf: @@ -19458,7 +19599,7 @@ paths: - property_name - value_type examples: - default: &152 + default: &154 value: - property_name: environment url: https://api.github.com/enterprises/github/org-properties/schema/environment @@ -19518,7 +19659,7 @@ paths: type: array description: The array of organization custom properties to create or update. - items: *151 + items: *153 minItems: 1 maxItems: 100 required: @@ -19551,9 +19692,9 @@ paths: application/json: schema: type: array - items: *151 + items: *153 examples: - default: *152 + default: *154 '403': *29 '404': *6 '422': *7 @@ -19580,7 +19721,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties-for-orgs#get-an-organization-custom-property-definition-from-an-enterprise parameters: - *41 - - &153 + - &155 name: custom_property_name description: The custom property name in: path @@ -19592,9 +19733,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: &154 + default: &156 value: property_name: environment url: https://api.github.com/enterprises/github/org-properties/schema/environment @@ -19631,7 +19772,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties-for-orgs#create-or-update-an-organization-custom-property-definition-on-an-enterprise parameters: - *41 - - *153 + - *155 requestBody: required: true content: @@ -19700,9 +19841,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *154 + default: *156 '403': *29 '404': *6 '422': *7 @@ -19728,9 +19869,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties-for-orgs#remove-an-organization-custom-property-definition-from-an-enterprise parameters: - *41 - - *153 + - *155 responses: - '204': *155 + '204': *157 '403': *29 '404': *6 '422': *7 @@ -19779,7 +19920,7 @@ paths: example: Hello-World properties: type: array - items: &156 + items: &158 title: Custom Property Value description: Custom property name and associated value type: object @@ -19862,7 +20003,7 @@ paths: type: array description: List of custom property names and associated values to apply to the organizations. - items: *156 + items: *158 required: - organization_logins - properties @@ -19912,7 +20053,7 @@ paths: application/json: schema: type: array - items: &157 + items: &159 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -19980,7 +20121,7 @@ paths: - property_name - value_type examples: - default: &158 + default: &160 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -20038,7 +20179,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *157 + items: *159 minItems: 1 maxItems: 100 required: @@ -20068,9 +20209,9 @@ paths: application/json: schema: type: array - items: *157 + items: *159 examples: - default: *158 + default: *160 '403': *29 '404': *6 x-github: @@ -20093,16 +20234,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#promote-a-custom-property-to-an-enterprise parameters: - *41 - - *87 - - *153 + - *89 + - *155 responses: '200': description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: &159 + default: &161 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -20135,15 +20276,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *41 - - *153 + - *155 responses: '200': description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 '403': *29 '404': *6 x-github: @@ -20165,12 +20306,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#create-or-update-a-custom-property-for-an-enterprise parameters: - *41 - - *153 + - *155 requestBody: required: true content: application/json: - schema: &427 + schema: &430 title: Custom Property Set Payload description: Custom property set payload type: object @@ -20236,9 +20377,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 '403': *29 '404': *6 x-github: @@ -20260,9 +20401,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *41 - - *153 + - *155 responses: - '204': *155 + '204': *157 '403': *29 '404': *6 x-github: @@ -20302,7 +20443,7 @@ paths: - push - repository default: branch - enforcement: &168 + enforcement: &170 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -20315,7 +20456,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &169 + items: &171 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -20356,7 +20497,7 @@ paths: - pull_request - exempt default: always - conditions: &193 + conditions: &195 title: Enterprise ruleset conditions type: object description: |- @@ -20369,7 +20510,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &160 + - &162 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -20395,7 +20536,7 @@ paths: type: string required: - organization_name - - &163 + - &165 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -20424,7 +20565,7 @@ paths: is prevented. required: - repository_name - - &162 + - &164 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -20452,8 +20593,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *160 - - &165 + - *162 + - &167 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -20466,7 +20607,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &161 + items: &163 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -20497,16 +20638,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *161 + items: *163 required: - repository_property - - *162 + - *164 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &164 + - &166 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -20523,22 +20664,22 @@ paths: type: integer required: - organization_id - - *163 - - *162 + - *165 + - *164 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: + - *166 + - *167 - *164 - - *165 - - *162 - type: object title: organization_property_and_repository_name description: Conditions to target organizations by property and all repositories allOf: - - &167 + - &169 title: Repository ruleset conditions for organization properties type: object description: Parameters for a organization property condition @@ -20551,7 +20692,7 @@ paths: description: The organization properties and values to include. All of these properties must match for the condition to pass. - items: &166 + items: &168 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a organization @@ -20575,28 +20716,28 @@ paths: description: The organization properties and values to exclude. The condition will not pass if any of these properties match. - items: *166 + items: *168 required: - organization_property - - *163 - - *162 + - *165 + - *164 - type: object title: organization_property_and_repository_property description: Conditions to target organizations by property and repositories by property allOf: + - *169 - *167 - - *165 - - *162 + - *164 rules: type: array description: An array of rules within the ruleset. - items: &194 + items: &196 title: Repository Rule type: object description: A repository rule. oneOf: - - &170 + - &172 title: creation description: Only allow users with bypass permission to create matching refs. @@ -20608,7 +20749,7 @@ paths: type: string enum: - creation - - &171 + - &173 title: update description: Only allow users with bypass permission to update matching refs. @@ -20629,7 +20770,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &172 + - &174 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -20641,7 +20782,7 @@ paths: type: string enum: - deletion - - &173 + - &175 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -20653,7 +20794,7 @@ paths: type: string enum: - required_linear_history - - &174 + - &176 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -20677,7 +20818,7 @@ paths: type: string required: - required_deployment_environments - - &175 + - &177 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -20689,7 +20830,7 @@ paths: type: string enum: - required_signatures - - &176 + - &178 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -20792,7 +20933,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &177 + - &179 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -20839,7 +20980,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &178 + - &180 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -20851,7 +20992,7 @@ paths: type: string enum: - non_fast_forward - - &179 + - &181 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -20888,7 +21029,7 @@ paths: required: - operator - pattern - - &180 + - &182 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -20925,7 +21066,7 @@ paths: required: - operator - pattern - - &181 + - &183 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -20962,7 +21103,7 @@ paths: required: - operator - pattern - - &182 + - &184 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -20999,7 +21140,7 @@ paths: required: - operator - pattern - - &183 + - &185 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -21036,7 +21177,7 @@ paths: required: - operator - pattern - - &184 + - &186 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -21060,7 +21201,7 @@ paths: type: string required: - restricted_file_paths - - &185 + - &187 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -21084,7 +21225,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &186 + - &188 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -21107,7 +21248,7 @@ paths: type: string required: - restricted_file_extensions - - &187 + - &189 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -21131,7 +21272,7 @@ paths: maximum: 100 required: - max_file_size - - &188 + - &190 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -21180,7 +21321,7 @@ paths: - repository_id required: - workflows - - &189 + - &191 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -21240,7 +21381,7 @@ paths: - tool required: - code_scanning_tools - - &190 + - &192 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code review @@ -21290,7 +21431,7 @@ paths: description: Response content: application/json: - schema: &191 + schema: &193 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -21325,11 +21466,11 @@ paths: source: type: string description: The name of the source - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 + items: *171 current_user_can_bypass: type: string description: |- @@ -21361,8 +21502,8 @@ paths: conditions: nullable: true anyOf: - - *162 - - &433 + - *164 + - &436 title: Organization ruleset conditions type: object description: |- @@ -21376,14 +21517,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *162 - - *163 + - *164 + - *165 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *162 + - *164 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -21405,20 +21546,20 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *162 - - *165 + - *164 + - *167 rules: type: array - items: &732 + items: &735 title: Repository Rule type: object description: A repository rule. oneOf: - - *170 - - *171 - *172 - *173 - - &730 + - *174 + - *175 + - &733 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -21496,8 +21637,6 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - *174 - - *175 - *176 - *177 - *178 @@ -21513,6 +21652,8 @@ paths: - *188 - *189 - *190 + - *191 + - *192 created_at: type: string format: date-time @@ -21520,7 +21661,7 @@ paths: type: string format: date-time examples: - default: &192 + default: &194 value: id: 21 name: super cool ruleset @@ -21579,9 +21720,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *192 + default: *194 '404': *6 '500': *40 x-github: @@ -21625,16 +21766,16 @@ paths: - tag - push - repository - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 - conditions: *193 + items: *171 + conditions: *195 rules: description: An array of rules within the ruleset. type: array - items: *194 + items: *196 examples: default: value: @@ -21658,9 +21799,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *192 + default: *194 '404': *6 '500': *40 x-github: @@ -21722,7 +21863,7 @@ paths: application/json: schema: type: array - items: &195 + items: &197 title: Ruleset version type: object description: The historical version of a ruleset @@ -21746,7 +21887,7 @@ paths: type: string format: date-time examples: - default: &436 + default: &439 value: - version_id: 3 actor: @@ -21799,9 +21940,9 @@ paths: description: Response content: application/json: - schema: &437 + schema: &440 allOf: - - *195 + - *197 - type: object required: - state @@ -21854,7 +21995,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &438 + - &441 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -21865,7 +22006,7 @@ paths: enum: - open - resolved - - &439 + - &442 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -21875,7 +22016,7 @@ paths: required: false schema: type: string - - &440 + - &443 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -21884,7 +22025,7 @@ paths: required: false schema: type: string - - &441 + - &444 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -21903,7 +22044,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &442 + - &445 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. @@ -21915,11 +22056,11 @@ paths: - created - updated default: created - - *110 + - *112 - *17 - - *108 - - *109 - - &443 + - *110 + - *111 + - &446 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -21928,7 +22069,7 @@ paths: required: false schema: type: string - - &444 + - &447 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -21937,7 +22078,7 @@ paths: schema: type: boolean default: false - - &445 + - &448 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -21946,7 +22087,7 @@ paths: schema: type: boolean default: false - - &446 + - &449 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -21962,11 +22103,11 @@ paths: application/json: schema: type: array - items: &447 + items: &450 type: object properties: - number: *128 - created_at: *135 + number: *130 + created_at: *137 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -21974,21 +22115,21 @@ paths: format: date-time readOnly: true nullable: true - url: *133 - html_url: *134 + url: *135 + html_url: *136 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &744 + state: &747 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: &745 + resolution: &748 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -22022,7 +22163,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *120 + repository: *122 push_protection_bypassed: type: boolean description: Whether push protection was bypassed for the detected @@ -22095,8 +22236,8 @@ paths: pull request. ' - oneOf: &746 - - &748 + oneOf: &749 + - &751 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -22148,7 +22289,7 @@ paths: - blob_url - commit_sha - commit_url - - &749 + - &752 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. @@ -22203,7 +22344,7 @@ paths: - page_url - commit_sha - commit_url - - &750 + - &753 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -22217,7 +22358,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &751 + - &754 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -22231,7 +22372,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &752 + - &755 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -22245,7 +22386,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &753 + - &756 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22259,7 +22400,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &754 + - &757 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22273,7 +22414,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &755 + - &758 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22287,7 +22428,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &756 + - &759 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. @@ -22301,7 +22442,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &757 + - &760 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. @@ -22315,7 +22456,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &758 + - &761 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. @@ -22329,7 +22470,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &759 + - &762 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. @@ -22343,7 +22484,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &760 + - &763 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -22370,7 +22511,7 @@ paths: required: *21 nullable: true examples: - default: &448 + default: &451 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -22548,7 +22689,7 @@ paths: headers: Link: *47 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -22579,13 +22720,13 @@ paths: description: Response content: application/json: - schema: &449 + schema: &452 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. type: object properties: - pattern_config_version: &198 + pattern_config_version: &200 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -22594,7 +22735,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &197 + items: &199 type: object properties: token_type: @@ -22660,9 +22801,9 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *197 + items: *199 examples: - default: &450 + default: &453 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -22717,7 +22858,7 @@ paths: schema: type: object properties: - pattern_config_version: *198 + pattern_config_version: *200 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -22743,7 +22884,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *198 + custom_pattern_version: *200 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -22779,7 +22920,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 "/enterprises/{enterprise}/settings/billing/advanced-security": get: @@ -22798,7 +22939,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &453 + - &456 name: advanced_security_product in: query description: | @@ -22818,7 +22959,7 @@ paths: description: Success content: application/json: - schema: &454 + schema: &457 type: object properties: total_advanced_security_committers: @@ -22873,7 +23014,7 @@ paths: required: - repositories examples: - default: &455 + default: &458 value: total_advanced_security_committers: 2 total_count: 2 @@ -23283,7 +23424,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/budgets#get-a-budget-by-id parameters: - *41 - - &199 + - &201 name: budget_id description: The ID corresponding to the budget. in: path @@ -23380,7 +23521,7 @@ paths: '404': *6 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -23621,7 +23762,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/budgets#delete-a-budget parameters: - *41 - - *199 + - *201 responses: '200': description: Response when deleting a budget @@ -23648,7 +23789,7 @@ paths: '404': *6 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -23747,7 +23888,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -23876,7 +24017,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#get-a-cost-center-by-id parameters: - *41 - - &201 + - &203 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -23933,7 +24074,7 @@ paths: - name - resources examples: - default: &200 + default: &202 value: id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -23947,7 +24088,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24036,13 +24177,13 @@ paths: - name - resources examples: - default: *200 + default: *202 '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24060,7 +24201,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#delete-a-cost-center parameters: - *41 - - *201 + - *203 responses: '200': description: Response when deleting a cost center @@ -24099,7 +24240,7 @@ paths: '404': *6 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24120,7 +24261,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#add-resources-to-a-cost-center parameters: - *41 - - *201 + - *203 requestBody: required: true content: @@ -24190,9 +24331,9 @@ paths: previous_cost_center: yet-another-cost-center '400': *14 '403': *29 - '409': *119 + '409': *121 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24212,7 +24353,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#remove-resources-from-a-cost-center parameters: - *41 - - *201 + - *203 requestBody: required: true content: @@ -24259,7 +24400,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24280,7 +24421,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-premium-request-usage-report-for-an-enterprise parameters: - *41 - - &204 + - &206 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -24289,7 +24430,7 @@ paths: required: false schema: type: integer - - &206 + - &208 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current @@ -24298,7 +24439,7 @@ paths: required: false schema: type: integer - - &205 + - &207 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -24307,7 +24448,7 @@ paths: required: false schema: type: integer - - &207 + - &209 name: organization description: The organization name to query usage for. The name is not case sensitive. @@ -24327,7 +24468,7 @@ paths: required: false schema: type: string - - &208 + - &210 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -24466,7 +24607,7 @@ paths: '403': *29 '404': *6 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24499,7 +24640,7 @@ paths: usage_report_exports: type: array description: List of usage report exports - items: &202 + items: &204 type: object properties: id: @@ -24589,7 +24730,7 @@ paths: '403': *29 '404': *6 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24655,9 +24796,9 @@ paths: description: Report export request accepted content: application/json: - schema: *202 + schema: *204 examples: - usage-report-export: &203 + usage-report-export: &205 value: id: a1b2c3d4-e5f6-7890-abcd-ef1234567890 report_type: detailed @@ -24673,7 +24814,7 @@ paths: '403': *29 '404': *6 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24707,14 +24848,14 @@ paths: description: Usage report export details content: application/json: - schema: *202 + schema: *204 examples: - usage-report-export: *203 + usage-report-export: *205 '401': *25 '403': *29 '404': *6 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24735,7 +24876,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-usage-report-for-an-enterprise parameters: - *41 - - *204 + - *206 - 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 @@ -24744,7 +24885,7 @@ paths: required: false schema: type: integer - - *205 + - *207 - name: cost_center_id description: The ID corresponding to a cost center. The default value is no cost center. @@ -24827,7 +24968,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24851,17 +24992,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-usage-summary-for-an-enterprise parameters: - *41 - - *204 - *206 - - *205 + - *208 - *207 + - *209 - name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *208 + - *210 - name: sku description: The SKU to query for usage. in: query @@ -24994,7 +25135,7 @@ paths: '400': *14 '403': *29 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25028,7 +25169,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-enterprise-team parameters: - *41 - - *141 + - *143 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -25060,13 +25201,13 @@ paths: application/json: schema: type: array - items: *209 + items: *211 examples: - default: *210 + default: *212 '500': *40 '403': *29 '404': *6 - '422': *211 + '422': *213 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -25093,9 +25234,9 @@ paths: application/json: schema: type: array - items: *145 + items: *147 examples: - default: *212 + default: *214 headers: Link: *47 '403': *29 @@ -25170,9 +25311,9 @@ paths: description: Response content: application/json: - schema: *145 + schema: *147 examples: - default: &217 + default: &219 value: id: 1 name: Justice League @@ -25201,7 +25342,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *41 - - &213 + - &215 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -25220,7 +25361,7 @@ paths: type: array items: *4 examples: - default: &214 + default: &216 value: - login: octocat id: 1 @@ -25259,7 +25400,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *41 - - *213 + - *215 requestBody: required: true content: @@ -25290,7 +25431,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -25308,7 +25449,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *41 - - *213 + - *215 requestBody: required: true content: @@ -25339,7 +25480,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -25357,8 +25498,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *41 - - *213 - - *143 + - *215 + - *145 responses: '200': description: User is a member of the enterprise team. @@ -25366,7 +25507,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &215 + exampleKey1: &217 value: login: octocat id: 1 @@ -25402,8 +25543,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *41 - - *213 - - *143 + - *215 + - *145 responses: '201': description: Successfully added team member @@ -25411,7 +25552,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *215 + exampleKey1: *217 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -25429,8 +25570,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *41 - - *213 - - *143 + - *215 + - *145 responses: '204': description: Response @@ -25452,7 +25593,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *41 - - *213 + - *215 - *17 - *19 responses: @@ -25462,9 +25603,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: &216 + default: &218 value: login: github id: 1 @@ -25495,7 +25636,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *41 - - *213 + - *215 requestBody: required: true content: @@ -25523,9 +25664,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: &256 + default: &258 value: - login: github id: 1 @@ -25556,7 +25697,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *41 - - *213 + - *215 requestBody: required: true content: @@ -25597,16 +25738,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *41 - - *213 - - *87 + - *215 + - *89 responses: '200': description: The team is assigned to the organization content: application/json: - schema: *73 + schema: *75 examples: - default: *216 + default: *218 '404': description: The team is not assigned to the organization x-github: @@ -25625,16 +25766,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *41 - - *213 - - *87 + - *215 + - *89 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *73 + schema: *75 examples: - default: *216 + default: *218 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -25651,8 +25792,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *41 - - *213 - - *87 + - *215 + - *89 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -25676,7 +25817,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *41 - - &218 + - &220 name: team_slug description: The slug of the team name. in: path @@ -25688,9 +25829,9 @@ paths: description: Response content: application/json: - schema: *145 + schema: *147 examples: - default: *217 + default: *219 headers: Link: *47 '403': *29 @@ -25710,7 +25851,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *41 - - *218 + - *220 requestBody: required: true content: @@ -25765,9 +25906,9 @@ paths: description: Response content: application/json: - schema: *145 + schema: *147 examples: - default: *217 + default: *219 headers: Link: *47 '403': *29 @@ -25790,7 +25931,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *41 - - *218 + - *220 responses: '204': description: Response @@ -25889,7 +26030,7 @@ paths: application/json: schema: type: array - items: &251 + items: &253 title: Event description: Event type: object @@ -25899,7 +26040,7 @@ paths: type: type: string nullable: true - actor: &219 + actor: &221 title: Actor description: Actor type: object @@ -25939,7 +26080,7 @@ paths: - id - name - url - org: *219 + org: *221 payload: oneOf: - title: CreateEvent @@ -25985,7 +26126,7 @@ paths: properties: action: type: string - discussion: &885 + discussion: &888 title: Discussion description: A Discussion in a repository. type: object @@ -26272,7 +26413,7 @@ paths: - id labels: type: array - items: &224 + items: &226 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -26347,12 +26488,12 @@ paths: properties: action: type: string - issue: &225 + issue: &227 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &665 + properties: &668 id: type: integer format: int64 @@ -26458,7 +26599,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &416 + properties: &419 url: type: string format: uri @@ -26528,7 +26669,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &417 + required: &420 - closed_issues - creator - description @@ -26607,7 +26748,7 @@ paths: timeline_url: type: string format: uri - type: &381 + type: &384 title: Issue Type description: The type of issue. type: object @@ -26657,7 +26798,7 @@ paths: - node_id - name - description - repository: *78 + repository: *80 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -26668,9 +26809,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *220 - required: *221 - author_association: &222 + properties: *222 + required: *223 + author_association: &224 title: author_association type: string example: OWNER @@ -26685,7 +26826,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &223 + reactions: &225 title: Reaction Rollup type: object properties: @@ -26721,7 +26862,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &804 + sub_issues_summary: &807 title: Sub-issues Summary type: object properties: @@ -26746,7 +26887,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &226 + properties: &228 id: description: Unique identifier of the issue comment example: 42 @@ -26789,7 +26930,7 @@ paths: issue_url: type: string format: uri - author_association: *222 + author_association: *224 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -26800,15 +26941,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 - reactions: *223 + properties: *222 + required: *223 + reactions: *225 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &687 + properties: &690 pinned_at: type: string format: date-time @@ -26820,11 +26961,11 @@ paths: properties: *20 required: *21 nullable: true - required: &688 + required: &691 - pinned_at - pinned_by nullable: true - required: &227 + required: &229 - id - node_id - html_url @@ -26834,7 +26975,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &805 + issue_dependencies_summary: &808 title: Issue Dependencies Summary type: object properties: @@ -26853,7 +26994,7 @@ paths: - total_blocking issue_field_values: type: array - items: &672 + items: &675 title: Issue Field Value description: A value assigned to an issue field type: object @@ -26914,7 +27055,7 @@ paths: - node_id - data_type - value - required: &666 + required: &669 - closed_at - comments - comments_url @@ -26938,10 +27079,10 @@ paths: assignees: type: array items: *4 - label: *224 + label: *226 labels: type: array - items: *224 + items: *226 required: - action - issue @@ -26950,14 +27091,14 @@ paths: properties: action: type: string - issue: *225 - comment: &661 + issue: *227 + comment: &664 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 required: - action - issue @@ -27132,8 +27273,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true allow_forking: type: boolean @@ -27222,7 +27363,7 @@ paths: type: string number: type: integer - pull_request: &230 + pull_request: &232 title: Pull Request Minimal type: object properties: @@ -27293,10 +27434,10 @@ paths: assignees: type: array items: *4 - label: *224 + label: *226 labels: type: array - items: *224 + items: *226 required: - action - number @@ -27306,7 +27447,7 @@ paths: properties: action: type: string - pull_request: *230 + pull_request: *232 comment: type: object properties: @@ -27557,7 +27698,7 @@ paths: - pull_request updated_at: type: string - pull_request: *230 + pull_request: *232 required: - action - review @@ -27606,7 +27747,7 @@ paths: updated_at: type: string format: date-time - reactions: *223 + reactions: *225 required: - action - comment @@ -27617,7 +27758,7 @@ paths: type: string release: allOf: - - &723 + - &726 title: Release description: A release. type: object @@ -27688,7 +27829,7 @@ paths: author: *4 assets: type: array - items: &724 + items: &727 title: Release Asset description: Data related to a release. type: object @@ -27763,7 +27904,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *223 + reactions: *225 required: - assets_url - upload_url @@ -27855,7 +27996,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27936,7 +28077,7 @@ paths: _links: type: object properties: - timeline: &231 + timeline: &233 title: Link With Type description: Hypermedia Link with Type type: object @@ -27948,17 +28089,17 @@ paths: required: - href - type - user: *231 - security_advisories: *231 - current_user: *231 - current_user_public: *231 - current_user_actor: *231 - current_user_organization: *231 + user: *233 + security_advisories: *233 + current_user: *233 + current_user_public: *233 + current_user_actor: *233 + current_user_organization: *233 current_user_organizations: type: array - items: *231 - repository_discussions: *231 - repository_discussions_category: *231 + items: *233 + repository_discussions: *233 + repository_discussions_category: *233 required: - timeline - user @@ -28020,7 +28161,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *232 + - *234 - *17 - *19 responses: @@ -28030,7 +28171,7 @@ paths: application/json: schema: type: array - items: &233 + items: &235 title: Base Gist description: Base Gist type: object @@ -28115,7 +28256,7 @@ paths: - created_at - updated_at examples: - default: &234 + default: &236 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -28236,7 +28377,7 @@ paths: description: Response content: application/json: - schema: &235 + schema: &237 title: Gist Simple description: Gist Simple type: object @@ -28404,7 +28545,7 @@ paths: truncated: type: boolean examples: - default: &236 + default: &238 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -28508,7 +28649,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *232 + - *234 - *17 - *19 responses: @@ -28518,9 +28659,9 @@ paths: application/json: schema: type: array - items: *233 + items: *235 examples: - default: *234 + default: *236 headers: Link: *47 '422': *15 @@ -28542,7 +28683,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *232 + - *234 - *17 - *19 responses: @@ -28552,9 +28693,9 @@ paths: application/json: schema: type: array - items: *233 + items: *235 examples: - default: *234 + default: *236 headers: Link: *47 '401': *25 @@ -28582,7 +28723,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &237 + - &239 name: gist_id description: The unique identifier of the gist. in: path @@ -28594,10 +28735,10 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: - default: *236 - '403': &240 + default: *238 + '403': &242 description: Forbidden Gist content: application/json: @@ -28645,7 +28786,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *237 + - *239 requestBody: required: true content: @@ -28705,9 +28846,9 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: - updateGist: *236 + updateGist: *238 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -28865,7 +29006,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *237 + - *239 responses: '204': description: Response @@ -28894,7 +29035,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *237 + - *239 - *17 - *19 responses: @@ -28904,7 +29045,7 @@ paths: application/json: schema: type: array - items: &238 + items: &240 title: Gist Comment description: A comment made to a gist. type: object @@ -28939,7 +29080,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *222 + author_association: *224 required: - url - id @@ -29004,7 +29145,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *237 + - *239 requestBody: required: true content: @@ -29029,9 +29170,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *240 examples: - default: &239 + default: &241 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -29089,8 +29230,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *237 - - &241 + - *239 + - &243 name: comment_id description: The unique identifier of the comment. in: path @@ -29103,12 +29244,12 @@ paths: description: Response content: application/json: - schema: *238 + schema: *240 examples: - default: *239 + default: *241 '304': *37 '404': *6 - '403': *240 + '403': *242 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29130,8 +29271,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *237 - - *241 + - *239 + - *243 requestBody: required: true content: @@ -29156,9 +29297,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *240 examples: - default: *239 + default: *241 '404': *6 x-github: githubCloudOnly: false @@ -29175,8 +29316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *237 - - *241 + - *239 + - *243 responses: '204': description: Response @@ -29199,7 +29340,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *237 + - *239 - *17 - *19 responses: @@ -29300,7 +29441,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *237 + - *239 - *17 - *19 responses: @@ -29310,7 +29451,7 @@ paths: application/json: schema: type: array - items: *235 + items: *237 examples: default: value: @@ -29375,13 +29516,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *237 + - *239 responses: '201': description: Response content: application/json: - schema: *233 + schema: *235 examples: default: value: @@ -29452,7 +29593,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *237 + - *239 responses: '204': description: Response if gist is starred @@ -29482,7 +29623,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *237 + - *239 responses: '204': description: Response @@ -29504,7 +29645,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *237 + - *239 responses: '204': description: Response @@ -29533,7 +29674,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *237 + - *239 - name: sha in: path required: true @@ -29544,9 +29685,9 @@ paths: description: Response content: application/json: - schema: *235 + schema: *237 examples: - default: *236 + default: *238 '422': *15 '404': *6 '403': *29 @@ -29707,7 +29848,7 @@ paths: type: array items: allOf: - - *78 + - *80 repository_selection: type: string example: selected @@ -29914,7 +30055,7 @@ paths: - closed - all default: open - - &384 + - &387 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -29932,8 +30073,8 @@ paths: - updated - comments default: created - - *110 - - *232 + - *112 + - *234 - name: collab in: query required: false @@ -29963,9 +30104,9 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: &385 + default: &388 value: - id: 1 node_id: MDU6SXNzdWUx @@ -30249,8 +30390,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 examples: default: value: @@ -30535,7 +30676,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &242 + X-CommonMarker-Version: &244 example: 0.17.4 schema: type: string @@ -30590,7 +30731,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *242 + X-CommonMarker-Version: *244 content: text/html: schema: @@ -30619,7 +30760,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &245 + - &247 name: account_id description: account_id parameter in: path @@ -30631,7 +30772,7 @@ paths: description: Response content: application/json: - schema: &244 + schema: &246 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -30661,7 +30802,7 @@ paths: nullable: true id: type: integer - plan: &243 + plan: &245 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -30750,7 +30891,7 @@ paths: nullable: true updated_at: type: string - plan: *243 + plan: *245 required: - url - id @@ -30758,7 +30899,7 @@ paths: - login - marketplace_purchase examples: - default: &246 + default: &248 value: url: https://api.github.com/orgs/github type: Organization @@ -30843,9 +30984,9 @@ paths: application/json: schema: type: array - items: *243 + items: *245 examples: - default: &247 + default: &249 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -30885,14 +31026,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &248 + - &250 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &249 + - &251 name: sort description: The property to sort the results by. in: query @@ -30922,9 +31063,9 @@ paths: application/json: schema: type: array - items: *244 + items: *246 examples: - default: &250 + default: &252 value: - url: https://api.github.com/orgs/github type: Organization @@ -30998,15 +31139,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *245 + - *247 responses: '200': description: Response content: application/json: - schema: *244 + schema: *246 examples: - default: *246 + default: *248 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -31038,9 +31179,9 @@ paths: application/json: schema: type: array - items: *243 + items: *245 examples: - default: *247 + default: *249 headers: Link: *47 '401': *25 @@ -31063,8 +31204,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *248 - - *249 + - *250 + - *251 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -31084,9 +31225,9 @@ paths: application/json: schema: type: array - items: *244 + items: *246 examples: - default: *250 + default: *252 headers: Link: *47 '401': *25 @@ -31350,14 +31491,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &468 + - &471 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &469 + - &472 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -31374,7 +31515,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -31419,7 +31560,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &474 + '301': &477 description: Moved permanently content: application/json: @@ -31441,7 +31582,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &697 + - &700 name: all description: If `true`, show notifications marked as read. in: query @@ -31449,7 +31590,7 @@ paths: schema: type: boolean default: false - - &698 + - &701 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -31458,8 +31599,8 @@ paths: schema: type: boolean default: false - - *232 - - &699 + - *234 + - &702 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: @@ -31484,18 +31625,18 @@ paths: application/json: schema: type: array - items: &252 + items: &254 title: Thread description: Thread type: object properties: id: type: string - repository: &288 + repository: &291 title: Minimal Repository description: Minimal Repository type: object - properties: &350 + properties: &353 id: type: integer format: int64 @@ -31781,7 +31922,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &430 + security_and_analysis: &433 nullable: true type: object properties: @@ -31902,7 +32043,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &351 + required: &354 - archive_url - assignees_url - blobs_url @@ -31990,7 +32131,7 @@ paths: - url - subscription_url examples: - default: &700 + default: &703 value: - id: '1' repository: @@ -32156,7 +32297,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &253 + - &255 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -32170,7 +32311,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *254 examples: default: value: @@ -32273,7 +32414,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *253 + - *255 responses: '205': description: Reset Content @@ -32296,7 +32437,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *253 + - *255 responses: '204': description: No content @@ -32319,13 +32460,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *253 + - *255 responses: '200': description: Response content: application/json: - schema: &254 + schema: &256 title: Thread Subscription description: Thread Subscription type: object @@ -32362,7 +32503,7 @@ paths: - url - subscribed examples: - default: &255 + default: &257 value: subscribed: true ignored: false @@ -32393,7 +32534,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *253 + - *255 requestBody: required: false content: @@ -32414,9 +32555,9 @@ paths: description: Response content: application/json: - schema: *254 + schema: *256 examples: - default: *255 + default: *257 '304': *37 '403': *29 '401': *25 @@ -32439,7 +32580,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *253 + - *255 responses: '204': description: Response @@ -32534,9 +32675,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *256 + default: *258 headers: Link: example: ; rel="next" @@ -32602,13 +32743,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &257 + schema: &259 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -32641,12 +32782,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *257 + schema: *259 examples: selected_actions: *44 responses: @@ -32675,13 +32816,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &258 + schema: &260 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -32714,12 +32855,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *258 + schema: *260 examples: selected_actions: *46 responses: @@ -32748,7 +32889,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-organization parameters: - - *87 + - *89 - name: page in: query description: The page number of results to fetch. @@ -32792,8 +32933,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *259 - required: *260 + properties: *261 + required: *262 nullable: true additionalProperties: false examples: @@ -32899,7 +33040,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -32965,7 +33106,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *87 + - *89 requestBody: required: true content: @@ -33017,7 +33158,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties-for-orgs#get-all-custom-property-values-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -33025,9 +33166,9 @@ paths: application/json: schema: type: array - items: *156 + items: *158 examples: - default: &706 + default: &709 value: - property_name: environment value: production @@ -33061,7 +33202,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties-for-orgs#create-or-update-custom-property-values-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -33073,11 +33214,11 @@ paths: type: array description: A list of custom property names and associated values to apply to the organization. - items: *156 + items: *158 required: - properties examples: - default: &707 + default: &710 value: properties: - property_name: environment @@ -33118,13 +33259,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &261 + schema: &263 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -33452,7 +33593,7 @@ paths: - updated_at - archived_at examples: - default-response: &262 + default-response: &264 value: login: github id: 1 @@ -33553,7 +33694,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#update-an-organization parameters: - - *87 + - *89 requestBody: required: false content: @@ -33772,18 +33913,18 @@ paths: description: Response content: application/json: - schema: *261 + schema: *263 examples: - default: *262 + default: *264 '422': description: Validation failed content: application/json: schema: oneOf: - - *263 - - *264 - '409': *119 + - *265 + - *266 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33806,7 +33947,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#delete-an-organization parameters: - - *87 + - *89 responses: '202': *39 '404': *6 @@ -33832,15 +33973,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *265 + schema: *267 examples: - default: *266 + default: *268 headers: Link: *47 x-github: @@ -33863,7 +34004,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -33881,7 +34022,7 @@ paths: type: integer repository_cache_usages: type: array - items: &481 + items: &484 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -33936,7 +34077,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -33956,7 +34097,7 @@ paths: type: array items: *48 examples: - default: *267 + default: *269 headers: Link: *47 x-github: @@ -33976,7 +34117,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -34075,7 +34216,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34113,7 +34254,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - - *87 + - *89 - *50 responses: '200': @@ -34122,7 +34263,7 @@ paths: application/json: schema: *49 examples: - default: *268 + default: *270 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34141,7 +34282,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *87 + - *89 - *50 responses: '204': @@ -34166,7 +34307,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - *50 - - *87 + - *89 responses: '200': description: Response @@ -34204,7 +34345,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - - *87 + - *89 - *50 - *53 responses: @@ -34214,7 +34355,7 @@ paths: application/json: schema: *52 examples: - default: *269 + default: *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34233,7 +34374,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - - *87 + - *89 - *50 - *53 responses: @@ -34256,7 +34397,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34292,7 +34433,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34327,15 +34468,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *270 + schema: *272 examples: - default: *271 + default: *273 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34353,7 +34494,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34371,7 +34512,7 @@ paths: type: array items: *56 examples: - default: *272 + default: *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34389,7 +34530,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34433,7 +34574,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *87 + - *89 - *58 responses: '200': @@ -34462,7 +34603,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *87 + - *89 - *58 requestBody: required: true @@ -34533,7 +34674,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *87 + - *89 - *58 responses: '202': @@ -34548,6 +34689,111 @@ paths: enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - *89 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *59 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *89 + requestBody: + required: true + content: + application/json: + schema: *275 + examples: + default: *60 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *59 + examples: + default: *60 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *89 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -34562,13 +34808,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *87 + - *89 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &273 + schema: &276 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -34582,7 +34828,7 @@ paths: required: - include_claim_keys examples: - default: &274 + default: &277 value: include_claim_keys: - repo @@ -34604,20 +34850,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *273 + schema: *276 examples: - default: *274 + default: *277 responses: '201': description: Empty response content: application/json: - schema: &299 + schema: &302 title: Empty Object description: An object without any properties. type: object @@ -34647,7 +34893,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -34656,7 +34902,7 @@ paths: schema: type: object properties: - enabled_repositories: &276 + enabled_repositories: &279 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -34669,9 +34915,9 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: *60 - selected_actions_url: *275 - sha_pinning_required: *61 + allowed_actions: *62 + selected_actions_url: *278 + sha_pinning_required: *63 required: - enabled_repositories examples: @@ -34701,7 +34947,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -34712,9 +34958,9 @@ paths: schema: type: object properties: - enabled_repositories: *276 - allowed_actions: *60 - sha_pinning_required: *61 + enabled_repositories: *279 + allowed_actions: *62 + sha_pinning_required: *63 required: - enabled_repositories examples: @@ -34742,13 +34988,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *277 + schema: *280 examples: response: summary: Example response @@ -34774,12 +35020,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *278 + schema: *281 examples: application/json: value: @@ -34789,7 +35035,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 x-github: enabledForGitHubApps: true @@ -34809,15 +35055,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *62 + schema: *64 examples: - default: *279 + default: *282 '404': *6 x-github: enabledForGitHubApps: true @@ -34836,7 +35082,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -34846,7 +35092,7 @@ paths: required: true content: application/json: - schema: *62 + schema: *64 examples: default: summary: Set approval policy to first time contributors @@ -34868,15 +35114,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: *63 + default: *65 '403': *29 '404': *6 x-github: @@ -34894,14 +35140,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *281 + schema: *284 examples: - default: *63 + default: *65 responses: '204': description: Empty response for successful settings update @@ -34931,7 +35177,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -34949,9 +35195,9 @@ paths: type: number repositories: type: array - items: *78 + items: *80 examples: - default: &283 + default: &286 value: total_count: 1 repositories: @@ -35091,7 +35337,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -35135,8 +35381,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *87 - - &282 + - *89 + - &285 name: repository_id description: The unique identifier of the repository. in: path @@ -35164,8 +35410,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *87 - - *282 + - *89 + - *285 responses: '204': description: Response @@ -35188,15 +35434,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -35219,7 +35465,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -35227,9 +35473,9 @@ paths: required: false content: application/json: - schema: *65 + schema: *67 examples: - selected_actions: *66 + selected_actions: *68 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -35249,7 +35495,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -35297,7 +35543,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -35324,7 +35570,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 x-github: enabledForGitHubApps: true @@ -35344,7 +35590,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#list-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -35359,9 +35605,9 @@ paths: type: integer repositories: type: array - items: *78 + items: *80 examples: - default: *283 + default: *286 '403': *29 '404': *6 x-github: @@ -35381,7 +35627,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -35429,14 +35675,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *87 - - *282 + - *89 + - *285 responses: '204': description: No content '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 x-github: enabledForGitHubApps: true @@ -35456,14 +35702,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *87 - - *282 + - *89 + - *285 responses: '204': description: No content '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 x-github: enabledForGitHubApps: true @@ -35485,15 +35731,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *284 + schema: *287 examples: - default: *69 + default: *71 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35514,7 +35760,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Success response @@ -35525,9 +35771,9 @@ paths: required: false content: application/json: - schema: *285 + schema: *288 examples: - default: *69 + default: *71 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35547,7 +35793,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *87 + - *89 - *17 - *19 - name: visible_to_repository @@ -35572,7 +35818,7 @@ paths: type: number runner_groups: type: array - items: &286 + items: &289 type: object properties: id: @@ -35688,7 +35934,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -35760,9 +36006,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: &287 + default: &290 value: id: 2 name: octo-runner-group @@ -35797,14 +36043,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *87 - - *72 + - *89 + - *74 responses: '200': description: Response content: application/json: - schema: *286 + schema: *289 examples: default: value: @@ -35840,8 +36086,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *87 - - *72 + - *89 + - *74 requestBody: required: true content: @@ -35895,9 +36141,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: - default: *287 + default: *290 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -35916,8 +36162,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *87 - - *72 + - *89 + - *74 responses: '204': description: Response @@ -35940,8 +36186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *87 - - *72 + - *89 + - *74 - *17 - *19 responses: @@ -35961,7 +36207,7 @@ paths: type: array items: *48 examples: - default: *267 + default: *269 headers: Link: *47 x-github: @@ -35983,8 +36229,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *87 - - *72 + - *89 + - *74 - *19 - *17 responses: @@ -36002,9 +36248,9 @@ paths: type: number repositories: type: array - items: *288 + items: *291 examples: - default: &813 + default: &816 value: total_count: 1 repositories: @@ -36256,8 +36502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *87 - - *72 + - *89 + - *74 requestBody: required: true content: @@ -36301,9 +36547,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *87 - - *72 - - *282 + - *89 + - *74 + - *285 responses: '204': description: Response @@ -36325,9 +36571,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *87 - - *72 - - *282 + - *89 + - *74 + - *285 responses: '204': description: Response @@ -36350,8 +36596,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *87 - - *72 + - *89 + - *74 - *17 - *19 responses: @@ -36369,9 +36615,9 @@ paths: type: number runners: type: array - items: *76 + items: *78 examples: - default: *77 + default: *79 headers: Link: *47 x-github: @@ -36392,8 +36638,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *87 - - *72 + - *89 + - *74 requestBody: required: true content: @@ -36437,9 +36683,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *87 - - *72 - - *75 + - *89 + - *74 + - *77 responses: '204': description: Response @@ -36461,9 +36707,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *87 - - *72 - - *75 + - *89 + - *74 + - *77 responses: '204': description: Response @@ -36493,7 +36739,7 @@ paths: in: query schema: type: string - - *87 + - *89 - *17 - *19 responses: @@ -36511,9 +36757,9 @@ paths: type: integer runners: type: array - items: *76 + items: *78 examples: - default: *77 + default: *79 headers: Link: *47 x-github: @@ -36537,7 +36783,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -36545,9 +36791,9 @@ paths: application/json: schema: type: array - items: *289 + items: *292 examples: - default: *290 + default: *293 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36569,7 +36815,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -36612,10 +36858,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *291 + '201': *294 '404': *6 '422': *7 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36643,15 +36889,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *87 + - *89 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: - default: *292 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36679,15 +36925,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *87 + - *89 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: - default: *293 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36709,16 +36955,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 + - *89 + - *77 responses: '200': description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: *294 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36739,8 +36985,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *87 - - *75 + - *89 + - *77 responses: '204': description: Response @@ -36766,10 +37012,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 + - *89 + - *77 responses: - '200': *81 + '200': *83 '404': *6 x-github: githubCloudOnly: false @@ -36791,8 +37037,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 + - *89 + - *77 requestBody: required: true content: @@ -36816,7 +37062,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -36840,8 +37086,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 + - *89 + - *77 requestBody: required: true content: @@ -36866,7 +37112,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -36890,10 +37136,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 + - *89 + - *77 responses: - '200': *295 + '200': *298 '404': *6 x-github: githubCloudOnly: false @@ -36920,11 +37166,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - - *87 - - *75 - - *296 + - *89 + - *77 + - *299 responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -36949,7 +37195,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-organization-secrets parameters: - - *87 + - *89 - *17 - *19 responses: @@ -36967,7 +37213,7 @@ paths: type: integer secrets: type: array - items: &297 + items: &300 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -37040,13 +37286,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-public-key parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &501 + schema: &504 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -37075,7 +37321,7 @@ paths: - key_id - key examples: - default: &502 + default: &505 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -37100,8 +37346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - - *87 - - &298 + - *89 + - &301 name: secret_name description: The name of the secret. in: path @@ -37113,7 +37359,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *300 examples: default: value: @@ -37143,8 +37389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -37201,7 +37447,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -37227,8 +37473,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 responses: '204': description: Response @@ -37254,8 +37500,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - *19 - *17 responses: @@ -37273,9 +37519,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: &302 + default: &305 value: total_count: 1 repositories: @@ -37367,8 +37613,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -37420,8 +37666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -37454,8 +37700,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -37487,8 +37733,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - - *87 - - &486 + - *89 + - &489 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -37512,7 +37758,7 @@ paths: type: integer variables: type: array - items: &300 + items: &303 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -37597,7 +37843,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-organization-variable parameters: - - *87 + - *89 requestBody: required: true content: @@ -37645,7 +37891,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -37670,8 +37916,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - - *87 - - &301 + - *89 + - &304 name: name description: The name of the variable. in: path @@ -37683,7 +37929,7 @@ paths: description: Response content: application/json: - schema: *300 + schema: *303 examples: default: value: @@ -37713,8 +37959,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 requestBody: required: true content: @@ -37776,8 +38022,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 responses: '204': description: Response @@ -37803,8 +38049,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 - *19 - *17 responses: @@ -37822,9 +38068,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: *302 + default: *305 '409': description: Response when the visibility of the variable is not set to `selected` @@ -37850,8 +38096,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 requestBody: required: true content: @@ -37900,8 +38146,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 - name: repository_id in: path required: true @@ -37935,8 +38181,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *87 - - *301 + - *89 + - *304 - name: repository_id in: path required: true @@ -37967,15 +38213,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#get-announcement-banner-for-organization parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *85 + default: *87 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -37994,19 +38240,19 @@ paths: required: true content: application/json: - schema: *303 + schema: *306 examples: - default: *85 + default: *87 parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *86 + schema: *88 examples: - default: *85 + default: *87 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -38022,7 +38268,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#remove-announcement-banner-from-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -38055,7 +38301,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *87 + - *89 requestBody: required: true content: @@ -38171,7 +38417,7 @@ paths: type: integer deployment_records: type: array - items: &304 + items: &307 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -38215,7 +38461,7 @@ paths: with the deployment record. nullable: true examples: - default: &305 + default: &308 value: total_count: 1 deployment_records: @@ -38250,7 +38496,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *87 + - *89 - name: cluster in: path description: The cluster name. @@ -38386,9 +38632,9 @@ paths: type: integer deployment_records: type: array - items: *304 + items: *307 examples: - default: *305 + default: *308 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38408,7 +38654,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *87 + - *89 requestBody: required: true content: @@ -38560,7 +38806,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *87 + - *89 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -38585,9 +38831,9 @@ paths: type: integer deployment_records: type: array - items: *304 + items: *307 examples: - default: *305 + default: *308 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38607,7 +38853,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *87 + - *89 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -38690,9 +38936,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *108 - - *109 - - *87 + - *110 + - *111 + - *89 requestBody: required: true content: @@ -38716,12 +38962,12 @@ paths: required: - subject_digests examples: - default: &844 + default: &847 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &845 + withPredicateType: &848 value: subject_digests: - sha256:abc123 @@ -38765,7 +39011,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &846 + default: &849 value: attestations_subject_digests: - sha256:abc: @@ -38874,7 +39120,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *87 + - *89 requestBody: required: true content: @@ -38939,7 +39185,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *87 + - *89 - name: subject_digest description: Subject Digest in: path @@ -38972,9 +39218,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *108 - - *109 - - *87 + - *110 + - *111 + - *89 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -39022,7 +39268,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-id parameters: - - *87 + - *89 - name: attestation_id description: Attestation ID in: path @@ -39058,9 +39304,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestations parameters: - *17 - - *108 - - *109 - - *87 + - *110 + - *111 + - *89 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -39098,7 +39344,7 @@ paths: initiator: type: string examples: - default: &515 + default: &518 value: attestations: - bundle: @@ -39216,7 +39462,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-the-audit-log-for-an-organization parameters: - - *87 + - *89 - name: phrase description: A search phrase. For more information, see [Searching the audit log](https://docs.github.com/enterprise-cloud@latest//github/setting-up-and-managing-organizations-and-teams/reviewing-the-audit-log-for-your-organization#searching-the-audit-log). @@ -39224,10 +39470,10 @@ paths: required: false schema: type: string - - *306 - - *307 - - *308 - *309 + - *310 + - *311 + - *312 - *17 responses: '200': @@ -39236,9 +39482,9 @@ paths: application/json: schema: type: array - items: *310 + items: *313 examples: - default: *311 + default: *314 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -39255,7 +39501,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -39267,7 +39513,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39286,8 +39532,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: If the user is blocked @@ -39312,8 +39558,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -39333,8 +39579,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -39360,17 +39606,17 @@ paths: category: orgs subcategory: bypass-requests parameters: - - *87 - - &314 + - *89 + - &317 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - *103 - - *104 - *105 - *106 + - *107 + - *108 - *17 - *19 responses: @@ -39380,9 +39626,9 @@ paths: application/json: schema: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 '404': *6 '500': *40 "/orgs/{org}/bypass-requests/secret-scanning": @@ -39405,12 +39651,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *87 - - *314 - - *103 - - *104 + - *89 + - *317 - *105 - *106 + - *107 + - *108 - *17 - *19 responses: @@ -39420,9 +39666,9 @@ paths: application/json: schema: type: array - items: *315 + items: *318 examples: - default: *316 + default: *319 '404': *6 '500': *40 "/orgs/{org}/campaigns": @@ -39441,15 +39687,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *87 + - *89 - *19 - *17 - - *110 + - *112 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &318 + schema: &321 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -39475,7 +39721,7 @@ paths: application/json: schema: type: array - items: &319 + items: &322 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -39506,7 +39752,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *317 + items: *320 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -39524,7 +39770,7 @@ paths: type: string format: date-time nullable: true - state: *318 + state: *321 contact_link: description: The contact link of the campaign. type: string @@ -39621,7 +39867,7 @@ paths: headers: Link: *47 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39645,7 +39891,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -39744,9 +39990,9 @@ paths: description: Response content: application/json: - schema: *319 + schema: *322 examples: - default: &320 + default: &323 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -39795,7 +40041,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39817,7 +40063,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *87 + - *89 - name: campaign_number description: The campaign number. in: path @@ -39829,16 +40075,16 @@ paths: description: Response content: application/json: - schema: *319 + schema: *322 examples: - default: *320 + default: *323 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39859,7 +40105,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#update-a-campaign parameters: - - *87 + - *89 - name: campaign_number description: The campaign number. in: path @@ -39908,7 +40154,7 @@ paths: type: string format: uri nullable: true - state: *318 + state: *321 examples: default: value: @@ -39918,9 +40164,9 @@ paths: description: Response content: application/json: - schema: *319 + schema: *322 examples: - default: *320 + default: *323 '400': description: Bad Request content: @@ -39932,7 +40178,7 @@ paths: content: application/json: schema: *3 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39953,7 +40199,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *87 + - *89 - name: campaign_number description: The campaign number. in: path @@ -39964,7 +40210,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39986,20 +40232,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *87 - - *321 - - *322 - - *108 - - *109 + - *89 + - *324 + - *325 + - *110 + - *111 - *19 - *17 - - *110 + - *112 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: *323 + schema: *326 - name: sort description: The property by which to sort the results. in: query @@ -40015,7 +40261,7 @@ paths: be returned. in: query required: false - schema: &541 + schema: &544 type: string description: Severity of a code scanning alert. enum: @@ -40041,13 +40287,13 @@ paths: application/json: schema: type: array - items: *324 + items: *327 examples: - default: *325 + default: *328 headers: Link: *47 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40069,7 +40315,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *87 + - *89 - name: target_type in: query description: The target type of the code security configuration @@ -40088,8 +40334,8 @@ paths: schema: type: integer default: 30 - - *108 - - *109 + - *110 + - *111 responses: '200': description: Response @@ -40097,7 +40343,7 @@ paths: application/json: schema: type: array - items: *114 + items: *116 examples: default: value: @@ -40180,7 +40426,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#create-a-code-security-configuration parameters: - - *87 + - *89 requestBody: required: true content: @@ -40267,7 +40513,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *118 + code_scanning_options: *120 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -40276,7 +40522,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *117 + code_scanning_default_setup_options: *119 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -40415,9 +40661,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *114 + schema: *116 examples: - default: *326 + default: *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40439,15 +40685,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-default-code-security-configurations parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *327 + schema: *330 examples: - default: *328 + default: *331 '304': *37 '403': *29 '404': *6 @@ -40473,7 +40719,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *87 + - *89 requestBody: required: true content: @@ -40499,11 +40745,11 @@ paths: - 32 - 91 responses: - '204': *155 + '204': *157 '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40525,16 +40771,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-a-code-security-configuration parameters: - - *87 - - *116 + - *89 + - *118 responses: '200': description: Response content: application/json: - schema: *114 + schema: *116 examples: - default: *326 + default: *329 '304': *37 '403': *29 '404': *6 @@ -40558,8 +40804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-code-security-configuration parameters: - - *87 - - *116 + - *89 + - *118 requestBody: required: true content: @@ -40646,8 +40892,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *117 - code_scanning_options: *118 + code_scanning_default_setup_options: *119 + code_scanning_options: *120 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -40772,7 +41018,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *114 + schema: *116 examples: default: value: @@ -40831,14 +41077,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *87 - - *116 + - *89 + - *118 responses: - '204': *155 + '204': *157 '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40862,8 +41108,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *87 - - *116 + - *89 + - *118 requestBody: required: true content: @@ -40926,8 +41172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *87 - - *116 + - *89 + - *118 requestBody: required: true content: @@ -40967,12 +41213,12 @@ paths: - none - private_and_internal - public - configuration: *114 + configuration: *116 examples: default: value: default_for_new_repos: all - configuration: *326 + configuration: *329 '403': *29 '404': *6 x-github: @@ -40996,8 +41242,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *87 - - *116 + - *89 + - *118 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -41006,8 +41252,8 @@ paths: schema: type: integer default: 30 - - *108 - - *109 + - *110 + - *111 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -41025,13 +41271,13 @@ paths: application/json: schema: type: array - items: *329 + items: *332 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *330 + repository: *333 '403': *29 '404': *6 x-github: @@ -41055,7 +41301,7 @@ paths: parameters: - *17 - *19 - - *87 + - *89 responses: '200': description: Response @@ -41071,7 +41317,7 @@ paths: type: integer codespaces: type: array - items: &386 + items: &389 type: object title: Codespace description: A codespace. @@ -41096,12 +41342,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *288 + repository: *291 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &573 + properties: &576 name: type: string description: The name of the machine. @@ -41143,7 +41389,7 @@ paths: - ready - in_progress nullable: true - required: &574 + required: &577 - name - display_name - operating_system @@ -41348,7 +41594,7 @@ paths: - pulls_url - recent_folders examples: - default: &387 + default: &390 value: total_count: 3 codespaces: @@ -41780,7 +42026,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *87 + - *89 deprecated: true requestBody: required: true @@ -41847,7 +42093,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *87 + - *89 deprecated: true requestBody: required: true @@ -41902,7 +42148,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *87 + - *89 requestBody: required: true content: @@ -41954,7 +42200,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *87 + - *89 - *17 - *19 responses: @@ -41972,7 +42218,7 @@ paths: type: integer secrets: type: array - items: &331 + items: &334 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -42011,7 +42257,7 @@ paths: - updated_at - visibility examples: - default: &575 + default: &578 value: total_count: 2 secrets: @@ -42043,13 +42289,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &576 + schema: &579 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -42078,7 +42324,7 @@ paths: - key_id - key examples: - default: &577 + default: &580 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -42101,16 +42347,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 responses: '200': description: Response content: application/json: - schema: *331 + schema: *334 examples: - default: &579 + default: &582 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -42137,8 +42383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -42193,7 +42439,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -42219,8 +42465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 responses: '204': description: Response @@ -42245,8 +42491,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - *19 - *17 responses: @@ -42264,9 +42510,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: *302 + default: *305 '404': *6 x-github: githubCloudOnly: false @@ -42288,8 +42534,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -42339,8 +42585,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -42373,8 +42619,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -42413,7 +42659,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *87 + - *89 responses: '200': description: OK @@ -42554,7 +42800,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *87 + - *89 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -42577,9 +42823,9 @@ paths: currently being billed. seats: type: array - items: *146 + items: *148 examples: - default: *147 + default: *149 headers: Link: *47 '500': *40 @@ -42615,7 +42861,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *87 + - *89 requestBody: content: application/json: @@ -42693,7 +42939,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *87 + - *89 requestBody: content: application/json: @@ -42773,7 +43019,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *87 + - *89 requestBody: content: application/json: @@ -42850,7 +43096,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *87 + - *89 requestBody: content: application/json: @@ -42932,7 +43178,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-content-exclusion-management#get-copilot-content-exclusion-rules-for-an-organization parameters: - - *87 + - *89 responses: '200': description: OK @@ -42985,7 +43231,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-content-exclusion-management#set-copilot-content-exclusion-rules-for-an-organization parameters: - - *87 + - *89 requestBody: description: The content exclusion rules to set required: true @@ -43041,7 +43287,7 @@ paths: '401': *25 '403': *29 '404': *6 - '413': *332 + '413': *335 '422': *7 x-github: githubCloudOnly: @@ -43072,7 +43318,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *87 + - *89 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -43104,13 +43350,13 @@ paths: application/json: schema: type: array - items: *209 + items: *211 examples: - default: *210 + default: *212 '500': *40 '403': *29 '404': *6 - '422': *211 + '422': *213 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43136,16 +43382,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics-for-a-specific-day parameters: - - *87 - - *123 + - *89 + - *125 responses: '200': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *125 + default: *127 '500': *40 '403': *29 '404': *6 @@ -43174,15 +43420,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-organization-usage-metrics parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *126 + schema: *128 examples: - default: *127 + default: *129 '500': *40 '403': *29 '404': *6 @@ -43211,16 +43457,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics-for-a-specific-day parameters: - - *87 - - *123 + - *89 + - *125 responses: '200': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *125 + default: *127 '500': *40 '403': *29 '404': *6 @@ -43249,15 +43495,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage-metrics#get-copilot-organization-users-usage-metrics parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *126 + schema: *128 examples: - default: *127 + default: *129 '500': *40 '403': *29 '404': *6 @@ -43282,7 +43528,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-saml-sso-authorizations-for-an-organization parameters: - - *87 + - *89 - *17 - name: page description: Page token @@ -43426,7 +43672,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#remove-a-saml-sso-authorization-for-an-organization parameters: - - *87 + - *89 - name: credential_id in: path required: true @@ -43457,7 +43703,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-custom-repository-roles-in-an-organization parameters: - - *87 + - *89 responses: '200': description: Response - list of custom role names @@ -43472,7 +43718,7 @@ paths: type: integer custom_roles: type: array - items: &333 + items: &336 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -43605,12 +43851,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#create-a-custom-repository-role parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: &335 + schema: &338 type: object properties: name: @@ -43651,9 +43897,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: &334 + default: &337 value: id: 8030 name: Security Engineer @@ -43700,16 +43946,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '200': description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '404': *6 x-github: githubCloudOnly: true @@ -43731,13 +43977,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - - *87 - - *142 + - *89 + - *144 requestBody: required: true content: application/json: - schema: &336 + schema: &339 type: object properties: name: @@ -43775,9 +44021,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '422': *15 '404': *6 x-github: @@ -43801,8 +44047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '204': description: Response @@ -43830,12 +44076,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---create-a-custom-role parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: *335 + schema: *338 examples: default: value: @@ -43849,9 +44095,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '422': *15 '404': *6 x-github: @@ -43881,16 +44127,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '200': description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '404': *6 x-github: githubCloudOnly: true @@ -43918,13 +44164,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - - *87 - - *142 + - *89 + - *144 requestBody: required: true content: application/json: - schema: *336 + schema: *339 examples: default: value: @@ -43939,9 +44185,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *336 examples: - default: *334 + default: *337 '422': *15 '404': *6 x-github: @@ -43971,8 +44217,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '204': description: Response @@ -44000,12 +44246,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *87 - - *337 - - *338 - - *339 + - *89 - *340 - *341 + - *342 + - *343 + - *344 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -44035,7 +44281,7 @@ paths: enum: - patch - deployment - - *342 + - *345 - name: runtime_risk in: query description: |- @@ -44044,11 +44290,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *343 - - *344 + - *346 + - *347 + - *112 - *110 - - *108 - - *109 + - *111 - *17 responses: '200': @@ -44057,9 +44303,9 @@ paths: application/json: schema: type: array - items: *345 + items: *348 examples: - default: *346 + default: *349 '304': *37 '400': *14 '403': *29 @@ -44085,7 +44331,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-organization-secrets parameters: - - *87 + - *89 - *17 - *19 responses: @@ -44103,7 +44349,7 @@ paths: type: integer secrets: type: array - items: &347 + items: &350 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -44174,13 +44420,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-public-key parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: &608 + schema: &611 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -44197,7 +44443,7 @@ paths: - key_id - key examples: - default: &609 + default: &612 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -44220,14 +44466,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 responses: '200': description: Response content: application/json: - schema: *347 + schema: *350 examples: default: value: @@ -44255,8 +44501,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -44311,7 +44557,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -44335,8 +44581,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 responses: '204': description: Response @@ -44360,8 +44606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - *19 - *17 responses: @@ -44379,9 +44625,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: *302 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44402,8 +44648,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -44453,8 +44699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -44485,8 +44731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *87 - - *298 + - *89 + - *301 - name: repository_id in: path required: true @@ -44522,8 +44768,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *87 - - &617 + - *89 + - &620 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -44531,7 +44777,7 @@ paths: required: false schema: type: string - - &618 + - &621 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -44539,7 +44785,7 @@ paths: required: false schema: type: string - - &619 + - &622 name: time_period description: |- The time period to filter by. @@ -44555,7 +44801,7 @@ paths: - week - month default: month - - &620 + - &623 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -44570,7 +44816,7 @@ paths: - denied - all default: all - - *314 + - *317 - *17 - *19 responses: @@ -44580,7 +44826,7 @@ paths: application/json: schema: type: array - items: &621 + items: &624 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -44686,7 +44932,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: &348 + items: &351 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -44736,7 +44982,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &622 + default: &625 value: - id: 21 number: 42 @@ -44823,12 +45069,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *87 - - *314 - - *103 - - *104 + - *89 + - *317 - *105 - - &349 + - *106 + - *107 + - &352 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -44854,7 +45100,7 @@ paths: application/json: schema: type: array - items: &623 + items: &626 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -44960,7 +45206,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *348 + items: *351 url: type: string format: uri @@ -44971,7 +45217,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &624 + default: &627 value: - id: 21 number: 42 @@ -45058,12 +45304,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *87 - - *314 - - *103 - - *104 + - *89 + - *317 - *105 - - *349 + - *106 + - *107 + - *352 - *17 - *19 responses: @@ -45073,7 +45319,7 @@ paths: application/json: schema: type: array - items: &625 + items: &628 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -45183,7 +45429,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *107 + items: *109 url: type: string format: uri @@ -45194,7 +45440,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &626 + default: &629 value: - id: 21 number: 42 @@ -45274,7 +45520,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -45282,7 +45528,7 @@ paths: application/json: schema: type: array - items: &397 + items: &400 title: Package description: A software package type: object @@ -45332,8 +45578,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *350 - required: *351 + properties: *353 + required: *354 nullable: true created_at: type: string @@ -45352,7 +45598,7 @@ paths: - created_at - updated_at examples: - default: &398 + default: &401 value: - id: 197 name: hello_docker @@ -45430,7 +45676,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-organization-events parameters: - - *87 + - *89 - *17 - *19 responses: @@ -45440,7 +45686,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: 200-response: value: @@ -45513,7 +45759,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#get-an-external-group parameters: - - *87 + - *89 - name: group_id description: The unique identifier of the group. in: path @@ -45539,7 +45785,7 @@ paths: description: Response content: application/json: - schema: &465 + schema: &468 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -45620,7 +45866,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &466 + default: &469 value: group_id: '123' group_name: Octocat admins @@ -45658,7 +45904,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-external-groups-available-to-an-organization parameters: - - *87 + - *89 - *17 - name: page description: Page token @@ -45675,7 +45921,7 @@ paths: description: Response content: application/json: - schema: &462 + schema: &465 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -45712,7 +45958,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &463 + default: &466 value: groups: - group_id: '123' @@ -45747,7 +45993,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-failed-organization-invitations parameters: - - *87 + - *89 - *17 - *19 responses: @@ -45757,7 +46003,7 @@ paths: application/json: schema: type: array - items: &375 + items: &378 title: Organization Invitation description: Organization Invitation type: object @@ -45804,7 +46050,7 @@ paths: - invitation_teams_url - node_id examples: - default: &376 + default: &379 value: - id: 1 login: monalisa @@ -45863,7 +46109,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---list-fine-grained-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -45871,7 +46117,7 @@ paths: application/json: schema: type: array - items: &431 + items: &434 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -45885,7 +46131,7 @@ paths: - name - description examples: - default: &432 + default: &435 value: - name: add_assignee description: Assign or remove a user @@ -45916,7 +46162,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-organization-webhooks parameters: - - *87 + - *89 - *17 - *19 responses: @@ -45926,7 +46172,7 @@ paths: application/json: schema: type: array - items: &352 + items: &355 title: Org Hook description: Org Hook type: object @@ -46035,7 +46281,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#create-an-organization-webhook parameters: - - *87 + - *89 requestBody: required: true content: @@ -46095,9 +46341,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: &353 + default: &356 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -46141,8 +46387,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - - *87 - - &354 + - *89 + - &357 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. @@ -46155,9 +46401,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: *353 + default: *356 '404': *6 x-github: githubCloudOnly: false @@ -46178,8 +46424,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 requestBody: required: false content: @@ -46224,7 +46470,7 @@ paths: description: Response content: application/json: - schema: *352 + schema: *355 examples: default: value: @@ -46263,8 +46509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 responses: '204': description: Response @@ -46289,8 +46535,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *87 - - *354 + - *89 + - *357 responses: '200': description: Response @@ -46318,8 +46564,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *87 - - *354 + - *89 + - *357 requestBody: required: false content: @@ -46367,10 +46613,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 - *17 - - *355 + - *358 responses: '200': description: Response @@ -46378,9 +46624,9 @@ paths: application/json: schema: type: array - items: *356 + items: *359 examples: - default: *357 + default: *360 '400': *14 '422': *15 x-github: @@ -46403,17 +46649,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 - *16 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 '400': *14 '422': *15 x-github: @@ -46436,8 +46682,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 - *16 responses: '202': *39 @@ -46463,8 +46709,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *87 - - *354 + - *89 + - *357 responses: '204': description: Response @@ -46486,8 +46732,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *87 - - &364 + - *89 + - &367 name: actor_type in: path description: The type of the actor @@ -46500,14 +46746,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &365 + - &368 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &360 + - &363 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`.' @@ -46515,7 +46761,7 @@ paths: required: true schema: type: string - - &361 + - &364 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) @@ -46526,7 +46772,7 @@ paths: type: string - *19 - *17 - - *110 + - *112 - name: sort description: The property to sort the results by. in: query @@ -46608,13 +46854,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - - *87 - - *360 - - *361 + - *89 + - *363 + - *364 - *19 - *17 - - *110 - - &370 + - *112 + - &373 name: sort description: The property to sort the results by. in: query @@ -46691,15 +46937,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - - *87 - - *360 - - *361 + - *89 + - *363 + - *364 responses: '200': description: Response content: application/json: - schema: &362 + schema: &365 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -46715,7 +46961,7 @@ paths: type: integer format: int64 examples: - default: &363 + default: &366 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -46735,24 +46981,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *87 - - &366 + - *89 + - &369 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *360 - - *361 + - *363 + - *364 responses: '200': description: Response content: application/json: - schema: *362 + schema: *365 examples: - default: *363 + default: *366 x-github: enabledForGitHubApps: true category: orgs @@ -46770,19 +47016,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *87 - - *360 - - *361 + - *89 + - *363 - *364 - - *365 + - *367 + - *368 responses: '200': description: Response content: application/json: - schema: *362 + schema: *365 examples: - default: *363 + default: *366 x-github: enabledForGitHubApps: true category: orgs @@ -46799,10 +47045,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - - *87 - - *360 - - *361 - - &367 + - *89 + - *363 + - *364 + - &370 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -46815,7 +47061,7 @@ paths: description: Response content: application/json: - schema: &368 + schema: &371 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -46831,7 +47077,7 @@ paths: type: integer format: int64 examples: - default: &369 + default: &372 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -46867,19 +47113,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - - *87 - - *366 - - *360 - - *361 - - *367 + - *89 + - *369 + - *363 + - *364 + - *370 responses: '200': description: Response content: application/json: - schema: *368 + schema: *371 examples: - default: *369 + default: *372 x-github: enabledForGitHubApps: true category: orgs @@ -46896,20 +47142,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *87 - - *364 - - *365 - - *360 - - *361 + - *89 - *367 + - *368 + - *363 + - *364 + - *370 responses: '200': description: Response content: application/json: - schema: *368 + schema: *371 examples: - default: *369 + default: *372 x-github: enabledForGitHubApps: true category: orgs @@ -46926,14 +47172,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - - *87 - - *366 - - *360 - - *361 + - *89 + - *369 + - *363 + - *364 - *19 - *17 - - *110 - - *370 + - *112 + - *373 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -47006,7 +47252,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *87 + - *89 responses: '200': description: Response @@ -47014,7 +47260,7 @@ paths: application/json: schema: *22 examples: - default: *371 + default: *374 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47037,7 +47283,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -47126,7 +47372,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -47134,12 +47380,12 @@ paths: application/json: schema: anyOf: - - &373 + - &376 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &372 + limit: &375 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -47164,7 +47410,7 @@ paths: properties: {} additionalProperties: false examples: - default: &374 + default: &377 value: limit: collaborators_only origin: organization @@ -47188,18 +47434,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: application/json: - schema: &657 + schema: &660 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *372 + limit: *375 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -47223,9 +47469,9 @@ paths: description: Response content: application/json: - schema: *373 + schema: *376 examples: - default: *374 + default: *377 '422': *15 x-github: githubCloudOnly: false @@ -47243,7 +47489,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -47269,7 +47515,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-pending-organization-invitations parameters: - - *87 + - *89 - *17 - *19 - name: role @@ -47303,9 +47549,9 @@ paths: application/json: schema: type: array - items: *375 + items: *378 examples: - default: *376 + default: *379 headers: Link: *47 '404': *6 @@ -47329,7 +47575,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#create-an-organization-invitation parameters: - - *87 + - *89 requestBody: required: false content: @@ -47383,7 +47629,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *378 examples: default: value: @@ -47439,8 +47685,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - - *87 - - &377 + - *89 + - &380 name: invitation_id description: The unique identifier of the invitation. in: path @@ -47473,8 +47719,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - - *87 - - *377 + - *89 + - *380 - *17 - *19 responses: @@ -47484,9 +47730,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: &396 + default: &399 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -47521,7 +47767,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -47529,7 +47775,7 @@ paths: application/json: schema: type: array - items: &378 + items: &381 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -47672,7 +47918,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -47762,9 +48008,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *381 examples: - default: &379 + default: &382 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -47819,8 +48065,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *87 - - &380 + - *89 + - &383 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -47919,9 +48165,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *381 examples: - default: *379 + default: *382 '404': *6 '422': *7 x-github: @@ -47945,10 +48191,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *87 - - *380 + - *89 + - *383 responses: - '204': *155 + '204': *157 '404': *6 '422': *7 x-github: @@ -47968,7 +48214,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -47976,7 +48222,7 @@ paths: application/json: schema: type: array - items: *381 + items: *384 examples: default: value: @@ -48014,7 +48260,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -48061,9 +48307,9 @@ paths: description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: &382 + default: &385 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -48095,8 +48341,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *87 - - &383 + - *89 + - &386 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -48149,9 +48395,9 @@ paths: description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: *382 + default: *385 '404': *6 '422': *7 x-github: @@ -48175,8 +48421,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *87 - - *383 + - *89 + - *386 responses: '204': description: Response @@ -48209,7 +48455,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *87 + - *89 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -48239,7 +48485,7 @@ paths: - closed - all default: open - - *384 + - *387 - name: type description: Can be the name of an issue type. in: query @@ -48257,8 +48503,8 @@ paths: - updated - comments default: created - - *110 - - *232 + - *112 + - *234 - *17 - *19 responses: @@ -48268,9 +48514,9 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: *385 + default: *388 headers: Link: *47 '404': *6 @@ -48292,7 +48538,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-members parameters: - - *87 + - *89 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -48330,7 +48576,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 '422': *15 @@ -48350,8 +48596,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response if requester is an organization member and user is @@ -48385,8 +48631,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -48413,8 +48659,8 @@ paths: parameters: - *17 - *19 - - *87 - - *143 + - *89 + - *145 responses: '200': description: Response @@ -48430,9 +48676,9 @@ paths: type: integer codespaces: type: array - items: *386 + items: *389 examples: - default: *387 + default: *390 '304': *37 '500': *40 '401': *25 @@ -48457,9 +48703,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *87 - - *143 - - &388 + - *89 + - *145 + - &391 name: codespace_name in: path required: true @@ -48492,17 +48738,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *87 - - *143 - - *388 + - *89 + - *145 + - *391 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: &572 + default: &575 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -48675,14 +48921,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *146 + schema: *148 examples: default: value: @@ -48751,14 +48997,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '200': description: Response content: application/json: - schema: &389 + schema: &392 title: Org Membership description: Org Membership type: object @@ -48802,7 +49048,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *73 + organization: *75 user: title: Simple User description: A GitHub user. @@ -48825,7 +49071,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &390 + response-if-user-has-an-active-admin-membership-with-organization: &393 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -48897,8 +49143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 requestBody: required: false content: @@ -48926,9 +49172,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: - response-if-user-already-had-membership-with-organization: *390 + response-if-user-already-had-membership-with-organization: *393 '422': *15 '403': *29 '451': *15 @@ -48953,8 +49199,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -48979,7 +49225,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-organization-migrations parameters: - - *87 + - *89 - *17 - *19 - name: exclude @@ -49000,7 +49246,7 @@ paths: application/json: schema: type: array - items: &391 + items: &394 title: Migration description: A migration. type: object @@ -49041,7 +49287,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *120 + items: *122 url: type: string format: uri @@ -49253,7 +49499,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#start-an-organization-migration parameters: - - *87 + - *89 requestBody: required: true content: @@ -49329,7 +49575,7 @@ paths: description: Response content: application/json: - schema: *391 + schema: *394 examples: default: value: @@ -49507,8 +49753,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - - *87 - - &392 + - *89 + - &395 name: migration_id description: The unique identifier of the migration. in: path @@ -49535,7 +49781,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *391 + schema: *394 examples: default: value: @@ -49704,8 +49950,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *87 - - *392 + - *89 + - *395 responses: '302': description: Response @@ -49726,8 +49972,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *87 - - *392 + - *89 + - *395 responses: '204': description: Response @@ -49750,9 +49996,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - - *87 - - *392 - - &826 + - *89 + - *395 + - &829 name: repo_name description: repo_name parameter in: path @@ -49779,8 +50025,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *87 - - *392 + - *89 + - *395 - *17 - *19 responses: @@ -49790,7 +50036,7 @@ paths: application/json: schema: type: array - items: *120 + items: *122 headers: Link: *47 '404': *6 @@ -49820,7 +50066,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-organization-fine-grained-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -49874,7 +50120,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response - list of organization roles @@ -49890,7 +50136,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &393 + items: &396 title: Organization Role description: Organization roles type: object @@ -50050,7 +50296,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#create-a-custom-organization-role parameters: - - *87 + - *89 requestBody: required: true content: @@ -50097,7 +50343,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *396 examples: default: value: @@ -50126,7 +50372,7 @@ paths: updated_at: '2022-07-04T22:19:11Z' '422': *15 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -50148,8 +50394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '204': description: Response @@ -50174,9 +50420,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *87 - - *218 - - *142 + - *89 + - *220 + - *144 responses: '204': description: Response @@ -50205,9 +50451,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *87 - - *218 - - *142 + - *89 + - *220 + - *144 responses: '204': description: Response @@ -50232,8 +50478,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -50258,9 +50504,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *87 - - *143 - - *142 + - *89 + - *145 + - *144 responses: '204': description: Response @@ -50290,9 +50536,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *87 - - *143 - - *142 + - *89 + - *145 + - *144 responses: '204': description: Response @@ -50320,14 +50566,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '200': description: Response content: application/json: - schema: *393 + schema: *396 examples: default: value: @@ -50384,8 +50630,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - - *87 - - *142 + - *89 + - *144 requestBody: required: true content: @@ -50424,7 +50670,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *396 examples: default: value: @@ -50452,7 +50698,7 @@ paths: created_at: '2022-07-04T22:19:11Z' updated_at: '2022-07-04T22:19:11Z' '422': *15 - '409': *119 + '409': *121 '404': *6 x-github: githubCloudOnly: true @@ -50477,8 +50723,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - - *87 - - *142 + - *89 + - *144 responses: '204': description: Response @@ -50503,8 +50749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *87 - - *142 + - *89 + - *144 - *17 - *19 responses: @@ -50582,8 +50828,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *394 - required: *395 + properties: *397 + required: *398 nullable: true type: description: The ownership type of the team @@ -50615,7 +50861,7 @@ paths: - type - parent examples: - default: *396 + default: *399 headers: Link: *47 '404': @@ -50644,8 +50890,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *87 - - *142 + - *89 + - *144 - *17 - *19 responses: @@ -50673,13 +50919,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &452 + items: &455 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *394 - required: *395 + properties: *397 + required: *398 name: nullable: true type: string @@ -50774,7 +51020,7 @@ paths: - type - url examples: - default: *214 + default: *216 headers: Link: *47 '404': @@ -50798,7 +51044,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *87 + - *89 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -50825,7 +51071,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -50850,8 +51096,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *87 - - *143 + - *89 + - *145 requestBody: required: false content: @@ -50908,8 +51154,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -50966,8 +51212,8 @@ paths: - docker - nuget - container - - *87 - - &827 + - *89 + - &830 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -51003,12 +51249,12 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: - default: *398 + default: *401 '403': *29 '401': *25 - '400': &829 + '400': &832 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -51030,7 +51276,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &399 + - &402 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 @@ -51048,20 +51294,20 @@ paths: - docker - nuget - container - - &400 + - &403 name: package_name description: The name of the package. in: path required: true schema: type: string - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *397 + schema: *400 examples: default: value: @@ -51113,9 +51359,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *399 - - *400 - - *87 + - *402 + - *403 + - *89 responses: '204': description: Response @@ -51147,9 +51393,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *399 - - *400 - - *87 + - *402 + - *403 + - *89 - name: token description: package token schema: @@ -51181,9 +51427,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *399 - - *400 - - *87 + - *402 + - *403 + - *89 - *19 - *17 - name: state @@ -51203,7 +51449,7 @@ paths: application/json: schema: type: array - items: &401 + items: &404 title: Package Version description: A version of a software package type: object @@ -51328,10 +51574,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *399 - - *400 - - *87 - - &402 + - *402 + - *403 + - *89 + - &405 name: package_version_id description: Unique identifier of the package version. in: path @@ -51343,7 +51589,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *404 examples: default: value: @@ -51379,10 +51625,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *399 - - *400 - - *87 - *402 + - *403 + - *89 + - *405 responses: '204': description: Response @@ -51414,10 +51660,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *399 - - *400 - - *87 - *402 + - *403 + - *89 + - *405 responses: '204': description: Response @@ -51444,10 +51690,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *87 + - *89 - *17 - *19 - - &403 + - &406 name: sort description: The property by which to sort the results. in: query @@ -51457,8 +51703,8 @@ paths: enum: - created_at default: created_at - - *110 - - &404 + - *112 + - &407 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -51469,7 +51715,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &405 + - &408 name: repository description: The name of the repository to use to filter the results. in: query @@ -51477,7 +51723,7 @@ paths: schema: type: string example: Hello-World - - &406 + - &409 name: permission description: The permission to use to filter the results. in: query @@ -51485,7 +51731,7 @@ paths: schema: type: string example: issues_read - - &407 + - &410 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) @@ -51495,7 +51741,7 @@ paths: schema: type: string format: date-time - - &408 + - &411 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) @@ -51505,7 +51751,7 @@ paths: schema: type: string format: date-time - - &409 + - &412 name: token_id description: The ID of the token in: query @@ -51669,7 +51915,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *87 + - *89 requestBody: required: true content: @@ -51735,7 +51981,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *87 + - *89 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -51775,7 +52021,7 @@ paths: '422': *15 '404': *6 '403': *29 - '204': *155 + '204': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51796,7 +52042,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *87 + - *89 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -51816,9 +52062,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: &410 + default: &413 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -51952,17 +52198,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *87 + - *89 - *17 - *19 - - *403 - - *110 - - *404 - - *405 - *406 + - *112 - *407 - *408 - *409 + - *410 + - *411 + - *412 responses: '500': *40 '422': *15 @@ -52111,7 +52357,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *87 + - *89 requestBody: required: true content: @@ -52171,7 +52417,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *87 + - *89 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -52201,7 +52447,7 @@ paths: responses: '500': *40 '404': *6 - '204': *155 + '204': *157 '403': *29 '422': *15 x-github: @@ -52223,7 +52469,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *87 + - *89 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -52242,9 +52488,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *410 + default: *413 headers: Link: *47 x-github: @@ -52268,7 +52514,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -52286,7 +52532,7 @@ paths: type: integer configurations: type: array - items: &411 + items: &414 title: Organization private registry description: Private registry configuration for an organization type: object @@ -52388,7 +52634,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -52576,7 +52822,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &412 + org-private-registry-with-selected-visibility: &415 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -52617,7 +52863,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -52665,16 +52911,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *87 - - *298 + - *89 + - *301 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *411 + schema: *414 examples: - default: *412 + default: *415 '404': *6 x-github: githubCloudOnly: false @@ -52695,8 +52941,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *87 - - *298 + - *89 + - *301 requestBody: required: true content: @@ -52800,8 +53046,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *87 - - *298 + - *89 + - *301 responses: '204': description: Response @@ -52824,15 +53070,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-organization parameters: - - *87 + - *89 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *108 - - *109 + - *110 + - *111 - *17 responses: '200': @@ -52841,7 +53087,7 @@ paths: application/json: schema: type: array - items: &413 + items: &416 title: Projects v2 Project description: A projects v2 project type: object @@ -52911,7 +53157,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &921 + properties: &924 id: type: number description: The unique identifier of the status update. @@ -52959,7 +53205,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &922 + required: &925 - id - node_id - created_at @@ -52984,7 +53230,7 @@ paths: - deleted_at - deleted_by examples: - default: &414 + default: &417 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -53087,22 +53333,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &415 + - &418 name: project_number description: The project's number. in: path required: true schema: type: integer - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *413 + schema: *416 examples: - default: *414 + default: *417 headers: Link: *47 '304': *37 @@ -53124,8 +53370,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *87 - - *415 + - *89 + - *418 requestBody: required: true description: Details of the draft item to create in the project. @@ -53159,7 +53405,7 @@ paths: description: Response content: application/json: - schema: &421 + schema: &424 title: Projects v2 Item description: An item belonging to a project type: object @@ -53172,8 +53418,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *225 - - &589 + - *227 + - &592 title: Pull Request Simple description: Pull Request Simple type: object @@ -53279,8 +53525,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *416 - required: *417 + properties: *419 + required: *420 nullable: true active_lock_reason: type: string @@ -53312,7 +53558,7 @@ paths: items: *4 requested_teams: type: array - items: *317 + items: *320 head: type: object properties: @@ -53320,7 +53566,7 @@ paths: type: string ref: type: string - repo: *78 + repo: *80 sha: type: string user: @@ -53343,7 +53589,7 @@ paths: type: string ref: type: string - repo: *78 + repo: *80 sha: type: string user: @@ -53362,7 +53608,7 @@ paths: _links: type: object properties: - comments: &418 + comments: &421 title: Link description: Hypermedia Link type: object @@ -53371,13 +53617,13 @@ paths: type: string required: - href - commits: *418 - statuses: *418 - html: *418 - issue: *418 - review_comments: *418 - review_comment: *418 - self: *418 + commits: *421 + statuses: *421 + html: *421 + issue: *421 + review_comments: *421 + review_comment: *421 + self: *421 required: - comments - commits @@ -53387,8 +53633,8 @@ paths: - review_comments - review_comment - self - author_association: *222 - auto_merge: &709 + author_association: *224 + auto_merge: &712 title: Auto merge description: The status of auto merging a pull request. type: object @@ -53488,7 +53734,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &420 + content_type: &423 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -53528,7 +53774,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &422 + draft_issue: &425 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -53602,11 +53848,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *415 - - *87 + - *418 + - *89 - *17 - - *108 - - *109 + - *110 + - *111 responses: '200': description: Response @@ -53614,7 +53860,7 @@ paths: application/json: schema: type: array - items: &419 + items: &422 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -53764,7 +54010,7 @@ paths: - updated_at - project_url examples: - default: &849 + default: &852 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -53894,8 +54140,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *415 - - *87 + - *418 + - *89 requestBody: required: true content: @@ -53941,7 +54187,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &850 + items: &853 type: object properties: name: @@ -53978,7 +54224,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &851 + iteration_configuration: &854 type: object description: The configuration for iteration fields. properties: @@ -54028,7 +54274,7 @@ paths: value: name: Due date data_type: date - single_select_field: &852 + single_select_field: &855 summary: Create a single select field value: name: Priority @@ -54055,7 +54301,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &853 + iteration_field: &856 summary: Create an iteration field value: name: Sprint @@ -54079,9 +54325,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *419 + schema: *422 examples: - text_field: &854 + text_field: &857 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -54090,7 +54336,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: &855 + number_field: &858 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -54099,7 +54345,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: &856 + date_field: &859 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -54108,7 +54354,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: &857 + single_select_field: &860 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -54142,7 +54388,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &858 + iteration_field: &861 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -54187,23 +54433,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *415 - - &859 + - *418 + - &862 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *419 + schema: *422 examples: - default: &860 + default: &863 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -54259,8 +54505,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *415 - - *87 + - *418 + - *89 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) for more information. @@ -54282,8 +54528,8 @@ paths: maxItems: 50 items: type: string - - *108 - - *109 + - *110 + - *111 - *17 responses: '200': @@ -54292,7 +54538,7 @@ paths: application/json: schema: type: array - items: &423 + items: &426 title: Projects v2 Item description: An item belonging to a project type: object @@ -54308,7 +54554,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *420 + content_type: *423 content: type: object additionalProperties: true @@ -54351,7 +54597,7 @@ paths: - updated_at - archived_at examples: - default: &424 + default: &427 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -55048,8 +55294,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - - *87 - - *415 + - *89 + - *418 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -55119,22 +55365,22 @@ paths: description: Response content: application/json: - schema: *421 + schema: *424 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *422 + value: *425 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *422 + value: *425 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *422 + value: *425 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *422 + value: *425 '304': *37 '403': *29 '401': *25 @@ -55154,9 +55400,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *415 - - *87 - - &425 + - *418 + - *89 + - &428 name: item_id description: The unique identifier of the project item. in: path @@ -55182,9 +55428,9 @@ paths: description: Response content: application/json: - schema: *423 + schema: *426 examples: - default: *424 + default: *427 headers: Link: *47 '304': *37 @@ -55205,9 +55451,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *415 - - *87 - - *425 + - *418 + - *89 + - *428 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -55277,13 +55523,13 @@ paths: description: Response content: application/json: - schema: *423 + schema: *426 examples: - text_field: *424 - number_field: *424 - date_field: *424 - single_select_field: *424 - iteration_field: *424 + text_field: *427 + number_field: *427 + date_field: *427 + single_select_field: *427 + iteration_field: *427 '401': *25 '403': *29 '404': *6 @@ -55303,9 +55549,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *415 - - *87 - - *425 + - *418 + - *89 + - *428 responses: '204': description: Response @@ -55328,8 +55574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *87 - - *415 + - *89 + - *418 requestBody: required: true content: @@ -55400,7 +55646,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &841 + schema: &844 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -55498,7 +55744,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &426 + value: &429 value: id: 1 number: 1 @@ -55544,10 +55790,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *426 + value: *429 roadmap_view: summary: Response for creating a roadmap view - value: *426 + value: *429 '304': *37 '403': *29 '401': *25 @@ -55575,9 +55821,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-an-organization-project-view parameters: - - *415 - - *87 - - &861 + - *418 + - *89 + - &864 name: view_number description: The number that identifies the project view. in: path @@ -55599,8 +55845,8 @@ paths: maxItems: 50 items: type: string - - *108 - - *109 + - *110 + - *111 - *17 responses: '200': @@ -55609,9 +55855,9 @@ paths: application/json: schema: type: array - items: *423 + items: *426 examples: - default: *424 + default: *427 headers: Link: *47 '304': *37 @@ -55636,7 +55882,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -55644,9 +55890,9 @@ paths: application/json: schema: type: array - items: *157 + items: *159 examples: - default: *158 + default: *160 '403': *29 '404': *6 x-github: @@ -55673,7 +55919,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -55684,7 +55930,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *157 + items: *159 minItems: 1 maxItems: 100 required: @@ -55714,9 +55960,9 @@ paths: application/json: schema: type: array - items: *157 + items: *159 examples: - default: *158 + default: *160 '403': *29 '404': *6 x-github: @@ -55737,16 +55983,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *87 - - *153 + - *89 + - *155 responses: '200': description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 '403': *29 '404': *6 x-github: @@ -55769,13 +56015,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *87 - - *153 + - *89 + - *155 requestBody: required: true content: application/json: - schema: *427 + schema: *430 examples: default: value: @@ -55791,9 +56037,9 @@ paths: description: Response content: application/json: - schema: *157 + schema: *159 examples: - default: *159 + default: *161 '403': *29 '404': *6 x-github: @@ -55816,10 +56062,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *87 - - *153 + - *89 + - *155 responses: - '204': *155 + '204': *157 '403': *29 '404': *6 x-github: @@ -55840,7 +56086,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *87 + - *89 - *17 - *19 - name: repository_query @@ -55878,7 +56124,7 @@ paths: example: octocat/Hello-World properties: type: array - items: *156 + items: *158 description: List of custom property names and associated values required: - repository_id @@ -55927,7 +56173,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *87 + - *89 requestBody: required: true content: @@ -55947,7 +56193,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *156 + items: *158 required: - repository_names - properties @@ -55988,7 +56234,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-public-organization-members parameters: - - *87 + - *89 - *17 - *19 responses: @@ -56000,7 +56246,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -56019,8 +56265,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response if user is a public member @@ -56044,8 +56290,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -56066,8 +56312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *87 - - *143 + - *89 + - *145 responses: '204': description: Response @@ -56091,7 +56337,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-organization-repositories parameters: - - *87 + - *89 - name: type description: Specifies the types of repositories you want returned. `internal` is not yet supported when a GitHub App calls this endpoint with an installation @@ -56138,9 +56384,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *410 + default: *413 headers: Link: *47 x-github: @@ -56161,7 +56407,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-organization-repository parameters: - - *87 + - *89 requestBody: required: true content: @@ -56343,7 +56589,7 @@ paths: description: Response content: application/json: - schema: &473 + schema: &476 title: Full Repository description: Full Repository type: object @@ -56631,8 +56877,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *428 - required: *429 + properties: *431 + required: *432 nullable: true temp_clone_token: type: string @@ -56716,8 +56962,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true organization: title: Simple User @@ -56726,8 +56972,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *78 - source: *78 + parent: *80 + source: *80 forks: type: integer master_branch: @@ -56744,7 +56990,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &594 + properties: &597 url: type: string format: uri @@ -56760,12 +57006,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &595 + required: &598 - url - key - name - html_url - security_and_analysis: *430 + security_and_analysis: *433 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -56849,7 +57095,7 @@ paths: - network_count - subscribers_count examples: - default: &475 + default: &478 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -57368,7 +57614,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#list-repository-fine-grained-permissions-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Response @@ -57376,9 +57622,9 @@ paths: application/json: schema: type: array - items: *431 + items: *434 examples: - default: *432 + default: *435 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -57400,10 +57646,10 @@ paths: category: orgs subcategory: rules parameters: - - *87 + - *89 - *17 - *19 - - &731 + - &734 name: targets description: | A comma-separated list of rule targets to filter by. @@ -57421,7 +57667,7 @@ paths: application/json: schema: type: array - items: *191 + items: *193 examples: default: value: @@ -57468,7 +57714,7 @@ paths: category: orgs subcategory: rules parameters: - - *87 + - *89 requestBody: description: Request body required: true @@ -57489,22 +57735,20 @@ paths: - push - repository default: branch - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 - conditions: *433 + items: *171 + conditions: *436 rules: type: array description: An array of rules within the ruleset. - items: &435 + items: &438 title: Repository Rule type: object description: A repository rule. oneOf: - - *170 - - *171 - *172 - *173 - *174 @@ -57524,6 +57768,8 @@ paths: - *188 - *189 - *190 + - *191 + - *192 required: - name - enforcement @@ -57561,9 +57807,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: &434 + default: &437 value: id: 21 name: super cool ruleset @@ -57618,8 +57864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *87 - - &733 + - *89 + - &736 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 @@ -57629,16 +57875,16 @@ paths: schema: type: string x-multi-segment: true - - *314 - - *105 - - &734 + - *317 + - *107 + - &737 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 - - &735 + - &738 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -57658,7 +57904,7 @@ paths: description: Response content: application/json: - schema: &736 + schema: &739 title: Rule Suites description: Response type: array @@ -57713,7 +57959,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &737 + default: &740 value: - id: 21 actor_id: 12 @@ -57756,8 +58002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *87 - - &738 + - *89 + - &741 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -57773,7 +58019,7 @@ paths: description: Response content: application/json: - schema: &739 + schema: &742 title: Rule Suite description: Response type: object @@ -57872,7 +58118,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &740 + default: &743 value: id: 21 actor_id: 12 @@ -57933,7 +58179,7 @@ paths: category: orgs subcategory: rules parameters: - - *87 + - *89 - name: ruleset_id description: The ID of the ruleset. in: path @@ -57945,9 +58191,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *434 + default: *437 '404': *6 '500': *40 put: @@ -57965,7 +58211,7 @@ paths: category: orgs subcategory: rules parameters: - - *87 + - *89 - name: ruleset_id description: The ID of the ruleset. in: path @@ -57991,16 +58237,16 @@ paths: - tag - push - repository - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 - conditions: *433 + items: *171 + conditions: *436 rules: description: An array of rules within the ruleset. type: array - items: *435 + items: *438 examples: default: value: @@ -58035,9 +58281,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *434 + default: *437 '404': *6 '422': *15 '500': *40 @@ -58056,7 +58302,7 @@ paths: category: orgs subcategory: rules parameters: - - *87 + - *89 - name: ruleset_id description: The ID of the ruleset. in: path @@ -58079,7 +58325,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-history parameters: - - *87 + - *89 - *17 - *19 - name: ruleset_id @@ -58095,9 +58341,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *436 + default: *439 '404': *6 '500': *40 x-github: @@ -58116,7 +58362,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-version parameters: - - *87 + - *89 - name: ruleset_id description: The ID of the ruleset. in: path @@ -58134,7 +58380,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *440 examples: default: value: @@ -58196,16 +58442,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *87 - - *438 - - *439 - - *440 + - *89 - *441 - *442 - - *110 + - *443 + - *444 + - *445 + - *112 - *19 - *17 - - &742 + - &745 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -58215,7 +58461,7 @@ paths: required: false schema: type: string - - &743 + - &746 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -58225,10 +58471,10 @@ paths: required: false schema: type: string - - *443 - - *444 - - *445 - *446 + - *447 + - *448 + - *449 responses: '200': description: Response @@ -58236,13 +58482,13 @@ paths: application/json: schema: type: array - items: *447 + items: *450 examples: - default: *448 + default: *451 headers: Link: *47 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58267,15 +58513,15 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *449 + schema: *452 examples: - default: *450 + default: *453 '403': *29 '404': *6 patch: @@ -58296,7 +58542,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *87 + - *89 requestBody: required: true content: @@ -58304,7 +58550,7 @@ paths: schema: type: object properties: - pattern_config_version: *198 + pattern_config_version: *200 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -58330,7 +58576,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *198 + custom_pattern_version: *200 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -58366,7 +58612,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *15 "/orgs/{org}/security-advisories": get: @@ -58384,8 +58630,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *87 - - *110 + - *89 + - *112 - name: sort description: The property to sort the results by. in: query @@ -58397,8 +58643,8 @@ paths: - updated - published default: created - - *108 - - *109 + - *110 + - *111 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -58428,7 +58674,7 @@ paths: application/json: schema: type: array - items: &764 + items: &767 description: A repository security advisory. type: object properties: @@ -58597,7 +58843,7 @@ paths: - patched_versions - vulnerable_functions additionalProperties: false - cvss_severities: *130 + cvss_severities: *132 cwes: type: array nullable: true @@ -58630,7 +58876,7 @@ paths: login: type: string description: The username of the user credited. - type: *451 + type: *454 credits_detailed: type: array nullable: true @@ -58640,7 +58886,7 @@ paths: type: object properties: user: *4 - type: *451 + type: *454 state: type: string description: The state of the user's acceptance of the @@ -58664,14 +58910,14 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *317 + items: *320 private_fork: readOnly: true nullable: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *120 + - *122 required: - ghsa_id - cve_id @@ -58700,7 +58946,7 @@ paths: - private_fork additionalProperties: false examples: - default: &765 + default: &768 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -59079,7 +59325,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#list-security-manager-teams parameters: - - *87 + - *89 responses: '200': description: Response @@ -59087,7 +59333,7 @@ paths: application/json: schema: type: array - items: *452 + items: *455 examples: default: value: @@ -59127,8 +59373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '204': description: Response @@ -59153,8 +59399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '204': description: Response @@ -59185,8 +59431,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - - *87 - - *453 + - *89 + - *456 - *17 - *19 responses: @@ -59194,9 +59440,9 @@ paths: description: Success content: application/json: - schema: *454 + schema: *457 examples: - default: *455 + default: *458 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -59216,7 +59462,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *87 + - *89 responses: '200': description: Immutable releases settings response @@ -59265,7 +59511,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *87 + - *89 responses: '204': description: Response @@ -59322,7 +59568,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *87 + - *89 - *19 - *17 responses: @@ -59340,9 +59586,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: *302 + default: *305 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59361,7 +59607,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *87 + - *89 requestBody: required: true content: @@ -59410,8 +59656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *87 - - *282 + - *89 + - *285 responses: '204': description: Response @@ -59433,8 +59679,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *87 - - *282 + - *89 + - *285 responses: '204': description: Response @@ -59457,7 +59703,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *87 + - *89 - *17 - *19 responses: @@ -59475,9 +59721,9 @@ paths: type: integer network_configurations: type: array - items: *148 + items: *150 examples: - default: *456 + default: *459 headers: Link: *47 x-github: @@ -59498,7 +59744,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization parameters: - - *87 + - *89 requestBody: required: true content: @@ -59541,9 +59787,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *149 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59563,16 +59809,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - - *87 - - *150 + - *89 + - *152 responses: '200': description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *149 + default: *151 headers: Link: *47 x-github: @@ -59593,8 +59839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - - *87 - - *150 + - *89 + - *152 requestBody: required: true content: @@ -59634,9 +59880,9 @@ paths: description: Response content: application/json: - schema: *148 + schema: *150 examples: - default: *149 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59655,8 +59901,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - - *87 - - *150 + - *89 + - *152 responses: '204': description: Response @@ -59679,16 +59925,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - - *87 - - *457 + - *89 + - *460 responses: '200': description: Response content: application/json: - schema: *458 + schema: *461 examples: - default: *459 + default: *462 headers: Link: *47 x-github: @@ -59707,7 +59953,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-an-organization parameters: - - *87 + - *89 - *17 - name: page description: Page token @@ -59726,7 +59972,7 @@ paths: description: Response content: application/json: - schema: &470 + schema: &473 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -59772,7 +60018,7 @@ paths: type: string nullable: true examples: - default: &471 + default: &474 value: groups: - group_id: '123' @@ -59817,8 +60063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *87 - - *218 + - *89 + - *220 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -59850,13 +60096,13 @@ paths: application/json: schema: type: array - items: *209 + items: *211 examples: - default: *210 + default: *212 '500': *40 '403': *29 '404': *6 - '422': *211 + '422': *213 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59874,7 +60120,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-teams parameters: - - *87 + - *89 - *17 - *19 - name: team_type @@ -59896,9 +60142,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 headers: Link: *47 '403': *29 @@ -59920,7 +60166,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#create-a-team parameters: - - *87 + - *89 requestBody: required: true content: @@ -59984,7 +60230,7 @@ paths: description: Response content: application/json: - schema: &460 + schema: &463 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -60047,8 +60293,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *394 - required: *395 + properties: *397 + required: *398 nullable: true members_count: type: integer @@ -60311,7 +60557,7 @@ paths: - repos_count - organization examples: - default: &461 + default: &464 value: id: 1 node_id: MDQ6VGVhbTE= @@ -60381,16 +60627,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - - *87 - - *218 + - *89 + - *220 responses: '200': description: Response content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '404': *6 x-github: githubCloudOnly: false @@ -60411,8 +60657,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - - *87 - - *218 + - *89 + - *220 requestBody: required: false content: @@ -60474,16 +60720,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '201': description: Response content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '404': *6 '422': *15 '403': *29 @@ -60508,12 +60754,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '204': description: Response - '422': &464 + '422': &467 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -60535,17 +60781,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '200': description: Response content: application/json: - schema: *462 + schema: *465 examples: - default: *463 - '422': *464 + default: *466 + '422': *467 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -60564,8 +60810,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - - *87 - - *218 + - *89 + - *220 requestBody: required: true content: @@ -60588,10 +60834,10 @@ paths: description: Response content: application/json: - schema: *465 + schema: *468 examples: - default: *466 - '422': *464 + default: *469 + '422': *467 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -60610,12 +60856,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '204': description: Response - '422': *464 + '422': *467 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -60636,8 +60882,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - - *87 - - *218 + - *89 + - *220 - *17 - *19 responses: @@ -60647,12 +60893,12 @@ paths: application/json: schema: type: array - items: *375 + items: *378 examples: - default: *376 + default: *379 headers: Link: *47 - '422': *464 + '422': *467 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60672,8 +60918,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - - *87 - - *218 + - *89 + - *220 - name: role description: Filters members returned by their role in the team. in: query @@ -60696,7 +60942,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -60726,15 +60972,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - - *87 - - *218 - - *143 + - *89 + - *220 + - *145 responses: '200': description: Response content: application/json: - schema: &467 + schema: &470 title: Team Membership description: Team Membership type: object @@ -60761,7 +61007,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &807 + response-if-user-is-a-team-maintainer: &810 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -60797,9 +61043,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *87 - - *218 - - *143 + - *89 + - *220 + - *145 requestBody: required: false content: @@ -60824,9 +61070,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *470 examples: - response-if-users-membership-with-team-is-now-pending: &808 + response-if-users-membership-with-team-is-now-pending: &811 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -60861,9 +61107,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - - *87 - - *218 - - *143 + - *89 + - *220 + - *145 responses: '204': description: Response @@ -60889,8 +61135,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - - *87 - - *218 + - *89 + - *220 - *17 - *19 responses: @@ -60900,9 +61146,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *410 + default: *413 headers: Link: *47 x-github: @@ -60931,16 +61177,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *87 - - *218 - - *468 - - *469 + - *89 + - *220 + - *471 + - *472 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &809 + schema: &812 title: Team Repository description: A team's access to a repository. type: object @@ -60963,8 +61209,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true forks: type: integer @@ -61503,10 +61749,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *87 - - *218 - - *468 - - *469 + - *89 + - *220 + - *471 + - *472 requestBody: required: false content: @@ -61551,10 +61797,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - - *87 - - *218 - - *468 - - *469 + - *89 + - *220 + - *471 + - *472 responses: '204': description: Response @@ -61580,17 +61826,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - - *87 - - *218 + - *89 + - *220 responses: '200': description: Response content: application/json: - schema: *470 + schema: *473 examples: - default: *471 - '422': *464 + default: *474 + '422': *467 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -61612,8 +61858,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - - *87 - - *218 + - *89 + - *220 requestBody: required: true content: @@ -61656,7 +61902,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -61668,7 +61914,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *464 + '422': *467 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -61689,8 +61935,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - - *87 - - *218 + - *89 + - *220 - *17 - *19 responses: @@ -61700,9 +61946,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - response-if-child-teams-exist: &810 + response-if-child-teams-exist: &813 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -61755,7 +62001,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *87 + - *89 - name: security_product in: path description: The security feature to enable or disable. @@ -61856,7 +62102,7 @@ paths: resources: type: object properties: - core: &472 + core: &475 title: Rate Limit type: object properties: @@ -61873,17 +62119,17 @@ paths: - remaining - reset - used - graphql: *472 - search: *472 - code_search: *472 - source_import: *472 - integration_manifest: *472 - code_scanning_upload: *472 - actions_runner_registration: *472 - scim: *472 - dependency_snapshots: *472 - dependency_sbom: *472 - code_scanning_autofix: *472 + graphql: *475 + search: *475 + code_search: *475 + source_import: *475 + integration_manifest: *475 + code_scanning_upload: *475 + actions_runner_registration: *475 + scim: *475 + dependency_snapshots: *475 + dependency_sbom: *475 + code_scanning_autofix: *475 required: - core - search @@ -61990,14 +62236,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *473 + schema: *476 examples: default-response: summary: Default response @@ -62506,7 +62752,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *474 + '301': *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62524,8 +62770,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -62826,10 +63072,10 @@ paths: description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *475 - '307': &476 + default: *478 + '307': &479 description: Temporary Redirect content: application/json: @@ -62858,8 +63104,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -62881,9 +63127,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *476 + '307': *479 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62905,11 +63151,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 - - &493 + - &496 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -62932,7 +63178,7 @@ paths: type: integer artifacts: type: array - items: &477 + items: &480 title: Artifact description: An artifact type: object @@ -63010,7 +63256,7 @@ paths: - expires_at - updated_at examples: - default: &494 + default: &497 value: total_count: 2 artifacts: @@ -63071,9 +63317,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *468 - - *469 - - &478 + - *471 + - *472 + - &481 name: artifact_id description: The unique identifier of the artifact. in: path @@ -63085,7 +63331,7 @@ paths: description: Response content: application/json: - schema: *477 + schema: *480 examples: default: value: @@ -63123,9 +63369,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *468 - - *469 - - *478 + - *471 + - *472 + - *481 responses: '204': description: Response @@ -63149,9 +63395,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *468 - - *469 - - *478 + - *471 + - *472 + - *481 - name: archive_format in: path required: true @@ -63165,7 +63411,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &660 + '410': &663 description: Gone content: application/json: @@ -63190,14 +63436,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: &479 + schema: &482 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -63230,13 +63476,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: application/json: - schema: *479 + schema: *482 examples: selected_actions: *44 responses: @@ -63265,14 +63511,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: &480 + schema: &483 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -63305,13 +63551,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: application/json: - schema: *480 + schema: *483 examples: selected_actions: *46 responses: @@ -63342,14 +63588,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *481 + schema: *484 examples: default: value: @@ -63375,11 +63621,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 - - &482 + - &485 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 @@ -63407,13 +63653,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *110 + - *112 responses: '200': description: Response content: application/json: - schema: &483 + schema: &486 title: Repository actions caches description: Repository actions caches type: object @@ -63455,7 +63701,7 @@ paths: - total_count - actions_caches examples: - default: &484 + default: &487 value: total_count: 1 actions_caches: @@ -63487,23 +63733,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *468 - - *469 + - *471 + - *472 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *482 + - *485 responses: '200': description: Response content: application/json: - schema: *483 + schema: *486 examples: - default: *484 + default: *487 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63523,8 +63769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *468 - - *469 + - *471 + - *472 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -63555,9 +63801,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *468 - - *469 - - &485 + - *471 + - *472 + - &488 name: job_id description: The unique identifier of the job. in: path @@ -63569,7 +63815,7 @@ paths: description: Response content: application/json: - schema: &497 + schema: &500 title: Job description: Information of a job execution in a workflow run type: object @@ -63876,9 +64122,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *468 - - *469 - - *485 + - *471 + - *472 + - *488 responses: '302': description: Response @@ -63906,9 +64152,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *468 - - *469 - - *485 + - *471 + - *472 + - *488 requestBody: required: false content: @@ -63929,7 +64175,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -63953,8 +64199,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Status response @@ -64004,8 +64250,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -64039,7 +64285,7 @@ paths: description: Empty response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -64068,8 +64314,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -64087,7 +64333,7 @@ paths: type: integer secrets: type: array - items: &499 + items: &502 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -64107,7 +64353,7 @@ paths: - created_at - updated_at examples: - default: &500 + default: &503 value: total_count: 2 secrets: @@ -64140,9 +64386,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *468 - - *469 - - *486 + - *471 + - *472 + - *489 - *19 responses: '200': @@ -64159,7 +64405,7 @@ paths: type: integer variables: type: array - items: &503 + items: &506 title: Actions Variable type: object properties: @@ -64189,7 +64435,7 @@ paths: - created_at - updated_at examples: - default: &504 + default: &507 value: total_count: 2 variables: @@ -64222,8 +64468,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -64232,12 +64478,12 @@ paths: schema: type: object properties: - enabled: &487 + enabled: &490 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *60 - selected_actions_url: *275 - sha_pinning_required: *61 + allowed_actions: *62 + selected_actions_url: *278 + sha_pinning_required: *63 required: - enabled examples: @@ -64267,8 +64513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -64279,9 +64525,9 @@ paths: schema: type: object properties: - enabled: *487 - allowed_actions: *60 - sha_pinning_required: *61 + enabled: *490 + allowed_actions: *62 + sha_pinning_required: *63 required: - enabled examples: @@ -64312,14 +64558,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: &488 + schema: &491 type: object properties: access_level: @@ -64337,7 +64583,7 @@ paths: required: - access_level examples: - default: &489 + default: &492 value: access_level: organization x-github: @@ -64362,15 +64608,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: application/json: - schema: *488 + schema: *491 examples: - default: *489 + default: *492 responses: '204': description: Response @@ -64394,14 +64640,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *277 + schema: *280 examples: default: value: @@ -64425,8 +64671,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Empty response for successful settings update @@ -64436,7 +64682,7 @@ paths: required: true content: application/json: - schema: *278 + schema: *281 examples: default: summary: Set retention days @@ -64460,16 +64706,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *62 + schema: *64 examples: - default: *279 + default: *282 '404': *6 x-github: enabledForGitHubApps: true @@ -64488,8 +64734,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -64499,7 +64745,7 @@ paths: required: true content: application/json: - schema: *62 + schema: *64 examples: default: summary: Set approval policy to first time contributors @@ -64523,16 +64769,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: *63 + default: *65 '403': *29 '404': *6 x-github: @@ -64552,15 +64798,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: application/json: - schema: *281 + schema: *284 examples: - default: *63 + default: *65 responses: '204': description: Empty response for successful settings update @@ -64584,16 +64830,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64616,8 +64862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -64625,9 +64871,9 @@ paths: required: false content: application/json: - schema: *65 + schema: *67 examples: - selected_actions: *66 + selected_actions: *68 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64649,16 +64895,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *284 + schema: *287 examples: - default: *69 + default: *71 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64679,8 +64925,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Success response @@ -64691,9 +64937,9 @@ paths: required: true content: application/json: - schema: *285 + schema: *288 examples: - default: *69 + default: *71 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64720,8 +64966,8 @@ paths: in: query schema: type: string - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -64739,9 +64985,9 @@ paths: type: integer runners: type: array - items: *76 + items: *78 examples: - default: *77 + default: *79 headers: Link: *47 x-github: @@ -64765,8 +65011,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -64774,9 +65020,9 @@ paths: application/json: schema: type: array - items: *289 + items: *292 examples: - default: *290 + default: *293 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64798,8 +65044,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -64842,10 +65088,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *291 + '201': *294 '404': *6 '422': *7 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64873,16 +65119,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: - default: *292 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64910,16 +65156,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: - default: *293 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64941,17 +65187,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 responses: '200': description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: *294 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64972,9 +65218,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 responses: '204': description: Response @@ -65000,11 +65246,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 responses: - '200': *81 + '200': *83 '404': *6 x-github: githubCloudOnly: false @@ -65026,9 +65272,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 requestBody: required: true content: @@ -65052,7 +65298,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -65076,9 +65322,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 requestBody: required: true content: @@ -65103,7 +65349,7 @@ paths: - gpu - accelerated responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -65127,11 +65373,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 + - *471 + - *472 + - *77 responses: - '200': *295 + '200': *298 '404': *6 x-github: githubCloudOnly: false @@ -65158,12 +65404,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *468 - - *469 - - *75 - - *296 + - *471 + - *472 + - *77 + - *299 responses: - '200': *81 + '200': *83 '404': *6 '422': *7 x-github: @@ -65189,9 +65435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *468 - - *469 - - &507 + - *471 + - *472 + - &510 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. @@ -65199,7 +65445,7 @@ paths: required: false schema: type: string - - &508 + - &511 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -65207,7 +65453,7 @@ paths: required: false schema: type: string - - &509 + - &512 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -65216,7 +65462,7 @@ paths: required: false schema: type: string - - &510 + - &513 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 @@ -65243,7 +65489,7 @@ paths: - pending - *17 - *19 - - &511 + - &514 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -65252,7 +65498,7 @@ paths: schema: type: string format: date-time - - &490 + - &493 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -65261,13 +65507,13 @@ paths: schema: type: boolean default: false - - &512 + - &515 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &513 + - &516 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -65290,7 +65536,7 @@ paths: type: integer workflow_runs: type: array - items: &491 + items: &494 title: Workflow Run description: An invocation of a workflow type: object @@ -65385,7 +65631,7 @@ paths: that triggered the run. type: array nullable: true - items: *230 + items: *232 created_at: type: string format: date-time @@ -65438,7 +65684,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &535 + properties: &538 id: type: string description: SHA for the commit @@ -65489,7 +65735,7 @@ paths: - name - email nullable: true - required: &536 + required: &539 - id - tree_id - message @@ -65497,8 +65743,8 @@ paths: - author - committer nullable: true - repository: *288 - head_repository: *288 + repository: *291 + head_repository: *291 head_repository_id: type: integer example: 5 @@ -65536,7 +65782,7 @@ paths: - workflow_url - pull_requests examples: - default: &514 + default: &517 value: total_count: 1 workflow_runs: @@ -65772,24 +66018,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *468 - - *469 - - &492 + - *471 + - *472 + - &495 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *490 + - *493 responses: '200': description: Response content: application/json: - schema: *491 + schema: *494 examples: - default: &495 + default: &498 value: id: 30433642 name: Build @@ -66030,9 +66276,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '204': description: Response @@ -66055,9 +66301,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '200': description: Response @@ -66176,15 +66422,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '201': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -66211,13 +66457,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 - *17 - *19 - - *493 - - *110 + - *496 + - *112 responses: '200': description: Response @@ -66233,9 +66479,9 @@ paths: type: integer artifacts: type: array - items: *477 + items: *480 examples: - default: *494 + default: *497 headers: Link: *47 x-github: @@ -66259,25 +66505,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *468 - - *469 - - *492 - - &496 + - *471 + - *472 + - *495 + - &499 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *490 + - *493 responses: '200': description: Response content: application/json: - schema: *491 + schema: *494 examples: - default: *495 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66300,10 +66546,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *468 - - *469 - - *492 - - *496 + - *471 + - *472 + - *495 + - *499 - *17 - *19 responses: @@ -66321,9 +66567,9 @@ paths: type: integer jobs: type: array - items: *497 + items: *500 examples: - default: &498 + default: &501 value: total_count: 1 jobs: @@ -66436,10 +66682,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *468 - - *469 - - *492 - - *496 + - *471 + - *472 + - *495 + - *499 responses: '302': description: Response @@ -66467,19 +66713,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '202': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66502,9 +66748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 requestBody: required: true content: @@ -66571,19 +66817,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '202': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66606,9 +66852,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 - 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 @@ -66638,9 +66884,9 @@ paths: type: integer jobs: type: array - items: *497 + items: *500 examples: - default: *498 + default: *501 headers: Link: *47 x-github: @@ -66665,9 +66911,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '302': description: Response @@ -66694,9 +66940,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '204': description: Response @@ -66723,9 +66969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '200': description: Response @@ -66785,7 +67031,7 @@ paths: items: type: object properties: - type: &627 + type: &630 type: string description: The type of reviewer. enum: @@ -66795,7 +67041,7 @@ paths: reviewer: anyOf: - *4 - - *317 + - *320 required: - environment - wait_timer @@ -66870,9 +67116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 requestBody: required: true content: @@ -66919,12 +67165,12 @@ paths: application/json: schema: type: array - items: &612 + items: &615 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &879 + properties: &882 url: type: string format: uri @@ -67007,9 +67253,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 - required: &880 + properties: *222 + required: *223 + required: &883 - id - node_id - sha @@ -67025,7 +67271,7 @@ paths: - created_at - updated_at examples: - default: &613 + default: &616 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -67081,9 +67327,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 requestBody: required: false content: @@ -67104,7 +67350,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -67127,9 +67373,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 requestBody: required: false content: @@ -67150,7 +67396,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -67183,9 +67429,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *468 - - *469 - - *492 + - *471 + - *472 + - *495 responses: '200': description: Response @@ -67322,8 +67568,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -67341,9 +67587,9 @@ paths: type: integer secrets: type: array - items: *499 + items: *502 examples: - default: *500 + default: *503 headers: Link: *47 x-github: @@ -67368,16 +67614,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *502 + default: *505 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67399,17 +67645,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '200': description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: &640 + default: &643 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -67435,9 +67681,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 requestBody: required: true content: @@ -67468,7 +67714,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -67494,9 +67740,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '204': description: Response @@ -67521,9 +67767,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *468 - - *469 - - *486 + - *471 + - *472 + - *489 - *19 responses: '200': @@ -67540,9 +67786,9 @@ paths: type: integer variables: type: array - items: *503 + items: *506 examples: - default: *504 + default: *507 headers: Link: *47 x-github: @@ -67565,8 +67811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -67593,7 +67839,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -67618,17 +67864,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *468 - - *469 - - *301 + - *471 + - *472 + - *304 responses: '200': description: Response content: application/json: - schema: *503 + schema: *506 examples: - default: &641 + default: &644 value: name: USERNAME value: octocat @@ -67654,9 +67900,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *468 - - *469 - - *301 + - *471 + - *472 + - *304 requestBody: required: true content: @@ -67698,9 +67944,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *468 - - *469 - - *301 + - *471 + - *472 + - *304 responses: '204': description: Response @@ -67725,8 +67971,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -67744,7 +67990,7 @@ paths: type: integer workflows: type: array - items: &505 + items: &508 title: Workflow description: A GitHub Actions workflow type: object @@ -67851,9 +68097,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *468 - - *469 - - &506 + - *471 + - *472 + - &509 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -67868,7 +68114,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *508 examples: default: value: @@ -67901,9 +68147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *468 - - *469 - - *506 + - *471 + - *472 + - *509 responses: '204': description: Response @@ -67928,9 +68174,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *468 - - *469 - - *506 + - *471 + - *472 + - *509 responses: '200': description: Response including the workflow run ID and URLs when `return_run_details` @@ -68011,9 +68257,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *468 - - *469 - - *506 + - *471 + - *472 + - *509 responses: '204': description: Response @@ -68040,19 +68286,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *468 - - *469 - - *506 - - *507 - - *508 + - *471 + - *472 - *509 - *510 - - *17 - - *19 - *511 - - *490 - *512 - *513 + - *17 + - *19 + - *514 + - *493 + - *515 + - *516 responses: '200': description: Response @@ -68068,9 +68314,9 @@ paths: type: integer workflow_runs: type: array - items: *491 + items: *494 examples: - default: *514 + default: *517 headers: Link: *47 x-github: @@ -68103,9 +68349,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *468 - - *469 - - *506 + - *471 + - *472 + - *509 responses: '200': description: Response @@ -68166,12 +68412,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *468 - - *469 - - *110 + - *471 + - *472 + - *112 - *17 - - *108 - - *109 + - *110 + - *111 - name: ref description: |- The Git reference for the activities you want to list. @@ -68331,8 +68577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -68344,7 +68590,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 '404': *6 @@ -68369,8 +68615,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *468 - - *469 + - *471 + - *472 - name: assignee in: path required: true @@ -68406,8 +68652,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#create-an-attestation parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -68519,11 +68765,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#list-attestations parameters: - - *468 - - *469 + - *471 + - *472 - *17 - - *108 - - *109 + - *110 + - *111 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -68561,7 +68807,7 @@ paths: initiator: type: string examples: - default: *515 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68581,8 +68827,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -68590,7 +68836,7 @@ paths: application/json: schema: type: array - items: &516 + items: &519 title: Autolink reference description: An autolink reference. type: object @@ -68644,8 +68890,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -68684,9 +68930,9 @@ paths: description: response content: application/json: - schema: *516 + schema: *519 examples: - default: &517 + default: &520 value: id: 1 key_prefix: TICKET- @@ -68717,9 +68963,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *468 - - *469 - - &518 + - *471 + - *472 + - &521 name: autolink_id description: The unique identifier of the autolink. in: path @@ -68731,9 +68977,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 '404': *6 x-github: githubCloudOnly: false @@ -68753,9 +68999,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *468 - - *469 - - *518 + - *471 + - *472 + - *521 responses: '204': description: Response @@ -68779,8 +69025,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response if Dependabot is enabled @@ -68828,8 +69074,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -68850,8 +69096,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -68871,8 +69117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *468 - - *469 + - *471 + - *472 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -68910,7 +69156,7 @@ paths: - url protected: type: boolean - protection: &520 + protection: &523 title: Branch Protection description: Branch Protection type: object @@ -68952,7 +69198,7 @@ paths: required: - contexts - checks - enforce_admins: &523 + enforce_admins: &526 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -68967,7 +69213,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &525 + required_pull_request_reviews: &528 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -68988,7 +69234,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *317 + items: *320 apps: description: The list of apps with review dismissal access. @@ -69017,7 +69263,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *317 + items: *320 apps: description: The list of apps allowed to bypass pull request requirements. @@ -69043,7 +69289,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &522 + restrictions: &525 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -69106,7 +69352,7 @@ paths: type: string teams: type: array - items: *317 + items: *320 apps: type: array items: @@ -69320,9 +69566,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *468 - - *469 - - &521 + - *471 + - *472 + - &524 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -69336,14 +69582,14 @@ paths: description: Response content: application/json: - schema: &531 + schema: &534 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &585 + commit: &588 title: Commit description: Commit type: object @@ -69377,7 +69623,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &519 + properties: &522 name: type: string example: '"Chris Wanstrath"' @@ -69393,7 +69639,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *519 + properties: *522 nullable: true message: type: string @@ -69414,7 +69660,7 @@ paths: required: - sha - url - verification: &647 + verification: &650 title: Verification type: object properties: @@ -69448,12 +69694,12 @@ paths: nullable: true oneOf: - *4 - - *299 + - *302 committer: nullable: true oneOf: - *4 - - *299 + - *302 parents: type: array items: @@ -69484,7 +69730,7 @@ paths: type: integer files: type: array - items: &598 + items: &601 title: Diff Entry description: Diff Entry type: object @@ -69568,7 +69814,7 @@ paths: - self protected: type: boolean - protection: *520 + protection: *523 protection_url: type: string format: uri @@ -69675,7 +69921,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *474 + '301': *477 '404': *6 x-github: githubCloudOnly: false @@ -69697,15 +69943,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *520 + schema: *523 examples: default: value: @@ -69899,9 +70145,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -70156,7 +70402,7 @@ paths: url: type: string format: uri - required_status_checks: &528 + required_status_checks: &531 title: Status Check Policy description: Status Check Policy type: object @@ -70232,7 +70478,7 @@ paths: items: *4 teams: type: array - items: *317 + items: *320 apps: type: array items: *5 @@ -70250,7 +70496,7 @@ paths: items: *4 teams: type: array - items: *317 + items: *320 apps: type: array items: *5 @@ -70308,7 +70554,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *522 + restrictions: *525 required_conversation_resolution: type: object properties: @@ -70420,9 +70666,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -70447,17 +70693,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: &524 + default: &527 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -70479,17 +70725,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: *524 + default: *527 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70508,9 +70754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -70535,17 +70781,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *525 + schema: *528 examples: - default: &526 + default: &529 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -70641,9 +70887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -70741,9 +70987,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *528 examples: - default: *526 + default: *529 '422': *15 x-github: githubCloudOnly: false @@ -70764,9 +71010,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -70793,17 +71039,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: &527 + default: &530 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -70826,17 +71072,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *523 + schema: *526 examples: - default: *527 + default: *530 '404': *6 x-github: githubCloudOnly: false @@ -70856,9 +71102,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -70883,17 +71129,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *528 + schema: *531 examples: - default: &529 + default: &532 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -70919,9 +71165,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -70973,9 +71219,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *531 examples: - default: *529 + default: *532 '404': *6 '422': *15 x-github: @@ -70997,9 +71243,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -71023,9 +71269,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response @@ -71059,9 +71305,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -71128,9 +71374,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -71194,9 +71440,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: content: application/json: @@ -71262,15 +71508,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response content: application/json: - schema: *522 + schema: *525 examples: default: value: @@ -71361,9 +71607,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '204': description: Response @@ -71386,9 +71632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response @@ -71398,7 +71644,7 @@ paths: type: array items: *5 examples: - default: &530 + default: &533 value: - id: 1 slug: octoapp @@ -71455,9 +71701,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -71491,7 +71737,7 @@ paths: type: array items: *5 examples: - default: *530 + default: *533 '422': *15 x-github: githubCloudOnly: false @@ -71512,9 +71758,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -71548,7 +71794,7 @@ paths: type: array items: *5 examples: - default: *530 + default: *533 '422': *15 x-github: githubCloudOnly: false @@ -71569,9 +71815,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -71605,7 +71851,7 @@ paths: type: array items: *5 examples: - default: *530 + default: *533 '422': *15 x-github: githubCloudOnly: false @@ -71627,9 +71873,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response @@ -71637,9 +71883,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 '404': *6 x-github: githubCloudOnly: false @@ -71659,9 +71905,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -71697,9 +71943,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 '422': *15 x-github: githubCloudOnly: false @@ -71720,9 +71966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: false content: @@ -71758,9 +72004,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 '422': *15 x-github: githubCloudOnly: false @@ -71781,9 +72027,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: content: application/json: @@ -71818,9 +72064,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 '422': *15 x-github: githubCloudOnly: false @@ -71842,9 +72088,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 responses: '200': description: Response @@ -71854,7 +72100,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 '404': *6 x-github: githubCloudOnly: false @@ -71878,9 +72124,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -71913,7 +72159,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -71938,9 +72184,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -71973,7 +72219,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -71998,9 +72244,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -72033,7 +72279,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -72060,9 +72306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 requestBody: required: true content: @@ -72084,7 +72330,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: default: value: @@ -72198,12 +72444,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *468 - - *469 - - *103 - - *104 + - *471 + - *472 - *105 - *106 + - *107 + - *108 - *17 - *19 responses: @@ -72213,9 +72459,9 @@ paths: application/json: schema: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 '404': *6 '500': *40 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -72235,8 +72481,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: bypass_request_number in: path required: true @@ -72250,7 +72496,7 @@ paths: description: Response content: application/json: - schema: *312 + schema: *315 examples: default: value: @@ -72309,12 +72555,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *468 - - *469 - - *103 - - *104 + - *471 + - *472 - *105 - *106 + - *107 + - *108 - *17 - *19 responses: @@ -72324,9 +72570,9 @@ paths: application/json: schema: type: array - items: *315 + items: *318 examples: - default: *316 + default: *319 '404': *6 '403': *29 '500': *40 @@ -72350,8 +72596,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *468 - - *469 + - *471 + - *472 - name: bypass_request_number in: path required: true @@ -72363,7 +72609,7 @@ paths: description: A single bypass request. content: application/json: - schema: *315 + schema: *318 examples: default: value: @@ -72421,8 +72667,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *468 - - *469 + - *471 + - *472 - name: bypass_request_number in: path required: true @@ -72493,8 +72739,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *468 - - *469 + - *471 + - *472 - name: bypass_response_id in: path required: true @@ -72527,8 +72773,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -72807,7 +73053,7 @@ paths: description: Response content: application/json: - schema: &532 + schema: &535 title: CheckRun description: A check performed on the code of a given code change type: object @@ -72918,16 +73164,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *230 - deployment: &872 + items: *232 + deployment: &875 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -72994,8 +73240,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 required: - id - node_id @@ -73207,9 +73453,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *468 - - *469 - - &533 + - *471 + - *472 + - &536 name: check_run_id description: The unique identifier of the check run. in: path @@ -73221,9 +73467,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *535 examples: - default: &534 + default: &537 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -73323,9 +73569,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *468 - - *469 - - *533 + - *471 + - *472 + - *536 requestBody: required: true content: @@ -73565,9 +73811,9 @@ paths: description: Response content: application/json: - schema: *532 + schema: *535 examples: - default: *534 + default: *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73587,9 +73833,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *468 - - *469 - - *533 + - *471 + - *472 + - *536 - *17 - *19 responses: @@ -73684,15 +73930,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *468 - - *469 - - *533 + - *471 + - *472 + - *536 responses: '201': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -73730,8 +73976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -73753,7 +73999,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &537 + schema: &540 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -73817,7 +74063,7 @@ paths: nullable: true pull_requests: type: array - items: *230 + items: *232 nullable: true app: title: GitHub app @@ -73828,9 +74074,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 - repository: *288 + properties: *222 + required: *223 + repository: *291 created_at: type: string format: date-time @@ -73839,12 +74085,12 @@ paths: type: string format: date-time nullable: true - head_commit: &905 + head_commit: &908 title: Simple Commit description: A commit. type: object - properties: *535 - required: *536 + properties: *538 + required: *539 latest_check_runs_count: type: integer check_runs_url: @@ -73872,7 +74118,7 @@ paths: - check_runs_url - pull_requests examples: - default: &538 + default: &541 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -74163,9 +74409,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *537 + schema: *540 examples: - default: *538 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74184,8 +74430,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -74246,7 +74492,7 @@ paths: required: - app_id - setting - repository: *288 + repository: *291 examples: default: value: @@ -74494,9 +74740,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *468 - - *469 - - &539 + - *471 + - *472 + - &542 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -74508,9 +74754,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *540 examples: - default: *538 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74533,17 +74779,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *468 - - *469 - - *539 - - &591 + - *471 + - *472 + - *542 + - &594 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &592 + - &595 name: status description: Returns check runs with the specified `status`. in: query @@ -74582,9 +74828,9 @@ paths: type: integer check_runs: type: array - items: *532 + items: *535 examples: - default: &593 + default: &596 value: total_count: 1 check_runs: @@ -74686,15 +74932,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *468 - - *469 - - *539 + - *471 + - *472 + - *542 responses: '201': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -74721,30 +74967,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *468 - - *469 - - *321 - - *322 + - *471 + - *472 + - *324 + - *325 - *19 - *17 - - &555 + - &558 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: *540 - - &556 + schema: *543 + - &559 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer + - *112 - *110 - - *108 - - *109 + - *111 - name: sort description: The property by which to sort the results. in: query @@ -74760,13 +75006,13 @@ paths: be returned. in: query required: false - schema: *323 + schema: *326 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *541 + schema: *544 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -74785,14 +75031,14 @@ paths: items: type: object properties: - number: *128 - created_at: *135 - updated_at: *136 - url: *133 - html_url: *134 - instances_url: *542 - state: *113 - fixed_at: *138 + number: *130 + created_at: *137 + updated_at: *138 + url: *135 + html_url: *136 + instances_url: *545 + state: *115 + fixed_at: *140 dismissed_by: title: Simple User description: A GitHub user. @@ -74800,12 +75046,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *137 - dismissed_reason: *543 - dismissed_comment: *544 - rule: *545 - tool: *546 - most_recent_instance: *547 + dismissed_at: *139 + dismissed_reason: *546 + dismissed_comment: *547 + rule: *548 + tool: *549 + most_recent_instance: *550 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -74931,14 +75177,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &548 + '403': &551 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74958,9 +75204,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *468 - - *469 - - &549 + - *471 + - *472 + - &552 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -74968,23 +75214,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *128 + schema: *130 responses: '200': description: Response content: application/json: - schema: &550 + schema: &553 type: object properties: - number: *128 - created_at: *135 - updated_at: *136 - url: *133 - html_url: *134 - instances_url: *542 - state: *113 - fixed_at: *138 + number: *130 + created_at: *137 + updated_at: *138 + url: *135 + html_url: *136 + instances_url: *545 + state: *115 + fixed_at: *140 dismissed_by: title: Simple User description: A GitHub user. @@ -74992,9 +75238,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *137 - dismissed_reason: *543 - dismissed_comment: *544 + dismissed_at: *139 + dismissed_reason: *546 + dismissed_comment: *547 rule: type: object properties: @@ -75048,8 +75294,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *546 - most_recent_instance: *547 + tool: *549 + most_recent_instance: *550 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -75148,9 +75394,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75168,9 +75414,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 requestBody: required: true content: @@ -75185,8 +75431,8 @@ paths: enum: - open - dismissed - dismissed_reason: *543 - dismissed_comment: *544 + dismissed_reason: *546 + dismissed_comment: *547 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -75214,7 +75460,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *553 examples: default: value: @@ -75290,14 +75536,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &554 + '403': &557 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -75317,15 +75563,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 responses: '200': description: Response content: application/json: - schema: &551 + schema: &554 type: object properties: status: @@ -75351,13 +75597,13 @@ paths: - description - started_at examples: - default: &552 + default: &555 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &553 + '400': &556 description: Bad Request content: application/json: @@ -75368,9 +75614,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75393,29 +75639,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 responses: '200': description: OK content: application/json: - schema: *551 + schema: *554 examples: - default: *552 + default: *555 '202': description: Accepted content: application/json: - schema: *551 + schema: *554 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *553 + '400': *556 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -75425,7 +75671,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75447,9 +75693,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 requestBody: required: false content: @@ -75494,12 +75740,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *553 - '403': *554 + '400': *556 + '403': *557 '404': *6 '422': description: Unprocessable Entity - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75519,13 +75765,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 - *19 - *17 - - *555 - - *556 + - *558 + - *559 responses: '200': description: Response @@ -75536,10 +75782,10 @@ paths: items: type: object properties: - ref: *540 - analysis_key: *557 - environment: *558 - category: *559 + ref: *543 + analysis_key: *560 + environment: *561 + category: *562 state: type: string description: State of a code scanning alert instance. @@ -75554,7 +75800,7 @@ paths: properties: text: type: string - location: *560 + location: *563 html_url: type: string classifications: @@ -75562,7 +75808,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: *561 + items: *564 examples: default: value: @@ -75599,9 +75845,9 @@ paths: end_column: 50 classifications: - source - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75633,29 +75879,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *468 - - *469 - - *321 - - *322 + - *471 + - *472 + - *324 + - *325 - *19 - *17 - - *556 + - *559 - 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: *540 + schema: *543 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &562 + schema: &565 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *110 + - *112 - name: sort description: The property by which to sort the results. in: query @@ -75672,23 +75918,23 @@ paths: application/json: schema: type: array - items: &563 + items: &566 type: object properties: - ref: *540 - commit_sha: &571 + ref: *543 + commit_sha: &574 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *557 + analysis_key: *560 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *559 + category: *562 error: type: string example: error reading field xyz @@ -75712,8 +75958,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *562 - tool: *546 + sarif_id: *565 + tool: *549 deletable: type: boolean warning: @@ -75774,9 +76020,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -75810,8 +76056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -75824,7 +76070,7 @@ paths: description: Response content: application/json: - schema: *563 + schema: *566 examples: response: summary: application/json response @@ -75878,14 +76124,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *548 + '403': *551 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -75965,8 +76211,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -76019,9 +76265,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *554 + '403': *557 '404': *6 - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -76041,8 +76287,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -76050,7 +76296,7 @@ paths: application/json: schema: type: array - items: &564 + items: &567 title: CodeQL Database description: A CodeQL database. type: object @@ -76161,9 +76407,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76190,8 +76436,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - name: language in: path description: The language of the CodeQL database. @@ -76203,7 +76449,7 @@ paths: description: Response content: application/json: - schema: *564 + schema: *567 examples: default: value: @@ -76235,11 +76481,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &600 + '302': &603 description: Found - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76259,8 +76505,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *468 - - *469 + - *471 + - *472 - name: language in: path description: The language of the CodeQL database. @@ -76270,9 +76516,9 @@ paths: responses: '204': description: Response - '403': *554 + '403': *557 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76298,8 +76544,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -76308,7 +76554,7 @@ paths: type: object additionalProperties: false properties: - language: &565 + language: &568 type: string description: The language targeted by the CodeQL query enum: @@ -76388,7 +76634,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &569 + schema: &572 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -76396,9 +76642,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *120 + controller_repo: *122 actor: *4 - query_language: *565 + query_language: *568 query_pack_url: type: string description: The download url for the query pack. @@ -76445,7 +76691,7 @@ paths: items: type: object properties: - repository: &566 + repository: &569 title: Repository Identifier description: Repository Identifier type: object @@ -76481,7 +76727,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &570 + analysis_status: &573 type: string description: The new status of the CodeQL variant analysis repository task. @@ -76513,7 +76759,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &567 + access_mismatch_repos: &570 type: object properties: repository_count: @@ -76527,7 +76773,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: *566 + items: *569 required: - repository_count - repositories @@ -76549,8 +76795,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *567 - over_limit_repos: *567 + no_codeql_db_repos: *570 + over_limit_repos: *570 required: - access_mismatch_repos - not_found_repos @@ -76566,7 +76812,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &568 + value: &571 summary: Default response value: id: 1 @@ -76712,17 +76958,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *568 + value: *571 repository_lists: summary: Response for a successful variant analysis submission - value: *568 + value: *571 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76743,8 +76989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *468 - - *469 + - *471 + - *472 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -76756,11 +77002,11 @@ paths: description: Response content: application/json: - schema: *569 + schema: *572 examples: - default: *568 + default: *571 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76781,7 +77027,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *468 + - *471 - name: repo in: path description: The name of the controller repository. @@ -76815,8 +77061,8 @@ paths: schema: type: object properties: - repository: *120 - analysis_status: *570 + repository: *122 + analysis_status: *573 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -76920,7 +77166,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76941,8 +77187,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -77025,9 +77271,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *548 + '403': *551 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77046,8 +77292,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -77114,7 +77360,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -77139,7 +77385,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *554 + '403': *557 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -77153,7 +77399,7 @@ paths: content: application/json: schema: *3 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77210,8 +77456,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -77219,7 +77465,7 @@ paths: schema: type: object properties: - commit_sha: *571 + commit_sha: *574 ref: type: string description: |- @@ -77277,7 +77523,7 @@ paths: schema: type: object properties: - id: *562 + id: *565 url: type: string description: The REST API URL for checking the status of the upload. @@ -77291,11 +77537,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *554 + '403': *557 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77314,8 +77560,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *468 - - *469 + - *471 + - *472 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -77361,10 +77607,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *548 + '403': *551 '404': description: Not Found if the sarif id does not match any upload - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77386,8 +77632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -77411,7 +77657,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *114 + configuration: *116 examples: default: value: @@ -77443,7 +77689,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *155 + '204': *157 '304': *37 '403': *29 '404': *6 @@ -77468,8 +77714,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *468 - - *469 + - *471 + - *472 - 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 @@ -77589,8 +77835,8 @@ paths: parameters: - *17 - *19 - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -77606,7 +77852,7 @@ paths: type: integer codespaces: type: array - items: *386 + items: *389 examples: default: value: @@ -77904,8 +78150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -77968,22 +78214,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -78007,8 +78253,8 @@ paths: parameters: - *17 - *19 - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -78072,8 +78318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -78108,14 +78354,14 @@ paths: type: integer machines: type: array - items: &816 + items: &819 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *573 - required: *574 + properties: *576 + required: *577 examples: - default: &817 + default: &820 value: total_count: 2 machines: @@ -78155,8 +78401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *468 - - *469 + - *471 + - *472 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -78240,8 +78486,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *468 - - *469 + - *471 + - *472 - 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 @@ -78286,7 +78532,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78307,8 +78553,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -78326,7 +78572,7 @@ paths: type: integer secrets: type: array - items: &578 + items: &581 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -78346,7 +78592,7 @@ paths: - created_at - updated_at examples: - default: *575 + default: *578 headers: Link: *47 x-github: @@ -78369,16 +78615,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *576 + schema: *579 examples: - default: *577 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -78398,17 +78644,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '200': description: Response content: application/json: - schema: *578 + schema: *581 examples: - default: *579 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78428,9 +78674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 requestBody: required: true content: @@ -78458,7 +78704,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -78482,9 +78728,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '204': description: Response @@ -78512,8 +78758,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *468 - - *469 + - *471 + - *472 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -78555,7 +78801,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &580 + properties: &583 login: type: string example: octocat @@ -78648,7 +78894,7 @@ paths: user_view_type: type: string example: public - required: &581 + required: &584 - avatar_url - events_url - followers_url @@ -78722,9 +78968,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *468 - - *469 - - *143 + - *471 + - *472 + - *145 responses: '204': description: Response if user is a collaborator @@ -78770,9 +79016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *468 - - *469 - - *143 + - *471 + - *472 + - *145 requestBody: required: false content: @@ -78798,7 +79044,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &659 + schema: &662 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -78809,7 +79055,7 @@ paths: example: 42 type: integer format: int64 - repository: *288 + repository: *291 invitee: title: Simple User description: A GitHub user. @@ -78987,7 +79233,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *263 + schema: *265 '403': *29 x-github: triggersNotification: true @@ -79027,9 +79273,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *468 - - *469 - - *143 + - *471 + - *472 + - *145 responses: '204': description: No Content when collaborator was removed from the repository. @@ -79060,9 +79306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *468 - - *469 - - *143 + - *471 + - *472 + - *145 responses: '200': description: if user has admin permissions @@ -79082,8 +79328,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *580 - required: *581 + properties: *583 + required: *584 nullable: true required: - permission @@ -79138,8 +79384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -79149,7 +79395,7 @@ paths: application/json: schema: type: array - items: &582 + items: &585 title: Commit Comment description: Commit Comment type: object @@ -79190,8 +79436,8 @@ paths: updated_at: type: string format: date-time - author_association: *222 - reactions: *223 + author_association: *224 + reactions: *225 required: - url - html_url @@ -79207,7 +79453,7 @@ paths: - created_at - updated_at examples: - default: &587 + default: &590 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -79266,17 +79512,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '200': description: Response content: application/json: - schema: *582 + schema: *585 examples: - default: &588 + default: &591 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -79333,9 +79579,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -79357,7 +79603,7 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: default: value: @@ -79408,9 +79654,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '204': description: Response @@ -79431,9 +79677,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a commit comment. @@ -79459,7 +79705,7 @@ paths: application/json: schema: type: array - items: &583 + items: &586 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -79502,7 +79748,7 @@ paths: - content - created_at examples: - default: &663 + default: &666 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -79547,9 +79793,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -79581,9 +79827,9 @@ paths: description: Reaction exists content: application/json: - schema: *583 + schema: *586 examples: - default: &584 + default: &587 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -79612,9 +79858,9 @@ paths: description: Reaction created content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -79636,10 +79882,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *468 - - *469 - - *241 - - &664 + - *471 + - *472 + - *243 + - &667 name: reaction_id description: The unique identifier of the reaction. in: path @@ -79694,8 +79940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *468 - - *469 + - *471 + - *472 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -79751,9 +79997,9 @@ paths: application/json: schema: type: array - items: *585 + items: *588 examples: - default: &716 + default: &719 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -79827,7 +80073,7 @@ paths: '500': *40 '400': *14 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79847,9 +80093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *468 - - *469 - - &586 + - *471 + - *472 + - &589 name: commit_sha description: The SHA of the commit. in: path @@ -79896,7 +80142,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79921,9 +80167,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *468 - - *469 - - *586 + - *471 + - *472 + - *589 - *17 - *19 responses: @@ -79933,9 +80179,9 @@ paths: application/json: schema: type: array - items: *582 + items: *585 examples: - default: *587 + default: *590 headers: Link: *47 x-github: @@ -79963,9 +80209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *468 - - *469 - - *586 + - *471 + - *472 + - *589 requestBody: required: true content: @@ -80000,9 +80246,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: - default: *588 + default: *591 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -80030,9 +80276,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *468 - - *469 - - *586 + - *471 + - *472 + - *589 - *17 - *19 responses: @@ -80042,9 +80288,9 @@ paths: application/json: schema: type: array - items: *589 + items: *592 examples: - default: &708 + default: &711 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -80524,7 +80770,7 @@ paths: draft: false headers: Link: *47 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80581,11 +80827,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *468 - - *469 + - *471 + - *472 - *19 - *17 - - &590 + - &593 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)" @@ -80600,9 +80846,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *588 examples: - default: &693 + default: &696 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -80689,8 +80935,8 @@ paths: '422': *15 '404': *6 '500': *40 - '503': *196 - '409': *119 + '503': *198 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80715,11 +80961,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *468 - - *469 - - *590 - - *591 - - *592 + - *471 + - *472 + - *593 + - *594 + - *595 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -80753,9 +80999,9 @@ paths: type: integer check_runs: type: array - items: *532 + items: *535 examples: - default: *593 + default: *596 headers: Link: *47 x-github: @@ -80780,9 +81026,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *468 - - *469 - - *590 + - *471 + - *472 + - *593 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -80790,7 +81036,7 @@ paths: schema: type: integer example: 1 - - *591 + - *594 - *17 - *19 responses: @@ -80808,7 +81054,7 @@ paths: type: integer check_suites: type: array - items: *537 + items: *540 examples: default: value: @@ -81008,9 +81254,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *468 - - *469 - - *590 + - *471 + - *472 + - *593 - *17 - *19 responses: @@ -81077,7 +81323,7 @@ paths: type: string total_count: type: integer - repository: *288 + repository: *291 commit_url: type: string format: uri @@ -81208,9 +81454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *468 - - *469 - - *590 + - *471 + - *472 + - *593 - *17 - *19 responses: @@ -81220,7 +81466,7 @@ paths: application/json: schema: type: array - items: &769 + items: &772 title: Status description: The status of a commit. type: object @@ -81301,7 +81547,7 @@ paths: site_admin: false headers: Link: *47 - '301': *474 + '301': *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81329,8 +81575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -81359,20 +81605,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *594 - required: *595 + properties: *597 + required: *598 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &596 + properties: &599 url: type: string format: uri html_url: type: string format: uri - required: &597 + required: &600 - url - html_url nullable: true @@ -81380,32 +81626,32 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true contributing: title: Community Health File type: object - properties: *596 - required: *597 + properties: *599 + required: *600 nullable: true readme: title: Community Health File type: object - properties: *596 - required: *597 + properties: *599 + required: *600 nullable: true issue_template: title: Community Health File type: object - properties: *596 - required: *597 + properties: *599 + required: *600 nullable: true pull_request_template: title: Community Health File type: object - properties: *596 - required: *597 + properties: *599 + required: *600 nullable: true required: - code_of_conduct @@ -81532,8 +81778,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *468 - - *469 + - *471 + - *472 - *19 - *17 - name: basehead @@ -81576,8 +81822,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *585 - merge_base_commit: *585 + base_commit: *588 + merge_base_commit: *588 status: type: string enum: @@ -81597,10 +81843,10 @@ paths: example: 6 commits: type: array - items: *585 + items: *588 files: type: array - items: *598 + items: *601 required: - url - html_url @@ -81844,7 +82090,7 @@ paths: module Test" '404': *6 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81886,8 +82132,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *468 - - *469 + - *471 + - *472 - name: path description: path parameter in: path @@ -82047,7 +82293,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &599 + response-if-content-is-a-file-github-object: &602 summary: Response if content is a file value: type: file @@ -82179,7 +82425,7 @@ paths: - size - type - url - - &721 + - &724 title: Content File description: Content File type: object @@ -82380,7 +82626,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *599 + response-if-content-is-a-file: *602 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -82449,7 +82695,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *600 + '302': *603 '304': *37 x-github: githubCloudOnly: false @@ -82472,8 +82718,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *468 - - *469 + - *471 + - *472 - name: path description: path parameter in: path @@ -82566,7 +82812,7 @@ paths: description: Response content: application/json: - schema: &601 + schema: &604 title: File Commit description: File Commit type: object @@ -82718,7 +82964,7 @@ paths: description: Response content: application/json: - schema: *601 + schema: *604 examples: example-for-creating-a-file: value: @@ -82772,7 +83018,7 @@ paths: schema: oneOf: - *3 - - &642 + - &645 description: Repository rule violation was detected type: object properties: @@ -82793,7 +83039,7 @@ paths: items: type: object properties: - placeholder_id: &761 + placeholder_id: &764 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -82825,8 +83071,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *468 - - *469 + - *471 + - *472 - name: path description: path parameter in: path @@ -82887,7 +83133,7 @@ paths: description: Response content: application/json: - schema: *601 + schema: *604 examples: default: value: @@ -82921,8 +83167,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *119 - '503': *196 + '409': *121 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82942,8 +83188,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *468 - - *469 + - *471 + - *472 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -83066,26 +83312,26 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *468 - - *469 - - *337 - - *338 - - *339 + - *471 + - *472 - *340 + - *341 + - *342 + - *343 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *341 - - *602 - - *342 - - *343 - *344 + - *605 + - *345 + - *346 + - *347 + - *112 - *110 - - *108 - - *109 + - *111 - *17 responses: '200': @@ -83094,11 +83340,11 @@ paths: application/json: schema: type: array - items: &606 + items: &609 type: object description: A Dependabot alert. properties: - number: *128 + number: *130 state: type: string description: The state of the Dependabot alert. @@ -83113,7 +83359,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *129 + package: *131 manifest_path: type: string description: The full path to the dependency manifest file, @@ -83140,13 +83386,13 @@ paths: - unknown - direct - transitive - security_advisory: *603 - security_vulnerability: *132 - url: *133 - html_url: *134 - created_at: *135 - updated_at: *136 - dismissed_at: *137 + security_advisory: *606 + security_vulnerability: *134 + url: *135 + html_url: *136 + created_at: *137 + updated_at: *138 + dismissed_at: *139 dismissed_by: title: Simple User description: A GitHub user. @@ -83170,9 +83416,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *138 - auto_dismissed_at: *604 - dismissal_request: *605 + fixed_at: *140 + auto_dismissed_at: *607 + dismissal_request: *608 assignees: type: array description: The users assigned to this alert. @@ -83427,9 +83673,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *468 - - *469 - - &607 + - *471 + - *472 + - &610 name: alert_number in: path description: |- @@ -83438,13 +83684,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *128 + schema: *130 responses: '200': description: Response content: application/json: - schema: *606 + schema: *609 examples: default: value: @@ -83576,9 +83822,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *468 - - *469 - - *607 + - *471 + - *472 + - *610 requestBody: required: true content: @@ -83634,7 +83880,7 @@ paths: description: Response content: application/json: - schema: *606 + schema: *609 examples: default: value: @@ -83741,7 +83987,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *119 + '409': *121 '422': *7 x-github: githubCloudOnly: false @@ -83764,8 +84010,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -83783,7 +84029,7 @@ paths: type: integer secrets: type: array - items: &610 + items: &613 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -83836,16 +84082,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *608 + schema: *611 examples: - default: *609 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83865,15 +84111,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '200': description: Response content: application/json: - schema: *610 + schema: *613 examples: default: value: @@ -83899,9 +84145,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 requestBody: required: true content: @@ -83929,7 +84175,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -83953,9 +84199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *468 - - *469 - - *298 + - *471 + - *472 + - *301 responses: '204': description: Response @@ -83977,8 +84223,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *468 - - *469 + - *471 + - *472 - 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 @@ -84138,8 +84384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -84378,8 +84624,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -84454,7 +84700,7 @@ paths: - version - url additionalProperties: false - metadata: &611 + metadata: &614 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -84487,7 +84733,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *611 + metadata: *614 resolved: type: object description: A collection of resolved package dependencies. @@ -84500,7 +84746,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *611 + metadata: *614 relationship: type: string description: A notation of whether a dependency is requested @@ -84629,8 +84875,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *468 - - *469 + - *471 + - *472 - name: sha description: The SHA recorded at creation time. in: query @@ -84670,9 +84916,9 @@ paths: application/json: schema: type: array - items: *612 + items: *615 examples: - default: *613 + default: *616 headers: Link: *47 x-github: @@ -84738,8 +84984,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -84820,7 +85066,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *615 examples: simple-example: summary: Simple example @@ -84893,9 +85139,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *468 - - *469 - - &614 + - *471 + - *472 + - &617 name: deployment_id description: deployment_id parameter in: path @@ -84907,7 +85153,7 @@ paths: description: Response content: application/json: - schema: *612 + schema: *615 examples: default: value: @@ -84972,9 +85218,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *468 - - *469 - - *614 + - *471 + - *472 + - *617 responses: '204': description: Response @@ -84996,9 +85242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *468 - - *469 - - *614 + - *471 + - *472 + - *617 - *17 - *19 responses: @@ -85008,7 +85254,7 @@ paths: application/json: schema: type: array - items: &615 + items: &618 title: Deployment Status description: The status of a deployment. type: object @@ -85099,8 +85345,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 required: - id - node_id @@ -85169,9 +85415,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *468 - - *469 - - *614 + - *471 + - *472 + - *617 requestBody: required: true content: @@ -85246,9 +85492,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *618 examples: - default: &616 + default: &619 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -85304,9 +85550,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *468 - - *469 - - *614 + - *471 + - *472 + - *617 - name: status_id in: path required: true @@ -85317,9 +85563,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *618 examples: - default: *616 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -85346,12 +85592,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 - - *617 - - *618 - - *619 + - *471 + - *472 - *620 + - *621 + - *622 + - *623 - *17 - *19 responses: @@ -85361,9 +85607,9 @@ paths: application/json: schema: type: array - items: *621 + items: *624 examples: - default: *622 + default: *625 '404': *6 '403': *29 '500': *40 @@ -85387,8 +85633,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -85400,7 +85646,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *621 + schema: *624 examples: default: value: @@ -85456,8 +85702,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -85516,12 +85762,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *468 - - *469 - - *617 - - *618 - - *619 + - *471 + - *472 - *620 + - *621 + - *622 + - *623 - *17 - *19 responses: @@ -85531,9 +85777,9 @@ paths: application/json: schema: type: array - items: *623 + items: *626 examples: - default: *624 + default: *627 '404': *6 '403': *29 '500': *40 @@ -85557,8 +85803,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -85570,7 +85816,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *623 + schema: *626 examples: default: value: @@ -85621,8 +85867,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -85660,7 +85906,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *623 + schema: *626 examples: default: value: @@ -85711,8 +85957,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -85783,8 +86029,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -85817,12 +86063,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 - - *103 - - *104 + - *471 + - *472 - *105 - - *349 + - *106 + - *107 + - *352 - *17 - *19 responses: @@ -85832,9 +86078,9 @@ paths: application/json: schema: type: array - items: *625 + items: *628 examples: - default: *626 + default: *629 '404': *6 '403': *29 '500': *40 @@ -85859,8 +86105,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -85872,7 +86118,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *625 + schema: *628 examples: default: value: @@ -85930,8 +86176,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: alert_number in: path required: true @@ -86000,8 +86246,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -86058,8 +86304,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -86076,7 +86322,7 @@ paths: type: integer environments: type: array - items: &628 + items: &631 title: Environment description: Details of a deployment environment type: object @@ -86128,7 +86374,7 @@ paths: type: type: string example: wait_timer - wait_timer: &630 + wait_timer: &633 type: integer example: 30 description: The amount of time to delay a job after @@ -86165,11 +86411,11 @@ paths: items: type: object properties: - type: *627 + type: *630 reviewer: anyOf: - *4 - - *317 + - *320 required: - id - node_id @@ -86189,7 +86435,7 @@ paths: - id - node_id - type - deployment_branch_policy: &631 + deployment_branch_policy: &634 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -86305,9 +86551,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *468 - - *469 - - &629 + - *471 + - *472 + - &632 name: environment_name in: path required: true @@ -86320,9 +86566,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *631 examples: - default: &632 + default: &635 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -86406,9 +86652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 requestBody: required: false content: @@ -86417,7 +86663,7 @@ paths: type: object nullable: true properties: - wait_timer: *630 + wait_timer: *633 prevent_self_review: type: boolean example: false @@ -86434,13 +86680,13 @@ paths: items: type: object properties: - type: *627 + type: *630 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *631 + deployment_branch_policy: *634 additionalProperties: false examples: default: @@ -86460,9 +86706,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *631 examples: - default: *632 + default: *635 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -86486,9 +86732,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 responses: '204': description: Default response @@ -86513,9 +86759,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 - *17 - *19 responses: @@ -86533,7 +86779,7 @@ paths: example: 2 branch_policies: type: array - items: &633 + items: &636 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -86590,9 +86836,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 requestBody: required: true content: @@ -86638,9 +86884,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *636 examples: - example-wildcard: &634 + example-wildcard: &637 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -86682,10 +86928,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *468 - - *469 - - *629 - - &635 + - *471 + - *472 + - *632 + - &638 name: branch_policy_id in: path required: true @@ -86697,9 +86943,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *636 examples: - default: *634 + default: *637 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86718,10 +86964,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *468 - - *469 - - *629 - - *635 + - *471 + - *472 + - *632 + - *638 requestBody: required: true content: @@ -86749,9 +86995,9 @@ paths: description: Response content: application/json: - schema: *633 + schema: *636 examples: - default: *634 + default: *637 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86770,10 +87016,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *468 - - *469 - - *629 - - *635 + - *471 + - *472 + - *632 + - *638 responses: '204': description: Response @@ -86798,9 +87044,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *629 - - *469 - - *468 + - *632 + - *472 + - *471 responses: '200': description: List of deployment protection rules @@ -86816,7 +87062,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &636 + items: &639 title: Deployment protection rule description: Deployment protection rule type: object @@ -86835,7 +87081,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &637 + app: &640 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -86934,9 +87180,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *629 - - *469 - - *468 + - *632 + - *472 + - *471 requestBody: content: application/json: @@ -86957,9 +87203,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *636 + schema: *639 examples: - default: &638 + default: &641 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -86994,9 +87240,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *629 - - *469 - - *468 + - *632 + - *472 + - *471 - *19 - *17 responses: @@ -87015,7 +87261,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *637 + items: *640 examples: default: value: @@ -87050,10 +87296,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *468 - - *469 - - *629 - - &639 + - *471 + - *472 + - *632 + - &642 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -87065,9 +87311,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *639 examples: - default: *638 + default: *641 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87088,10 +87334,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *629 - - *469 - - *468 - - *639 + - *632 + - *472 + - *471 + - *642 responses: '204': description: Response @@ -87117,9 +87363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 - *17 - *19 responses: @@ -87137,9 +87383,9 @@ paths: type: integer secrets: type: array - items: *499 + items: *502 examples: - default: *500 + default: *503 headers: Link: *47 x-github: @@ -87164,17 +87410,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 responses: '200': description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *502 + default: *505 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87196,18 +87442,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *468 - - *469 - - *629 - - *298 + - *471 + - *472 + - *632 + - *301 responses: '200': description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: *640 + default: *643 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87229,10 +87475,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *468 - - *469 - - *629 - - *298 + - *471 + - *472 + - *632 + - *301 requestBody: required: true content: @@ -87263,7 +87509,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -87289,10 +87535,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *468 - - *469 - - *629 - - *298 + - *471 + - *472 + - *632 + - *301 responses: '204': description: Default response @@ -87317,10 +87563,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *468 - - *469 - - *629 - - *486 + - *471 + - *472 + - *632 + - *489 - *19 responses: '200': @@ -87337,9 +87583,9 @@ paths: type: integer variables: type: array - items: *503 + items: *506 examples: - default: *504 + default: *507 headers: Link: *47 x-github: @@ -87362,9 +87608,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *468 - - *469 - - *629 + - *471 + - *472 + - *632 requestBody: required: true content: @@ -87391,7 +87637,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -87416,18 +87662,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *468 - - *469 - - *629 - - *301 + - *471 + - *472 + - *632 + - *304 responses: '200': description: Response content: application/json: - schema: *503 + schema: *506 examples: - default: *641 + default: *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87448,10 +87694,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *468 - - *469 - - *301 - - *629 + - *471 + - *472 + - *304 + - *632 requestBody: required: true content: @@ -87493,10 +87739,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *468 - - *469 - - *301 - - *629 + - *471 + - *472 + - *304 + - *632 responses: '204': description: Response @@ -87518,8 +87764,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -87529,7 +87775,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: 200-response: value: @@ -87587,8 +87833,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *468 - - *469 + - *471 + - *472 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -87610,7 +87856,7 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: default: value: @@ -87747,8 +87993,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -87780,9 +88026,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *475 + default: *478 '400': *14 '422': *15 '403': *29 @@ -87803,8 +88049,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -87855,7 +88101,7 @@ paths: schema: type: string '404': *6 - '409': *119 + '409': *121 '403': *29 '422': description: Validation failed @@ -87863,8 +88109,8 @@ paths: application/json: schema: oneOf: - - *263 - - *642 + - *265 + - *645 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87889,8 +88135,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *468 - - *469 + - *471 + - *472 - name: file_sha in: path required: true @@ -87941,7 +88187,7 @@ paths: '404': *6 '422': *15 '403': *29 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87989,8 +88235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -88099,7 +88345,7 @@ paths: description: Response content: application/json: - schema: &643 + schema: &646 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -88263,7 +88509,7 @@ paths: type: string '422': *15 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88313,15 +88559,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *468 - - *469 - - *586 + - *471 + - *472 + - *589 responses: '200': description: Response content: application/json: - schema: *643 + schema: *646 examples: default: value: @@ -88352,7 +88598,7 @@ paths: payload: verified_at: '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88377,9 +88623,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *468 - - *469 - - &644 + - *471 + - *472 + - &647 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. @@ -88396,7 +88642,7 @@ paths: application/json: schema: type: array - items: &645 + items: &648 title: Git Reference description: Git references within a repository type: object @@ -88450,7 +88696,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: Link: *47 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88471,17 +88717,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *468 - - *469 - - *644 + - *471 + - *472 + - *647 responses: '200': description: Response content: application/json: - schema: *645 + schema: *648 examples: - default: &646 + default: &649 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -88491,7 +88737,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88510,8 +88756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -88540,16 +88786,16 @@ paths: description: Response content: application/json: - schema: *645 + schema: *648 examples: - default: *646 + default: *649 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88568,9 +88814,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *468 - - *469 - - *644 + - *471 + - *472 + - *647 requestBody: required: true content: @@ -88599,11 +88845,11 @@ paths: description: Response content: application/json: - schema: *645 + schema: *648 examples: - default: *646 + default: *649 '422': *15 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88619,16 +88865,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *468 - - *469 - - *644 + - *471 + - *472 + - *647 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88676,8 +88922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -88744,7 +88990,7 @@ paths: description: Response content: application/json: - schema: &648 + schema: &651 title: Git Tag description: Metadata for a Git tag type: object @@ -88795,7 +89041,7 @@ paths: - sha - type - url - verification: *647 + verification: *650 required: - sha - url @@ -88805,7 +89051,7 @@ paths: - tag - message examples: - default: &649 + default: &652 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -88832,7 +89078,7 @@ paths: schema: type: string '422': *15 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88878,8 +89124,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *468 - - *469 + - *471 + - *472 - name: tag_sha in: path required: true @@ -88890,11 +89136,11 @@ paths: description: Response content: application/json: - schema: *648 + schema: *651 examples: - default: *649 + default: *652 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88916,8 +89162,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -88990,7 +89236,7 @@ paths: description: Response content: application/json: - schema: &650 + schema: &653 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -89063,7 +89309,7 @@ paths: '422': *15 '404': *6 '403': *29 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89086,8 +89332,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *468 - - *469 + - *471 + - *472 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -89110,7 +89356,7 @@ paths: description: Response content: application/json: - schema: *650 + schema: *653 examples: default-response: summary: Default response @@ -89151,7 +89397,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89169,8 +89415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -89180,7 +89426,7 @@ paths: application/json: schema: type: array - items: &651 + items: &654 title: Webhook description: Webhooks for repositories. type: object @@ -89234,7 +89480,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &913 + last_response: &916 title: Hook Response type: object properties: @@ -89308,8 +89554,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -89361,9 +89607,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *654 examples: - default: &652 + default: &655 value: type: Repository id: 12345678 @@ -89411,17 +89657,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 responses: '200': description: Response content: application/json: - schema: *651 + schema: *654 examples: - default: *652 + default: *655 '404': *6 x-github: githubCloudOnly: false @@ -89441,9 +89687,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 requestBody: required: true content: @@ -89488,9 +89734,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *654 examples: - default: *652 + default: *655 '422': *15 '404': *6 x-github: @@ -89511,9 +89757,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 responses: '204': description: Response @@ -89537,9 +89783,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 responses: '200': description: Response @@ -89566,9 +89812,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 requestBody: required: false content: @@ -89612,11 +89858,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 - *17 - - *355 + - *358 responses: '200': description: Response @@ -89624,9 +89870,9 @@ paths: application/json: schema: type: array - items: *356 + items: *359 examples: - default: *357 + default: *360 '400': *14 '422': *15 x-github: @@ -89645,18 +89891,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 - *16 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *359 + default: *362 '400': *14 '422': *15 x-github: @@ -89675,9 +89921,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 - *16 responses: '202': *39 @@ -89700,9 +89946,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 responses: '204': description: Response @@ -89727,9 +89973,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *468 - - *469 - - *354 + - *471 + - *472 + - *357 responses: '204': description: Response @@ -89752,8 +89998,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response if immutable releases are enabled @@ -89799,11 +90045,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *468 - - *469 + - *471 + - *472 responses: - '204': *155 - '409': *119 + '204': *157 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89820,11 +90066,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *468 - - *469 + - *471 + - *472 responses: - '204': *155 - '409': *119 + '204': *157 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89878,14 +90124,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: &653 + schema: &656 title: Import description: A repository import from an external source. type: object @@ -89984,7 +90230,7 @@ paths: - html_url - authors_url examples: - default: &656 + default: &659 value: vcs: subversion use_lfs: true @@ -90000,7 +90246,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': &654 + '503': &657 description: Unavailable due to service under maintenance. content: application/json: @@ -90029,8 +90275,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -90078,7 +90324,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *656 examples: default: value: @@ -90103,7 +90349,7 @@ paths: type: string '422': *15 '404': *6 - '503': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90131,8 +90377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -90181,7 +90427,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *656 examples: example-1: summary: Example 1 @@ -90229,7 +90475,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': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90252,12 +90498,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response - '503': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90283,9 +90529,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *468 - - *469 - - &839 + - *471 + - *472 + - &842 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -90299,7 +90545,7 @@ paths: application/json: schema: type: array - items: &655 + items: &658 title: Porter Author description: Porter Author type: object @@ -90353,7 +90599,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': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90378,8 +90624,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *468 - - *469 + - *471 + - *472 - name: author_id in: path required: true @@ -90409,7 +90655,7 @@ paths: description: Response content: application/json: - schema: *655 + schema: *658 examples: default: value: @@ -90422,7 +90668,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90446,8 +90692,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -90488,7 +90734,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90516,8 +90762,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -90544,11 +90790,11 @@ paths: description: Response content: application/json: - schema: *653 + schema: *656 examples: - default: *656 + default: *659 '422': *15 - '503': *654 + '503': *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90571,8 +90817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -90580,8 +90826,8 @@ paths: application/json: schema: *22 examples: - default: *371 - '301': *474 + default: *374 + '301': *477 '404': *6 x-github: githubCloudOnly: false @@ -90601,8 +90847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -90610,12 +90856,12 @@ paths: application/json: schema: anyOf: - - *373 + - *376 - type: object properties: {} additionalProperties: false examples: - default: &658 + default: &661 value: limit: collaborators_only origin: repository @@ -90640,13 +90886,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: application/json: - schema: *657 + schema: *660 examples: default: summary: Example request body @@ -90658,9 +90904,9 @@ paths: description: Response content: application/json: - schema: *373 + schema: *376 examples: - default: *658 + default: *661 '409': description: Response x-github: @@ -90682,8 +90928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -90706,8 +90952,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -90717,9 +90963,9 @@ paths: application/json: schema: type: array - items: *659 + items: *662 examples: - default: &831 + default: &834 value: - id: 1 repository: @@ -90850,9 +91096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *468 - - *469 - - *377 + - *471 + - *472 + - *380 requestBody: required: false content: @@ -90881,7 +91127,7 @@ paths: description: Response content: application/json: - schema: *659 + schema: *662 examples: default: value: @@ -91012,9 +91258,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *468 - - *469 - - *377 + - *471 + - *472 + - *380 responses: '204': description: Response @@ -91045,8 +91291,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *468 - - *469 + - *471 + - *472 - 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 @@ -91094,7 +91340,7 @@ paths: required: false schema: type: string - - *384 + - *387 - name: sort description: What to sort results by. in: query @@ -91106,8 +91352,8 @@ paths: - updated - comments default: created - - *110 - - *232 + - *112 + - *234 - *17 - *19 responses: @@ -91117,9 +91363,9 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: &671 + default: &674 value: - id: 1 node_id: MDU6SXNzdWUx @@ -91268,7 +91514,7 @@ paths: state_reason: completed headers: Link: *47 - '301': *474 + '301': *477 '422': *15 '404': *6 x-github: @@ -91297,8 +91543,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -91373,9 +91619,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: &668 + default: &671 value: id: 1 node_id: MDU6SXNzdWUx @@ -91530,9 +91776,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *196 + '503': *198 '404': *6 - '410': *660 + '410': *663 x-github: triggersNotification: true githubCloudOnly: false @@ -91560,9 +91806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *468 - - *469 - - *249 + - *471 + - *472 + - *251 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -91572,7 +91818,7 @@ paths: enum: - asc - desc - - *232 + - *234 - *17 - *19 responses: @@ -91582,9 +91828,9 @@ paths: application/json: schema: type: array - items: *661 + items: *664 examples: - default: &670 + default: &673 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -91642,17 +91888,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '200': description: Response content: application/json: - schema: *661 + schema: *664 examples: - default: &662 + default: &665 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -91707,9 +91953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -91731,9 +91977,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *664 examples: - default: *662 + default: *665 '422': *15 x-github: githubCloudOnly: false @@ -91751,9 +91997,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '204': description: Response @@ -91781,15 +92027,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#pin-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '200': description: Response content: application/json: - schema: *661 + schema: *664 examples: default: value: @@ -91845,7 +92091,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *660 + '410': *663 '422': *15 x-github: githubCloudOnly: false @@ -91862,17 +92108,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#unpin-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *660 - '503': *196 + '410': *663 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91889,9 +92135,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue comment. @@ -91917,9 +92163,9 @@ paths: application/json: schema: type: array - items: *583 + items: *586 examples: - default: *663 + default: *666 headers: Link: *47 '404': *6 @@ -91940,9 +92186,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -91974,16 +92220,16 @@ paths: description: Reaction exists content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '201': description: Reaction created content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -92005,10 +92251,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *468 - - *469 - - *241 - - *664 + - *471 + - *472 + - *243 + - *667 responses: '204': description: Response @@ -92028,8 +92274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -92039,7 +92285,7 @@ paths: application/json: schema: type: array - items: &667 + items: &670 title: Issue Event description: Issue Event type: object @@ -92082,8 +92328,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *665 - required: *666 + properties: *668 + required: *669 nullable: true label: title: Issue Event Label @@ -92127,7 +92373,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *317 + requested_team: *320 dismissed_review: title: Issue Event Dismissed Review type: object @@ -92192,7 +92438,7 @@ paths: required: - from - to - author_association: *222 + author_association: *224 lock_reason: type: string nullable: true @@ -92205,8 +92451,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 required: - id - node_id @@ -92391,8 +92637,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *468 - - *469 + - *471 + - *472 - name: event_id in: path required: true @@ -92403,7 +92649,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *670 examples: default: value: @@ -92596,7 +92842,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *660 + '410': *663 '403': *29 x-github: githubCloudOnly: false @@ -92630,9 +92876,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *468 - - *469 - - &669 + - *471 + - *472 + - &672 name: issue_number description: The number that identifies the issue. in: path @@ -92644,11 +92890,11 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: default: summary: Issue - value: *668 + value: *671 pinned_comment: summary: Issue with pinned comment value: @@ -92847,9 +93093,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 '304': *37 x-github: githubCloudOnly: false @@ -92874,9 +93120,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: false content: @@ -92995,15 +93241,15 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 '422': *15 - '503': *196 + '503': *198 '403': *29 - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93021,9 +93267,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: false content: @@ -93049,9 +93295,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93067,9 +93313,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: content: application/json: @@ -93094,9 +93340,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93118,9 +93364,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - name: assignee in: path required: true @@ -93160,10 +93406,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *468 - - *469 - - *669 - - *232 + - *471 + - *472 + - *672 + - *234 - *17 - *19 responses: @@ -93173,13 +93419,13 @@ paths: application/json: schema: type: array - items: *661 + items: *664 examples: - default: *670 + default: *673 headers: Link: *47 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93208,9 +93454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -93232,16 +93478,16 @@ paths: description: Response content: application/json: - schema: *661 + schema: *664 examples: - default: *662 + default: *665 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *660 + '410': *663 '422': *15 '404': *6 x-github: @@ -93269,9 +93515,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -93281,14 +93527,14 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: *671 + default: *674 headers: Link: *47 - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93316,9 +93562,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -93340,17 +93586,17 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *474 + '301': *477 '403': *29 - '410': *660 + '410': *663 '422': *15 '404': *6 x-github: @@ -93381,9 +93627,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -93395,15 +93641,15 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 - '301': *474 + default: *671 + '301': *477 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *660 + '410': *663 x-github: triggersNotification: true githubCloudOnly: false @@ -93429,9 +93675,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -93441,14 +93687,14 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: *671 + default: *674 headers: Link: *47 - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93465,9 +93711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -93481,7 +93727,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &674 + - &677 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -93512,8 +93758,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 label: type: object properties: @@ -93535,7 +93781,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &675 + - &678 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -93566,8 +93812,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 label: type: object properties: @@ -93655,8 +93901,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 assignee: *4 assigner: *4 required: @@ -93671,7 +93917,7 @@ paths: - performed_via_github_app - assignee - assigner - - &676 + - &679 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -93702,8 +93948,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 milestone: type: object properties: @@ -93722,7 +93968,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &677 + - &680 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -93753,8 +93999,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 milestone: type: object properties: @@ -93773,7 +94019,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &678 + - &681 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -93804,8 +94050,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 rename: type: object properties: @@ -93827,7 +94073,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &679 + - &682 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -93858,10 +94104,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 review_requester: *4 - requested_team: *317 + requested_team: *320 requested_reviewer: *4 required: - review_requester @@ -93874,7 +94120,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &680 + - &683 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -93905,10 +94151,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 review_requester: *4 - requested_team: *317 + requested_team: *320 requested_reviewer: *4 required: - review_requester @@ -93921,7 +94167,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &681 + - &684 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -93952,8 +94198,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 dismissed_review: type: object properties: @@ -93981,7 +94227,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &682 + - &685 title: Locked Issue Event description: Locked Issue Event type: object @@ -94012,8 +94258,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 lock_reason: type: string example: '"off-topic"' @@ -94029,7 +94275,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &683 + - &686 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -94060,8 +94306,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 project_card: type: object properties: @@ -94095,7 +94341,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &684 + - &687 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -94126,8 +94372,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 project_card: type: object properties: @@ -94161,7 +94407,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &685 + - &688 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -94192,8 +94438,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 project_card: type: object properties: @@ -94227,7 +94473,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &686 + - &689 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -94318,7 +94564,7 @@ paths: color: red headers: Link: *47 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94335,9 +94581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -94347,9 +94593,9 @@ paths: application/json: schema: type: array - items: *672 + items: *675 examples: - default: &775 + default: &778 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -94373,9 +94619,9 @@ paths: value: '2025-12-25' headers: Link: *47 - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94392,9 +94638,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -94404,9 +94650,9 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: - default: &673 + default: &676 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94424,9 +94670,9 @@ paths: default: false headers: Link: *47 - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94442,9 +94688,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: false content: @@ -94487,12 +94733,12 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: - default: *673 - '301': *474 + default: *676 + '301': *477 '404': *6 - '410': *660 + '410': *663 '422': *15 x-github: githubCloudOnly: false @@ -94509,9 +94755,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: false content: @@ -94571,12 +94817,12 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: - default: *673 - '301': *474 + default: *676 + '301': *477 '404': *6 - '410': *660 + '410': *663 '422': *15 x-github: githubCloudOnly: false @@ -94593,15 +94839,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 responses: '204': description: Response - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94620,9 +94866,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - name: name in: path required: true @@ -94635,7 +94881,7 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: default: value: @@ -94646,9 +94892,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *474 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94668,9 +94914,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: false content: @@ -94698,7 +94944,7 @@ paths: '204': description: Response '403': *29 - '410': *660 + '410': *663 '404': *6 '422': *15 x-github: @@ -94716,9 +94962,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 responses: '204': description: Response @@ -94748,20 +94994,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 responses: '200': description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 - '301': *474 + default: *671 + '301': *477 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94778,9 +95024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -94806,13 +95052,13 @@ paths: application/json: schema: type: array - items: *583 + items: *586 examples: - default: *663 + default: *666 headers: Link: *47 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94830,9 +95076,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -94864,16 +95110,16 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '201': description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -94895,10 +95141,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *468 - - *469 - - *669 - - *664 + - *471 + - *472 + - *672 + - *667 responses: '204': description: Response @@ -94927,9 +95173,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -94951,9 +95197,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -94986,9 +95232,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -94998,13 +95244,13 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: *671 + default: *674 headers: Link: *47 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95032,9 +95278,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -95061,16 +95307,16 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *660 + '410': *663 '422': *15 '404': *6 x-github: @@ -95090,9 +95336,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 requestBody: required: true content: @@ -95123,13 +95369,13 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *668 + default: *671 '403': *29 '404': *6 '422': *7 - '503': *196 + '503': *198 x-github: triggersNotification: true githubCloudOnly: false @@ -95147,9 +95393,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *468 - - *469 - - *669 + - *471 + - *472 + - *672 - *17 - *19 responses: @@ -95164,9 +95410,6 @@ paths: description: Timeline Event type: object anyOf: - - *674 - - *675 - - *676 - *677 - *678 - *679 @@ -95177,6 +95420,9 @@ paths: - *684 - *685 - *686 + - *687 + - *688 + - *689 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -95219,7 +95465,7 @@ paths: issue_url: type: string format: uri - author_association: *222 + author_association: *224 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -95229,16 +95475,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 - reactions: *223 + properties: *222 + required: *223 + reactions: *225 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *687 - required: *688 + properties: *690 + required: *691 nullable: true required: - event @@ -95270,7 +95516,7 @@ paths: properties: type: type: string - issue: *225 + issue: *227 required: - event - created_at @@ -95470,7 +95716,7 @@ paths: type: string body_text: type: string - author_association: *222 + author_association: *224 required: - event - id @@ -95493,7 +95739,7 @@ paths: type: string comments: type: array - items: &710 + items: &713 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -95588,7 +95834,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *222 + author_association: *224 _links: type: object properties: @@ -95672,7 +95918,7 @@ paths: enum: - line - file - reactions: *223 + reactions: *225 body_html: type: string example: '"

comment body

"' @@ -95708,7 +95954,7 @@ paths: type: string comments: type: array - items: *582 + items: *585 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -95739,8 +95985,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 assignee: *4 required: - id @@ -95783,8 +96029,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 assignee: *4 required: - id @@ -95827,8 +96073,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 state_reason: type: string nullable: true @@ -95997,7 +96243,7 @@ paths: headers: Link: *47 '404': *6 - '410': *660 + '410': *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96014,8 +96260,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -96025,7 +96271,7 @@ paths: application/json: schema: type: array - items: &689 + items: &692 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -96091,8 +96337,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -96128,9 +96374,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *692 examples: - default: &690 + default: &693 value: id: 1 key: ssh-rsa AAA... @@ -96164,9 +96410,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *468 - - *469 - - &691 + - *471 + - *472 + - &694 name: key_id description: The unique identifier of the key. in: path @@ -96178,9 +96424,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *692 examples: - default: *690 + default: *693 '404': *6 x-github: githubCloudOnly: false @@ -96198,9 +96444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *468 - - *469 - - *691 + - *471 + - *472 + - *694 responses: '204': description: Response @@ -96220,8 +96466,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -96231,9 +96477,9 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: - default: *673 + default: *676 headers: Link: *47 '404': *6 @@ -96254,8 +96500,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -96291,9 +96537,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *226 examples: - default: &692 + default: &695 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96325,8 +96571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *468 - - *469 + - *471 + - *472 - name: name in: path required: true @@ -96337,9 +96583,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *226 examples: - default: *692 + default: *695 '404': *6 x-github: githubCloudOnly: false @@ -96356,8 +96602,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *468 - - *469 + - *471 + - *472 - name: name in: path required: true @@ -96396,7 +96642,7 @@ paths: description: Response content: application/json: - schema: *224 + schema: *226 examples: default: value: @@ -96422,8 +96668,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *468 - - *469 + - *471 + - *472 - name: name in: path required: true @@ -96449,8 +96695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -96486,8 +96732,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '202': *39 '403': @@ -96515,8 +96761,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -96542,9 +96788,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *468 - - *469 - - *555 + - *471 + - *472 + - *558 responses: '200': description: Response @@ -96606,8 +96852,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true required: - _links @@ -96689,8 +96935,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -96755,8 +97001,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -96790,9 +97036,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *585 + schema: *588 examples: - default: *693 + default: *696 '204': description: Response when already merged '404': @@ -96817,8 +97063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *468 - - *469 + - *471 + - *472 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -96859,12 +97105,12 @@ paths: application/json: schema: type: array - items: &694 + items: &697 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *416 - required: *417 + properties: *419 + required: *420 examples: default: value: @@ -96920,8 +97166,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -96961,9 +97207,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: &695 + default: &698 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -97022,9 +97268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *468 - - *469 - - &696 + - *471 + - *472 + - &699 name: milestone_number description: The number that identifies the milestone. in: path @@ -97036,9 +97282,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *695 + default: *698 '404': *6 x-github: githubCloudOnly: false @@ -97055,9 +97301,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *468 - - *469 - - *696 + - *471 + - *472 + - *699 requestBody: required: false content: @@ -97095,9 +97341,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *695 + default: *698 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97113,9 +97359,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *468 - - *469 - - *696 + - *471 + - *472 + - *699 responses: '204': description: Response @@ -97136,9 +97382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *468 - - *469 - - *696 + - *471 + - *472 + - *699 - *17 - *19 responses: @@ -97148,9 +97394,9 @@ paths: application/json: schema: type: array - items: *224 + items: *226 examples: - default: *673 + default: *676 headers: Link: *47 x-github: @@ -97169,12 +97415,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *468 - - *469 - - *697 - - *698 - - *232 - - *699 + - *471 + - *472 + - *700 + - *701 + - *234 + - *702 - *17 - *19 responses: @@ -97184,9 +97430,9 @@ paths: application/json: schema: type: array - items: *252 + items: *254 examples: - default: *700 + default: *703 headers: Link: *47 x-github: @@ -97210,8 +97456,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -97269,14 +97515,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: &701 + schema: &704 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -97401,7 +97647,7 @@ paths: - custom_404 - public examples: - default: &702 + default: &705 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -97442,8 +97688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -97497,11 +97743,11 @@ paths: description: Response content: application/json: - schema: *701 + schema: *704 examples: - default: *702 + default: *705 '422': *15 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97522,8 +97768,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -97609,7 +97855,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97630,14 +97876,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response '422': *15 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97657,8 +97903,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -97668,7 +97914,7 @@ paths: application/json: schema: type: array - items: &703 + items: &706 title: Page Build description: Page Build type: object @@ -97762,8 +98008,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *468 - - *469 + - *471 + - *472 responses: '201': description: Response @@ -97808,16 +98054,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *703 + schema: *706 examples: - default: &704 + default: &707 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -97865,8 +98111,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *468 - - *469 + - *471 + - *472 - name: build_id in: path required: true @@ -97877,9 +98123,9 @@ paths: description: Response content: application/json: - schema: *703 + schema: *706 examples: - default: *704 + default: *707 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97899,8 +98145,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -98005,9 +98251,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *468 - - *469 - - &705 + - *471 + - *472 + - &708 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -98065,11 +98311,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *468 - - *469 - - *705 + - *471 + - *472 + - *708 responses: - '204': *155 + '204': *157 '404': *6 x-github: githubCloudOnly: false @@ -98094,8 +98340,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -98326,7 +98572,7 @@ paths: description: Empty response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -98353,8 +98599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Private vulnerability reporting status @@ -98391,10 +98637,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: - '204': *155 + '204': *157 '422': *14 x-github: githubCloudOnly: false @@ -98413,10 +98659,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: - '204': *155 + '204': *157 '422': *14 x-github: githubCloudOnly: false @@ -98436,8 +98682,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -98445,9 +98691,9 @@ paths: application/json: schema: type: array - items: *156 + items: *158 examples: - default: *706 + default: *709 '403': *29 '404': *6 x-github: @@ -98469,8 +98715,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -98482,11 +98728,11 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *156 + items: *158 required: - properties examples: - default: *707 + default: *710 responses: '204': description: No Content when custom property values are successfully created @@ -98524,8 +98770,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *468 - - *469 + - *471 + - *472 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -98585,9 +98831,9 @@ paths: application/json: schema: type: array - items: *589 + items: *592 examples: - default: *708 + default: *711 headers: Link: *47 '304': *37 @@ -98619,8 +98865,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -98685,7 +98931,7 @@ paths: description: Response content: application/json: - schema: &712 + schema: &715 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -98796,8 +99042,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *416 - required: *417 + properties: *419 + required: *420 nullable: true active_lock_reason: type: string @@ -98829,7 +99075,7 @@ paths: items: *4 requested_teams: type: array - items: *452 + items: *455 head: type: object properties: @@ -98837,7 +99083,7 @@ paths: type: string ref: type: string - repo: *78 + repo: *80 sha: type: string user: *4 @@ -98854,7 +99100,7 @@ paths: type: string ref: type: string - repo: *78 + repo: *80 sha: type: string user: *4 @@ -98867,14 +99113,14 @@ paths: _links: type: object properties: - comments: *418 - commits: *418 - statuses: *418 - html: *418 - issue: *418 - review_comments: *418 - review_comment: *418 - self: *418 + comments: *421 + commits: *421 + statuses: *421 + html: *421 + issue: *421 + review_comments: *421 + review_comment: *421 + self: *421 required: - comments - commits @@ -98884,8 +99130,8 @@ paths: - review_comments - review_comment - self - author_association: *222 - auto_merge: *709 + author_association: *224 + auto_merge: *712 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -98975,7 +99221,7 @@ paths: - merged_by - review_comments examples: - default: &713 + default: &716 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -99502,8 +99748,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *468 - - *469 + - *471 + - *472 - name: sort in: query required: false @@ -99522,7 +99768,7 @@ paths: enum: - asc - desc - - *232 + - *234 - *17 - *19 responses: @@ -99532,9 +99778,9 @@ paths: application/json: schema: type: array - items: *710 + items: *713 examples: - default: &715 + default: &718 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -99611,17 +99857,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '200': description: Response content: application/json: - schema: *710 + schema: *713 examples: - default: &711 + default: &714 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -99696,9 +99942,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -99720,9 +99966,9 @@ paths: description: Response content: application/json: - schema: *710 + schema: *713 examples: - default: *711 + default: *714 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99738,9 +99984,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 responses: '204': description: Response @@ -99761,9 +100007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a pull request review comment. @@ -99789,9 +100035,9 @@ paths: application/json: schema: type: array - items: *583 + items: *586 examples: - default: *663 + default: *666 headers: Link: *47 '404': *6 @@ -99812,9 +100058,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *468 - - *469 - - *241 + - *471 + - *472 + - *243 requestBody: required: true content: @@ -99846,16 +100092,16 @@ paths: description: Reaction exists content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '201': description: Reaction created content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -99877,10 +100123,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *468 - - *469 - - *241 - - *664 + - *471 + - *472 + - *243 + - *667 responses: '204': description: Response @@ -99923,9 +100169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *468 - - *469 - - &714 + - *471 + - *472 + - &717 name: pull_number description: The number that identifies the pull request. in: path @@ -99938,9 +100184,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *712 + schema: *715 examples: - default: *713 + default: *716 '304': *37 '404': *6 '406': @@ -99949,7 +100195,7 @@ paths: application/json: schema: *3 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99975,9 +100221,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: false content: @@ -100019,9 +100265,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *715 examples: - default: *713 + default: *716 '422': *15 '403': *29 x-github: @@ -100043,9 +100289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: true content: @@ -100105,21 +100351,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '401': *25 '403': *29 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100145,10 +100391,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *468 - - *469 - - *714 - - *249 + - *471 + - *472 + - *717 + - *251 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -100158,7 +100404,7 @@ paths: enum: - asc - desc - - *232 + - *234 - *17 - *19 responses: @@ -100168,9 +100414,9 @@ paths: application/json: schema: type: array - items: *710 + items: *713 examples: - default: *715 + default: *718 headers: Link: *47 x-github: @@ -100203,9 +100449,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: true content: @@ -100310,7 +100556,7 @@ paths: description: Response content: application/json: - schema: *710 + schema: *713 examples: example-for-a-multi-line-comment: value: @@ -100398,10 +100644,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *468 - - *469 - - *714 - - *241 + - *471 + - *472 + - *717 + - *243 requestBody: required: true content: @@ -100423,7 +100669,7 @@ paths: description: Response content: application/json: - schema: *710 + schema: *713 examples: default: value: @@ -100509,9 +100755,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 - *17 - *19 responses: @@ -100521,9 +100767,9 @@ paths: application/json: schema: type: array - items: *585 + items: *588 examples: - default: *716 + default: *719 headers: Link: *47 x-github: @@ -100553,9 +100799,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 - *17 - *19 responses: @@ -100565,7 +100811,7 @@ paths: application/json: schema: type: array - items: *598 + items: *601 examples: default: value: @@ -100584,7 +100830,7 @@ paths: Link: *47 '422': *15 '500': *40 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100603,9 +100849,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 responses: '204': description: Response if pull request has been merged @@ -100628,9 +100874,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: false content: @@ -100741,9 +100987,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 responses: '200': description: Response @@ -100759,7 +101005,7 @@ paths: items: *4 teams: type: array - items: *317 + items: *320 required: - users - teams @@ -100818,9 +101064,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: false content: @@ -100857,7 +101103,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *592 examples: default: value: @@ -101393,9 +101639,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: true content: @@ -101429,7 +101675,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *592 examples: default: value: @@ -101934,9 +102180,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 - *17 - *19 responses: @@ -101946,7 +102192,7 @@ paths: application/json: schema: type: array - items: &717 + items: &720 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -102015,7 +102261,7 @@ paths: type: string body_text: type: string - author_association: *222 + author_association: *224 required: - id - node_id @@ -102097,9 +102343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: false content: @@ -102185,9 +102431,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *720 examples: - default: &719 + default: &722 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102250,10 +102496,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 - - &718 + - *471 + - *472 + - *717 + - &721 name: review_id description: The unique identifier of the review. in: path @@ -102265,9 +102511,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *720 examples: - default: &720 + default: &723 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102326,10 +102572,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 - - *718 + - *471 + - *472 + - *717 + - *721 requestBody: required: true content: @@ -102352,7 +102598,7 @@ paths: description: Response content: application/json: - schema: *717 + schema: *720 examples: default: value: @@ -102414,18 +102660,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 - - *718 + - *471 + - *472 + - *717 + - *721 responses: '200': description: Response content: application/json: - schema: *717 + schema: *720 examples: - default: *719 + default: *722 '422': *7 '404': *6 x-github: @@ -102452,10 +102698,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *468 - - *469 - - *714 - - *718 + - *471 + - *472 + - *717 + - *721 - *17 - *19 responses: @@ -102534,13 +102780,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *222 + author_association: *224 _links: type: object properties: - self: *418 - html: *418 - pull_request: *418 + self: *421 + html: *421 + pull_request: *421 required: - self - html @@ -102549,7 +102795,7 @@ paths: type: string body_html: type: string - reactions: *223 + reactions: *225 side: description: The side of the first line of the range for a multi-line comment. @@ -102690,10 +102936,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 - - *718 + - *471 + - *472 + - *717 + - *721 requestBody: required: true content: @@ -102721,7 +102967,7 @@ paths: description: Response content: application/json: - schema: *717 + schema: *720 examples: default: value: @@ -102784,10 +103030,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *468 - - *469 - - *714 - - *718 + - *471 + - *472 + - *717 + - *721 requestBody: required: true content: @@ -102822,9 +103068,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *720 examples: - default: *720 + default: *723 '404': *6 '422': *7 '403': *29 @@ -102846,9 +103092,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *468 - - *469 - - *714 + - *471 + - *472 + - *717 requestBody: required: false content: @@ -102911,8 +103157,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *468 - - *469 + - *471 + - *472 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -102925,9 +103171,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *724 examples: - default: &722 + default: &725 value: type: file encoding: base64 @@ -102969,8 +103215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *468 - - *469 + - *471 + - *472 - name: dir description: The alternate path to look for a README file in: path @@ -102990,9 +103236,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *724 examples: - default: *722 + default: *725 '404': *6 '422': *15 x-github: @@ -103014,8 +103260,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -103025,7 +103271,7 @@ paths: application/json: schema: type: array - items: *723 + items: *726 examples: default: value: @@ -103119,8 +103365,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -103196,9 +103442,9 @@ paths: description: Response content: application/json: - schema: *723 + schema: *726 examples: - default: &727 + default: &730 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -103303,9 +103549,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *468 - - *469 - - &725 + - *471 + - *472 + - &728 name: asset_id description: The unique identifier of the asset. in: path @@ -103317,9 +103563,9 @@ paths: description: Response content: application/json: - schema: *724 + schema: *727 examples: - default: &726 + default: &729 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 @@ -103354,7 +103600,7 @@ paths: type: User site_admin: false '404': *6 - '302': *600 + '302': *603 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103370,9 +103616,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *468 - - *469 - - *725 + - *471 + - *472 + - *728 requestBody: required: false content: @@ -103400,9 +103646,9 @@ paths: description: Response content: application/json: - schema: *724 + schema: *727 examples: - default: *726 + default: *729 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103418,9 +103664,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *468 - - *469 - - *725 + - *471 + - *472 + - *728 responses: '204': description: Response @@ -103444,8 +103690,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -103530,16 +103776,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response content: application/json: - schema: *723 + schema: *726 examples: - default: *727 + default: *730 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103556,8 +103802,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *468 - - *469 + - *471 + - *472 - name: tag description: tag parameter in: path @@ -103570,9 +103816,9 @@ paths: description: Response content: application/json: - schema: *723 + schema: *726 examples: - default: *727 + default: *730 '404': *6 x-github: githubCloudOnly: false @@ -103594,9 +103840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *468 - - *469 - - &728 + - *471 + - *472 + - &731 name: release_id description: The unique identifier of the release. in: path @@ -103610,9 +103856,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *723 + schema: *726 examples: - default: *727 + default: *730 '401': description: Unauthorized x-github: @@ -103630,9 +103876,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 requestBody: required: false content: @@ -103696,9 +103942,9 @@ paths: description: Response content: application/json: - schema: *723 + schema: *726 examples: - default: *727 + default: *730 '404': description: Not Found if the discussion category name is invalid content: @@ -103719,9 +103965,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 responses: '204': description: Response @@ -103741,9 +103987,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 - *17 - *19 responses: @@ -103753,7 +103999,7 @@ paths: application/json: schema: type: array - items: *724 + items: *727 examples: default: value: @@ -103835,9 +104081,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: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 - name: name in: query required: true @@ -103863,7 +104109,7 @@ paths: description: Response for successful upload content: application/json: - schema: *724 + schema: *727 examples: response-for-successful-upload: value: @@ -103918,9 +104164,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -103944,9 +104190,9 @@ paths: application/json: schema: type: array - items: *583 + items: *586 examples: - default: *663 + default: *666 headers: Link: *47 '404': *6 @@ -103967,9 +104213,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *468 - - *469 - - *728 + - *471 + - *472 + - *731 requestBody: required: true content: @@ -103999,16 +104245,16 @@ paths: description: Reaction exists content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '201': description: Reaction created content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 x-github: githubCloudOnly: false @@ -104030,10 +104276,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *468 - - *469 - - *728 - - *664 + - *471 + - *472 + - *731 + - *667 responses: '204': description: Response @@ -104057,9 +104303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *468 - - *469 - - *521 + - *471 + - *472 + - *524 - *17 - *19 responses: @@ -104075,8 +104321,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *170 - - &729 + - *172 + - &732 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -104095,69 +104341,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *171 - - *729 - - allOf: - - *172 - - *729 - allOf: - *173 - - *729 - - allOf: - - *730 - - *729 + - *732 - allOf: - *174 - - *729 + - *732 - allOf: - *175 - - *729 + - *732 + - allOf: + - *733 + - *732 - allOf: - *176 - - *729 + - *732 - allOf: - *177 - - *729 + - *732 - allOf: - *178 - - *729 + - *732 - allOf: - *179 - - *729 + - *732 - allOf: - *180 - - *729 + - *732 - allOf: - *181 - - *729 + - *732 - allOf: - *182 - - *729 + - *732 - allOf: - *183 - - *729 + - *732 - allOf: - *184 - - *729 + - *732 - allOf: - *185 - - *729 + - *732 - allOf: - *186 - - *729 + - *732 - allOf: - *187 - - *729 + - *732 - allOf: - *188 - - *729 + - *732 - allOf: - *189 - - *729 + - *732 - allOf: - *190 - - *729 + - *732 + - allOf: + - *191 + - *732 + - allOf: + - *192 + - *732 examples: default: value: @@ -104196,8 +104442,8 @@ paths: category: repos subcategory: rules parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 - name: includes_parents @@ -104208,7 +104454,7 @@ paths: schema: type: boolean default: true - - *731 + - *734 responses: '200': description: Response @@ -104216,7 +104462,7 @@ paths: application/json: schema: type: array - items: *191 + items: *193 examples: default: value: @@ -104263,8 +104509,8 @@ paths: category: repos subcategory: rules parameters: - - *468 - - *469 + - *471 + - *472 requestBody: description: Request body required: true @@ -104284,16 +104530,16 @@ paths: - tag - push default: branch - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 - conditions: *162 + items: *171 + conditions: *164 rules: type: array description: An array of rules within the ruleset. - items: *732 + items: *735 required: - name - enforcement @@ -104324,9 +104570,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: &741 + default: &744 value: id: 42 name: super cool ruleset @@ -104374,12 +104620,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *468 - - *469 - - *733 - - *105 - - *734 - - *735 + - *471 + - *472 + - *736 + - *107 + - *737 + - *738 - *17 - *19 responses: @@ -104387,9 +104633,9 @@ paths: description: Response content: application/json: - schema: *736 + schema: *739 examples: - default: *737 + default: *740 '404': *6 '500': *40 x-github: @@ -104410,17 +104656,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *468 - - *469 - - *738 + - *471 + - *472 + - *741 responses: '200': description: Response content: application/json: - schema: *739 + schema: *742 examples: - default: *740 + default: *743 '404': *6 '500': *40 x-github: @@ -104448,8 +104694,8 @@ paths: category: repos subcategory: rules parameters: - - *468 - - *469 + - *471 + - *472 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104469,9 +104715,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *741 + default: *744 '404': *6 '500': *40 put: @@ -104489,8 +104735,8 @@ paths: category: repos subcategory: rules parameters: - - *468 - - *469 + - *471 + - *472 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104515,16 +104761,16 @@ paths: - branch - tag - push - enforcement: *168 + enforcement: *170 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *169 - conditions: *162 + items: *171 + conditions: *164 rules: description: An array of rules within the ruleset. type: array - items: *732 + items: *735 examples: default: value: @@ -104552,9 +104798,9 @@ paths: description: Response content: application/json: - schema: *191 + schema: *193 examples: - default: *741 + default: *744 '404': *6 '422': *15 '500': *40 @@ -104573,8 +104819,8 @@ paths: category: repos subcategory: rules parameters: - - *468 - - *469 + - *471 + - *472 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104597,8 +104843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 - name: ruleset_id @@ -104614,9 +104860,9 @@ paths: application/json: schema: type: array - items: *195 + items: *197 examples: - default: *436 + default: *439 '404': *6 '500': *40 x-github: @@ -104635,8 +104881,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *468 - - *469 + - *471 + - *472 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104654,7 +104900,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *440 examples: default: value: @@ -104709,22 +104955,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *468 - - *469 - - *438 - - *439 - - *440 + - *471 + - *472 - *441 - *442 - - *110 - - *19 - - *17 - - *742 - - *743 - *443 - *444 - *445 + - *112 + - *19 + - *17 + - *745 + - *746 - *446 + - *447 + - *448 + - *449 responses: '200': description: Response @@ -104732,11 +104978,11 @@ paths: application/json: schema: type: array - items: &747 + items: &750 type: object properties: - number: *128 - created_at: *135 + number: *130 + created_at: *137 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -104744,15 +104990,15 @@ paths: format: date-time readOnly: true nullable: true - url: *133 - html_url: *134 + url: *135 + html_url: *136 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *744 - resolution: *745 + state: *747 + resolution: *748 resolved_at: type: string format: date-time @@ -104848,7 +105094,7 @@ paths: pull request. ' - oneOf: *746 + oneOf: *749 nullable: true has_more_locations: type: boolean @@ -104975,7 +105221,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104997,16 +105243,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *468 - - *469 - - *549 - - *446 + - *471 + - *472 + - *552 + - *449 responses: '200': description: Response content: application/json: - schema: *747 + schema: *750 examples: default: value: @@ -105037,7 +105283,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105060,9 +105306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 requestBody: required: true content: @@ -105070,8 +105316,8 @@ paths: schema: type: object properties: - state: *744 - resolution: *745 + state: *747 + resolution: *748 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -105105,7 +105351,7 @@ paths: description: Response content: application/json: - schema: *747 + schema: *750 examples: default: value: @@ -105178,7 +105424,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -105200,9 +105446,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *468 - - *469 - - *549 + - *471 + - *472 + - *552 - *19 - *17 responses: @@ -105213,7 +105459,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &935 + items: &938 type: object properties: type: @@ -105239,9 +105485,6 @@ paths: example: commit details: oneOf: - - *748 - - *749 - - *750 - *751 - *752 - *753 @@ -105252,6 +105495,9 @@ paths: - *758 - *759 - *760 + - *761 + - *762 + - *763 examples: default: value: @@ -105315,7 +105561,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105337,8 +105583,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -105346,14 +105592,14 @@ paths: schema: type: object properties: - reason: &762 + reason: &765 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *761 + placeholder_id: *764 required: - reason - placeholder_id @@ -105370,7 +105616,7 @@ paths: schema: type: object properties: - reason: *762 + reason: *765 expire_at: type: string format: date-time @@ -105393,7 +105639,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *196 + '503': *198 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -105416,13 +105662,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *196 + '503': *198 '200': description: Response content: @@ -105432,7 +105678,7 @@ paths: properties: incremental_scans: type: array - items: &763 + items: &766 description: Information on a single scan performed by secret scanning on the repository type: object @@ -105458,15 +105704,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *763 + items: *766 backfill_scans: type: array - items: *763 + items: *766 custom_pattern_backfill_scans: type: array items: allOf: - - *763 + - *766 - type: object properties: pattern_name: @@ -105536,9 +105782,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *468 - - *469 - - *110 + - *471 + - *472 + - *112 - name: sort description: The property to sort the results by. in: query @@ -105550,8 +105796,8 @@ paths: - updated - published default: created - - *108 - - *109 + - *110 + - *111 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -105581,9 +105827,9 @@ paths: application/json: schema: type: array - items: *764 + items: *767 examples: - default: *765 + default: *768 '400': *14 '404': *6 x-github: @@ -105606,8 +105852,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -105680,7 +105926,7 @@ paths: login: type: string description: The username of the user credited. - type: *451 + type: *454 required: - login - type @@ -105767,9 +106013,9 @@ paths: description: Response content: application/json: - schema: *764 + schema: *767 examples: - default: &767 + default: &770 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -106002,8 +106248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -106107,7 +106353,7 @@ paths: description: Response content: application/json: - schema: *764 + schema: *767 examples: default: value: @@ -106254,17 +106500,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *468 - - *469 - - *766 + - *471 + - *472 + - *769 responses: '200': description: Response content: application/json: - schema: *764 + schema: *767 examples: - default: *767 + default: *770 '403': *29 '404': *6 x-github: @@ -106288,9 +106534,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *468 - - *469 - - *766 + - *471 + - *472 + - *769 requestBody: required: true content: @@ -106363,7 +106609,7 @@ paths: login: type: string description: The username of the user credited. - type: *451 + type: *454 required: - login - type @@ -106449,17 +106695,17 @@ paths: description: Response content: application/json: - schema: *764 + schema: *767 examples: - default: *767 - add_credit: *767 + default: *770 + add_credit: *770 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *263 + schema: *265 examples: invalid_state_transition: value: @@ -106490,9 +106736,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *468 - - *469 - - *766 + - *471 + - *472 + - *769 responses: '202': *39 '400': *14 @@ -106519,17 +106765,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *468 - - *469 - - *766 + - *471 + - *472 + - *769 responses: '202': description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *475 + default: *478 '400': *14 '422': *15 '403': *29 @@ -106555,8 +106801,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -106655,8 +106901,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -106665,7 +106911,7 @@ paths: application/json: schema: type: array - items: &768 + items: &771 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -106678,7 +106924,7 @@ paths: - 1124 - -435 '202': *39 - '204': *155 + '204': *157 '422': description: Repository contains more than 10,000 commits x-github: @@ -106698,8 +106944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -106748,7 +106994,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *155 + '204': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106775,8 +107021,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -106850,7 +107096,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *155 + '204': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106872,8 +107118,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -107027,8 +107273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -107038,7 +107284,7 @@ paths: application/json: schema: type: array - items: *768 + items: *771 examples: default: value: @@ -107051,7 +107297,7 @@ paths: - - 0 - 2 - 21 - '204': *155 + '204': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107071,8 +107317,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *468 - - *469 + - *471 + - *472 - name: sha in: path required: true @@ -107126,7 +107372,7 @@ paths: description: Response content: application/json: - schema: *769 + schema: *772 examples: default: value: @@ -107180,8 +107426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -107193,7 +107439,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -107213,14 +107459,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &770 + schema: &773 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -107288,8 +107534,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: false content: @@ -107315,7 +107561,7 @@ paths: description: Response content: application/json: - schema: *770 + schema: *773 examples: default: value: @@ -107342,8 +107588,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -107363,8 +107609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -107443,8 +107689,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *468 - - *469 + - *471 + - *472 - name: ref in: path required: true @@ -107480,8 +107726,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *468 - - *469 + - *471 + - *472 - *17 - *19 responses: @@ -107491,9 +107737,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *396 + default: *399 headers: Link: *47 '404': *6 @@ -107513,8 +107759,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *468 - - *469 + - *471 + - *472 - *19 - *17 responses: @@ -107522,7 +107768,7 @@ paths: description: Response content: application/json: - schema: &771 + schema: &774 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -107534,7 +107780,7 @@ paths: required: - names examples: - default: &772 + default: &775 value: names: - octocat @@ -107557,8 +107803,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -107589,9 +107835,9 @@ paths: description: Response content: application/json: - schema: *771 + schema: *774 examples: - default: *772 + default: *775 '404': *6 '422': *7 x-github: @@ -107612,9 +107858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *468 - - *469 - - &773 + - *471 + - *472 + - &776 name: per description: The time frame to display results for. in: query @@ -107643,7 +107889,7 @@ paths: example: 128 clones: type: array - items: &774 + items: &777 title: Traffic type: object properties: @@ -107730,8 +107976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -107821,8 +108067,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *468 - - *469 + - *471 + - *472 responses: '200': description: Response @@ -107882,9 +108128,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *468 - - *469 - - *773 + - *471 + - *472 + - *776 responses: '200': description: Response @@ -107903,7 +108149,7 @@ paths: example: 3782 views: type: array - items: *774 + items: *777 required: - uniques - count @@ -107980,8 +108226,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *468 - - *469 + - *471 + - *472 requestBody: required: true content: @@ -108017,7 +108263,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *291 examples: default: value: @@ -108255,8 +108501,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -108279,8 +108525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -108302,8 +108548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -108329,8 +108575,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *468 - - *469 + - *471 + - *472 - name: ref in: path required: true @@ -108422,9 +108668,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *475 + default: *478 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -108465,7 +108711,7 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: default: value: @@ -108571,8 +108817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *282 - - *669 + - *285 + - *672 requestBody: required: true content: @@ -108636,14 +108882,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *672 + items: *675 examples: - default: *775 + default: *778 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *196 + '503': *198 x-github: triggersNotification: true githubCloudOnly: false @@ -108674,8 +108920,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *282 - - *669 + - *285 + - *672 requestBody: required: true content: @@ -108740,14 +108986,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *672 + items: *675 examples: - default: *775 + default: *778 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *196 + '503': *198 x-github: triggersNotification: true githubCloudOnly: false @@ -108773,16 +109019,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *282 - - *669 - - *380 + - *285 + - *672 + - *383 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *196 + '503': *198 x-github: triggersNotification: true githubCloudOnly: false @@ -108817,7 +109063,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &783 + - &786 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -108826,7 +109072,7 @@ paths: schema: type: string example: members - - &788 + - &791 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -108837,7 +109083,7 @@ paths: default: 1 format: int32 example: 1 - - &789 + - &792 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -108879,7 +109125,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &778 + items: &781 allOf: - type: object required: @@ -108954,7 +109200,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &790 + meta: &793 type: object description: The metadata associated with the creation/updates to the user. @@ -109014,30 +109260,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &779 + '400': &782 description: Bad request content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 - '401': *777 - '403': &780 + schema: *779 + '401': *780 + '403': &783 description: Permission denied - '429': &781 + '429': &784 description: Too many requests content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 - '500': &782 + schema: *779 + '500': &785 description: Internal server error content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 + schema: *779 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109061,7 +109307,7 @@ paths: required: true content: application/json: - schema: &786 + schema: &789 type: object required: - schemas @@ -109121,9 +109367,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *778 + schema: *781 examples: - group: &784 + group: &787 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -109142,13 +109388,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *779 - '401': *777 - '403': *780 - '409': &787 + '400': *782 + '401': *780 + '403': *783 + '409': &790 description: Duplicate record detected - '429': *781 - '500': *782 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109165,7 +109411,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &785 + - &788 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -109173,22 +109419,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *783 + - *786 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *778 + schema: *781 examples: - default: *784 - '400': *779 - '401': *777 - '403': *780 + default: *787 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '429': *781 - '500': *782 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109207,13 +109453,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *785 + - *788 - *41 requestBody: required: true content: application/json: - schema: *786 + schema: *789 examples: group: summary: Group @@ -109239,17 +109485,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *778 + schema: *781 examples: - group: *784 - groupWithMembers: *784 - '400': *779 - '401': *777 - '403': *780 + group: *787 + groupWithMembers: *787 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '409': *787 - '429': *781 - '500': *782 + '409': *790 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109273,13 +109519,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *785 + - *788 - *41 requestBody: required: true content: application/json: - schema: &797 + schema: &800 type: object required: - Operations @@ -109339,17 +109585,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *778 + schema: *781 examples: - updateGroup: *784 - addMembers: *784 - '400': *779 - '401': *777 - '403': *780 + updateGroup: *787 + addMembers: *787 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '409': *787 - '429': *781 - '500': *782 + '409': *790 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109365,17 +109611,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *785 + - *788 - *41 responses: '204': description: Group was deleted, no content - '400': *779 - '401': *777 - '403': *780 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '429': *781 - '500': *782 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109409,8 +109655,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *788 - - *789 + - *791 + - *792 - *41 responses: '200': @@ -109443,7 +109689,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &792 + items: &795 allOf: - type: object required: @@ -109522,7 +109768,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &791 + roles: &794 type: array description: The roles assigned to the user. items: @@ -109578,7 +109824,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *790 + meta: *793 startIndex: type: integer description: A starting index for the returned page @@ -109615,11 +109861,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *779 - '401': *777 - '403': *780 - '429': *781 - '500': *782 + '400': *782 + '401': *780 + '403': *783 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109643,7 +109889,7 @@ paths: required: true content: application/json: - schema: &795 + schema: &798 type: object required: - schemas @@ -109725,9 +109971,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *791 + roles: *794 examples: - user: &796 + user: &799 summary: User value: schemas: @@ -109774,9 +110020,9 @@ paths: description: User has been created content: application/scim+json: - schema: *792 + schema: *795 examples: - user: &793 + user: &796 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -109802,13 +110048,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *793 - '400': *779 - '401': *777 - '403': *780 - '409': *787 - '429': *781 - '500': *782 + enterpriseOwner: *796 + '400': *782 + '401': *780 + '403': *783 + '409': *790 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109825,7 +110071,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &794 + - &797 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -109838,15 +110084,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *792 + schema: *795 examples: - default: *793 - '400': *779 - '401': *777 - '403': *780 + default: *796 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '429': *781 - '500': *782 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109897,30 +110143,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *794 + - *797 - *41 requestBody: required: true content: application/json: - schema: *795 + schema: *798 examples: - user: *796 + user: *799 responses: '200': description: User was updated content: application/scim+json: - schema: *792 + schema: *795 examples: - user: *793 - '400': *779 - '401': *777 - '403': *780 + user: *796 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '409': *787 - '429': *781 - '500': *782 + '409': *790 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -109961,13 +110207,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *794 + - *797 - *41 requestBody: required: true content: application/json: - schema: *797 + schema: *800 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -110007,18 +110253,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *792 + schema: *795 examples: - userMultiValuedProperties: *793 - userSingleValuedProperties: *793 - disableUser: *793 - '400': *779 - '401': *777 - '403': *780 + userMultiValuedProperties: *796 + userSingleValuedProperties: *796 + disableUser: *796 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '409': *787 - '429': *781 - '500': *782 + '409': *790 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110038,17 +110284,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *794 + - *797 - *41 responses: '204': description: User was deleted, no content - '400': *779 - '401': *777 - '403': *780 + '400': *782 + '401': *780 + '403': *783 '404': *6 - '429': *781 - '500': *782 + '429': *784 + '500': *785 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -110081,7 +110327,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#list-scim-provisioned-identities parameters: - - *87 + - *89 - name: startIndex description: 'Used for pagination: the index of the first result to return.' in: query @@ -110135,7 +110381,7 @@ paths: example: 1 Resources: type: array - items: &798 + items: &801 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -110366,22 +110612,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &799 + '404': &802 description: Resource not found content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 - '403': &800 + schema: *779 + '403': &803 description: Forbidden content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 - '400': *779 - '429': *781 + schema: *779 + '400': *782 + '429': *784 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -110401,15 +110647,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#provision-and-invite-a-scim-user parameters: - - *87 + - *89 responses: '201': description: Response content: application/scim+json: - schema: *798 + schema: *801 examples: - default: &801 + default: &804 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -110432,17 +110678,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *799 - '403': *800 - '500': *782 + '404': *802 + '403': *803 + '500': *785 '409': description: Conflict content: application/json: - schema: *776 + schema: *779 application/scim+json: - schema: *776 - '400': *779 + schema: *779 + '400': *782 requestBody: required: true content: @@ -110539,18 +110785,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - - *87 - - *794 + - *89 + - *797 responses: '200': description: Response content: application/scim+json: - schema: *798 + schema: *801 examples: - default: *801 - '404': *799 - '403': *800 + default: *804 + '404': *802 + '403': *803 '304': *37 x-github: githubCloudOnly: true @@ -110573,19 +110819,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - - *87 - - *794 + - *89 + - *797 responses: '200': description: Response content: application/scim+json: - schema: *798 + schema: *801 examples: - default: *801 + default: *804 '304': *37 - '404': *799 - '403': *800 + '404': *802 + '403': *803 requestBody: required: true content: @@ -110697,20 +110943,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - - *87 - - *794 + - *89 + - *797 responses: '200': description: Response content: application/scim+json: - schema: *798 + schema: *801 examples: - default: *801 + default: *804 '304': *37 - '404': *799 - '403': *800 - '400': *779 + '404': *802 + '403': *803 + '400': *782 '429': description: Response content: @@ -110800,13 +111046,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - - *87 - - *794 + - *89 + - *797 responses: '204': description: Response - '404': *799 - '403': *800 + '404': *802 + '403': *803 '304': *37 x-github: githubCloudOnly: true @@ -110921,7 +111167,7 @@ paths: html_url: type: string format: uri - repository: *288 + repository: *291 score: type: number file_size: @@ -110939,7 +111185,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &802 + text_matches: &805 title: Search Result Text Matches type: array items: @@ -111053,7 +111299,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *196 + '503': *198 '422': *15 '403': *29 x-github: @@ -111102,7 +111348,7 @@ paths: enum: - author-date - committer-date - - &803 + - &806 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 @@ -111173,7 +111419,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *519 + properties: *522 nullable: true comment_count: type: integer @@ -111193,7 +111439,7 @@ paths: url: type: string format: uri - verification: *647 + verification: *650 required: - author - committer @@ -111212,7 +111458,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *519 + properties: *522 nullable: true parents: type: array @@ -111225,12 +111471,12 @@ paths: type: string sha: type: string - repository: *288 + repository: *291 score: type: number node_id: type: string - text_matches: *802 + text_matches: *805 required: - sha - node_id @@ -111423,7 +111669,7 @@ paths: - interactions - created - updated - - *803 + - *806 - *17 - *19 - name: advanced_search @@ -111520,11 +111766,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: type: string state_reason: @@ -111534,8 +111780,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *416 - required: *417 + properties: *419 + required: *420 nullable: true comments: type: integer @@ -111549,7 +111795,7 @@ paths: type: string format: date-time nullable: true - text_matches: *802 + text_matches: *805 pull_request: type: object properties: @@ -111582,10 +111828,10 @@ paths: type: string score: type: number - author_association: *222 + author_association: *224 draft: type: boolean - repository: *78 + repository: *80 body_html: type: string body_text: @@ -111593,7 +111839,7 @@ paths: timeline_url: type: string format: uri - type: *381 + type: *384 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -111603,17 +111849,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - reactions: *223 + reactions: *225 required: - closed_at - comments @@ -111728,7 +111974,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *196 + '503': *198 '422': *15 '304': *37 '403': *29 @@ -111781,7 +112027,7 @@ paths: enum: - created - updated - - *803 + - *806 - *17 - *19 responses: @@ -111825,7 +112071,7 @@ paths: nullable: true score: type: number - text_matches: *802 + text_matches: *805 required: - id - node_id @@ -111911,7 +112157,7 @@ paths: - forks - help-wanted-issues - updated - - *803 + - *806 - *17 - *19 responses: @@ -112141,8 +112387,8 @@ paths: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true permissions: type: object @@ -112161,7 +112407,7 @@ paths: - admin - pull - push - text_matches: *802 + text_matches: *805 temp_clone_token: type: string allow_merge_commit: @@ -112363,7 +112609,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *196 + '503': *198 '422': *15 '304': *37 x-github: @@ -112462,7 +112708,7 @@ paths: type: string format: uri nullable: true - text_matches: *802 + text_matches: *805 related: type: array nullable: true @@ -112655,7 +112901,7 @@ paths: - followers - repositories - joined - - *803 + - *806 - *17 - *19 responses: @@ -112759,7 +113005,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *802 + text_matches: *805 blog: type: string nullable: true @@ -112818,7 +113064,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *196 + '503': *198 '422': *15 x-github: githubCloudOnly: false @@ -112838,7 +113084,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &806 + - &809 name: team_id description: The unique identifier of the team. in: path @@ -112850,9 +113096,9 @@ paths: description: Response content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '404': *6 x-github: githubCloudOnly: false @@ -112879,7 +113125,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *806 + - *809 requestBody: required: true content: @@ -112942,16 +113188,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '201': description: Response content: application/json: - schema: *460 + schema: *463 examples: - default: *461 + default: *464 '404': *6 '422': *15 '403': *29 @@ -112979,7 +113225,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *806 + - *809 responses: '204': description: Response @@ -113008,7 +113254,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *806 + - *809 - *17 - *19 responses: @@ -113018,9 +113264,9 @@ paths: application/json: schema: type: array - items: *375 + items: *378 examples: - default: *376 + default: *379 headers: Link: *47 x-github: @@ -113046,7 +113292,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *806 + - *809 - name: role description: Filters members returned by their role in the team. in: query @@ -113069,7 +113315,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 '404': *6 @@ -113097,8 +113343,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *806 - - *143 + - *809 + - *145 responses: '204': description: if user is a member @@ -113134,8 +113380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *806 - - *143 + - *809 + - *145 responses: '204': description: Response @@ -113174,8 +113420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *806 - - *143 + - *809 + - *145 responses: '204': description: Response @@ -113211,16 +113457,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *806 - - *143 + - *809 + - *145 responses: '200': description: Response content: application/json: - schema: *467 + schema: *470 examples: - response-if-user-is-a-team-maintainer: *807 + response-if-user-is-a-team-maintainer: *810 '404': *6 x-github: githubCloudOnly: false @@ -113253,8 +113499,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *806 - - *143 + - *809 + - *145 requestBody: required: false content: @@ -113279,9 +113525,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *470 examples: - response-if-users-membership-with-team-is-now-pending: *808 + response-if-users-membership-with-team-is-now-pending: *811 '403': description: Forbidden if team synchronization is set up '422': @@ -113315,8 +113561,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *806 - - *143 + - *809 + - *145 responses: '204': description: Response @@ -113343,7 +113589,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *806 + - *809 - *17 - *19 responses: @@ -113353,9 +113599,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *410 + default: *413 headers: Link: *47 '404': *6 @@ -113385,15 +113631,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *806 - - *468 - - *469 + - *809 + - *471 + - *472 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *809 + schema: *812 examples: alternative-response-with-extra-repository-information: value: @@ -113544,9 +113790,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *806 - - *468 - - *469 + - *809 + - *471 + - *472 requestBody: required: false content: @@ -113596,9 +113842,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *806 - - *468 - - *469 + - *809 + - *471 + - *472 responses: '204': description: Response @@ -113627,15 +113873,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *806 + - *809 responses: '200': description: Response content: application/json: - schema: *470 + schema: *473 examples: - default: *471 + default: *474 '403': *29 '404': *6 x-github: @@ -113662,7 +113908,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *806 + - *809 requestBody: required: true content: @@ -113719,7 +113965,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -113750,7 +113996,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *806 + - *809 - *17 - *19 responses: @@ -113760,9 +114006,9 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - response-if-child-teams-exist: *810 + response-if-child-teams-exist: *813 headers: Link: *47 '404': *6 @@ -113795,7 +114041,7 @@ paths: application/json: schema: oneOf: - - &811 + - &814 title: Private User description: Private User type: object @@ -113998,7 +114244,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &838 + - &841 title: Public User description: Public User type: object @@ -114310,7 +114556,7 @@ paths: description: Response content: application/json: - schema: *811 + schema: *814 examples: default: value: @@ -114389,7 +114635,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 '304': *37 '404': *6 '403': *29 @@ -114412,7 +114658,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *143 + - *145 responses: '204': description: If the user is blocked @@ -114440,7 +114686,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *143 + - *145 responses: '204': description: Response @@ -114464,7 +114710,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *143 + - *145 responses: '204': description: Response @@ -114513,9 +114759,9 @@ paths: type: integer codespaces: type: array - items: *386 + items: *389 examples: - default: *387 + default: *390 '304': *37 '500': *40 '401': *25 @@ -114654,21 +114900,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '401': *25 '403': *29 '404': *6 - '503': *196 + '503': *198 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -114708,7 +114954,7 @@ paths: type: integer secrets: type: array - items: &812 + items: &815 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -114748,7 +114994,7 @@ paths: - visibility - selected_repositories_url examples: - default: *575 + default: *578 headers: Link: *47 x-github: @@ -114818,13 +115064,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *298 + - *301 responses: '200': description: Response content: application/json: - schema: *812 + schema: *815 examples: default: value: @@ -114854,7 +115100,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *298 + - *301 requestBody: required: true content: @@ -114899,7 +115145,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -114927,7 +115173,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *298 + - *301 responses: '204': description: Response @@ -114952,7 +115198,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *298 + - *301 responses: '200': description: Response @@ -114968,9 +115214,9 @@ paths: type: integer repositories: type: array - items: *288 + items: *291 examples: - default: *813 + default: *816 '401': *25 '403': *29 '404': *6 @@ -114995,7 +115241,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *298 + - *301 requestBody: required: true content: @@ -115049,7 +115295,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *298 + - *301 - name: repository_id in: path required: true @@ -115082,7 +115328,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *298 + - *301 - name: repository_id in: path required: true @@ -115114,15 +115360,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '304': *37 '500': *40 '401': *25 @@ -115148,7 +115394,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 requestBody: required: false content: @@ -115178,9 +115424,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '401': *25 '403': *29 '404': *6 @@ -115202,7 +115448,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 responses: '202': *39 '304': *37 @@ -115231,13 +115477,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 responses: '202': description: Response content: application/json: - schema: &814 + schema: &817 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -115278,7 +115524,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &815 + default: &818 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -115310,7 +115556,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *388 + - *391 - name: export_id in: path required: true @@ -115323,9 +115569,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *817 examples: - default: *815 + default: *818 '404': *6 x-github: githubCloudOnly: false @@ -115346,7 +115592,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *388 + - *391 responses: '200': description: Response @@ -115362,9 +115608,9 @@ paths: type: integer machines: type: array - items: *816 + items: *819 examples: - default: *817 + default: *820 '304': *37 '500': *40 '401': *25 @@ -115393,7 +115639,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *388 + - *391 requestBody: required: true content: @@ -115443,13 +115689,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *473 + repository: *476 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *573 - required: *574 + properties: *576 + required: *577 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -116223,15 +116469,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '304': *37 '500': *40 '400': *14 @@ -116243,7 +116489,7 @@ paths: schema: *3 '403': *29 '404': *6 - '409': *119 + '409': *121 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116263,15 +116509,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *388 + - *391 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *572 + default: *575 '500': *40 '401': *25 '403': *29 @@ -116301,9 +116547,9 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: - default: &828 + default: &831 value: - id: 197 name: hello_docker @@ -116404,7 +116650,7 @@ paths: application/json: schema: type: array - items: &818 + items: &821 title: Email description: Email type: object @@ -116469,9 +116715,9 @@ paths: application/json: schema: type: array - items: *818 + items: *821 examples: - default: &830 + default: &833 value: - email: octocat@github.com verified: true @@ -116546,7 +116792,7 @@ paths: application/json: schema: type: array - items: *818 + items: *821 examples: default: value: @@ -116656,7 +116902,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 '304': *37 @@ -116689,7 +116935,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 '304': *37 @@ -116711,7 +116957,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *143 + - *145 responses: '204': description: if the person is followed by the authenticated user @@ -116741,7 +116987,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *143 + - *145 responses: '204': description: Response @@ -116766,7 +117012,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *143 + - *145 responses: '204': description: Response @@ -116802,7 +117048,7 @@ paths: application/json: schema: type: array - items: &819 + items: &822 title: GPG Key description: A unique encryption key type: object @@ -116933,7 +117179,7 @@ paths: - subkeys - revoked examples: - default: &847 + default: &850 value: - id: 3 name: Octocat's GPG Key @@ -117018,9 +117264,9 @@ paths: description: Response content: application/json: - schema: *819 + schema: *822 examples: - default: &820 + default: &823 value: id: 3 name: Octocat's GPG Key @@ -117077,7 +117323,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &821 + - &824 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -117089,9 +117335,9 @@ paths: description: Response content: application/json: - schema: *819 + schema: *822 examples: - default: *820 + default: *823 '404': *6 '304': *37 '403': *29 @@ -117114,7 +117360,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *821 + - *824 responses: '204': description: Response @@ -117305,9 +117551,9 @@ paths: type: array items: allOf: - - *78 + - *80 examples: - default: *283 + default: *286 headers: Link: *47 '404': *6 @@ -117332,7 +117578,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *282 + - *285 responses: '204': description: Response @@ -117358,7 +117604,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *282 + - *285 responses: '204': description: Response @@ -117392,12 +117638,12 @@ paths: application/json: schema: anyOf: - - *373 + - *376 - type: object properties: {} additionalProperties: false examples: - default: *374 + default: *377 '204': description: Response when there are no restrictions x-github: @@ -117421,7 +117667,7 @@ paths: required: true content: application/json: - schema: *657 + schema: *660 examples: default: value: @@ -117432,7 +117678,7 @@ paths: description: Response content: application/json: - schema: *373 + schema: *376 examples: default: value: @@ -117513,7 +117759,7 @@ paths: - closed - all default: open - - *384 + - *387 - name: sort description: What to sort results by. in: query @@ -117525,8 +117771,8 @@ paths: - updated - comments default: created - - *110 - - *232 + - *112 + - *234 - *17 - *19 responses: @@ -117536,9 +117782,9 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: - default: *385 + default: *388 headers: Link: *47 '404': *6 @@ -117571,7 +117817,7 @@ paths: application/json: schema: type: array - items: &822 + items: &825 title: Key description: Key type: object @@ -117672,9 +117918,9 @@ paths: description: Response content: application/json: - schema: *822 + schema: *825 examples: - default: &823 + default: &826 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -117707,15 +117953,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *691 + - *694 responses: '200': description: Response content: application/json: - schema: *822 + schema: *825 examples: - default: *823 + default: *826 '404': *6 '304': *37 '403': *29 @@ -117738,7 +117984,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *691 + - *694 responses: '204': description: Response @@ -117771,7 +118017,7 @@ paths: application/json: schema: type: array - items: &824 + items: &827 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -117828,7 +118074,7 @@ paths: - id - type - login - plan: *243 + plan: *245 required: - billing_cycle - next_billing_date @@ -117839,7 +118085,7 @@ paths: - account - plan examples: - default: &825 + default: &828 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -117901,9 +118147,9 @@ paths: application/json: schema: type: array - items: *824 + items: *827 examples: - default: *825 + default: *828 headers: Link: *47 '304': *37 @@ -117943,7 +118189,7 @@ paths: application/json: schema: type: array - items: *389 + items: *392 examples: default: value: @@ -118051,13 +118297,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *87 + - *89 responses: '200': description: Response content: application/json: - schema: *389 + schema: *392 examples: default: value: @@ -118119,7 +118365,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *87 + - *89 requestBody: required: true content: @@ -118144,7 +118390,7 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: default: value: @@ -118216,7 +118462,7 @@ paths: application/json: schema: type: array - items: *391 + items: *394 examples: default: value: @@ -118469,7 +118715,7 @@ paths: description: Response content: application/json: - schema: *391 + schema: *394 examples: default: value: @@ -118649,7 +118895,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *392 + - *395 - name: exclude in: query required: false @@ -118662,7 +118908,7 @@ paths: description: Response content: application/json: - schema: *391 + schema: *394 examples: default: value: @@ -118856,7 +119102,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *392 + - *395 responses: '302': description: Response @@ -118882,7 +119128,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *392 + - *395 responses: '204': description: Response @@ -118911,8 +119157,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *392 - - *826 + - *395 + - *829 responses: '204': description: Response @@ -118936,7 +119182,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *392 + - *395 - *17 - *19 responses: @@ -118946,7 +119192,7 @@ paths: application/json: schema: type: array - items: *120 + items: *122 headers: Link: *47 '404': *6 @@ -118981,9 +119227,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *256 + default: *258 headers: Link: *47 '304': *37 @@ -119025,7 +119271,7 @@ paths: - docker - nuget - container - - *827 + - *830 - *19 - *17 responses: @@ -119035,10 +119281,10 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: - default: *828 - '400': *829 + default: *831 + '400': *832 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119058,16 +119304,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *399 - - *400 + - *402 + - *403 responses: '200': description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: &848 + default: &851 value: id: 40201 name: octo-name @@ -119180,8 +119426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *399 - - *400 + - *402 + - *403 responses: '204': description: Response @@ -119211,8 +119457,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *399 - - *400 + - *402 + - *403 - name: token description: package token schema: @@ -119244,8 +119490,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *399 - - *400 + - *402 + - *403 - *19 - *17 - name: state @@ -119265,7 +119511,7 @@ paths: application/json: schema: type: array - items: *401 + items: *404 examples: default: value: @@ -119314,15 +119560,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *399 - - *400 - *402 + - *403 + - *405 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: default: value: @@ -119358,9 +119604,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *399 - - *400 - *402 + - *403 + - *405 responses: '204': description: Response @@ -119390,9 +119636,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *399 - - *400 - *402 + - *403 + - *405 responses: '204': description: Response @@ -119429,9 +119675,9 @@ paths: application/json: schema: type: array - items: *818 + items: *821 examples: - default: *830 + default: *833 headers: Link: *47 '304': *37 @@ -119542,9 +119788,9 @@ paths: application/json: schema: type: array - items: *78 + items: *80 examples: - default: &837 + default: &840 summary: Default response value: - id: 1296269 @@ -119848,9 +120094,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *475 + default: *478 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -119889,9 +120135,9 @@ paths: application/json: schema: type: array - items: *659 + items: *662 examples: - default: *831 + default: *834 headers: Link: *47 '304': *37 @@ -119914,12 +120160,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *377 + - *380 responses: '204': description: Response '403': *29 - '409': *119 + '409': *121 '404': *6 '304': *37 '451': *15 @@ -119938,11 +120184,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *377 + - *380 responses: '204': description: Response - '409': *119 + '409': *121 '304': *37 '404': *6 '403': *29 @@ -119971,7 +120217,7 @@ paths: application/json: schema: type: array - items: &832 + items: &835 title: Social account description: Social media account type: object @@ -119986,7 +120232,7 @@ paths: - provider - url examples: - default: &833 + default: &836 value: - provider: twitter url: https://twitter.com/github @@ -120048,9 +120294,9 @@ paths: application/json: schema: type: array - items: *832 + items: *835 examples: - default: *833 + default: *836 '422': *15 '304': *37 '404': *6 @@ -120137,7 +120383,7 @@ paths: application/json: schema: type: array - items: &834 + items: &837 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -120157,7 +120403,7 @@ paths: - title - created_at examples: - default: &862 + default: &865 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -120221,9 +120467,9 @@ paths: description: Response content: application/json: - schema: *834 + schema: *837 examples: - default: &835 + default: &838 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -120253,7 +120499,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &836 + - &839 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -120265,9 +120511,9 @@ paths: description: Response content: application/json: - schema: *834 + schema: *837 examples: - default: *835 + default: *838 '404': *6 '304': *37 '403': *29 @@ -120290,7 +120536,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *836 + - *839 responses: '204': description: Response @@ -120319,7 +120565,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &863 + - &866 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 @@ -120332,7 +120578,7 @@ paths: - created - updated default: created - - *110 + - *112 - *17 - *19 responses: @@ -120342,13 +120588,13 @@ paths: application/json: schema: type: array - items: *78 + items: *80 examples: - default-response: *837 + default-response: *840 application/vnd.github.v3.star+json: schema: type: array - items: &864 + items: &867 title: Starred Repository description: Starred Repository type: object @@ -120356,7 +120602,7 @@ paths: starred_at: type: string format: date-time - repo: *78 + repo: *80 required: - starred_at - repo @@ -120504,8 +120750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response if this repository is starred by you @@ -120533,8 +120779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -120558,8 +120804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *468 - - *469 + - *471 + - *472 responses: '204': description: Response @@ -120592,9 +120838,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *410 + default: *413 headers: Link: *47 '304': *37 @@ -120631,7 +120877,7 @@ paths: application/json: schema: type: array - items: *460 + items: *463 examples: default: value: @@ -120709,7 +120955,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *245 + - *247 responses: '200': description: Response @@ -120717,10 +120963,10 @@ paths: application/json: schema: oneOf: - - *811 - - *838 + - *814 + - *841 examples: - default-response: &842 + default-response: &845 summary: Default response value: login: octocat @@ -120755,7 +121001,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &843 + response-with-git-hub-plan-information: &846 summary: Response with GitHub plan information value: login: octocat @@ -120812,14 +121058,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &840 + - &843 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *415 + - *418 requestBody: required: true description: Details of the draft item to create in the project. @@ -120853,9 +121099,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *424 examples: - draft_issue: *422 + draft_issue: *425 '304': *37 '403': *29 '401': *25 @@ -120878,7 +121124,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *839 + - *842 - *17 responses: '200': @@ -120889,7 +121135,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: example: ; rel="next" @@ -120913,8 +121159,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *840 - - *415 + - *843 + - *418 requestBody: required: true content: @@ -120985,17 +121231,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *841 + schema: *844 examples: table_view: summary: Response for creating a table view - value: *426 + value: *429 board_view: summary: Response for creating a board view with filter - value: *426 + value: *429 roadmap_view: summary: Response for creating a roadmap view - value: *426 + value: *429 '304': *37 '403': *29 '401': *25 @@ -121029,7 +121275,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *143 + - *145 responses: '200': description: Response @@ -121037,11 +121283,11 @@ paths: application/json: schema: oneOf: - - *811 - - *838 + - *814 + - *841 examples: - default-response: *842 - response-with-git-hub-plan-information: *843 + default-response: *845 + response-with-git-hub-plan-information: *846 '404': *6 x-github: githubCloudOnly: false @@ -121065,9 +121311,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *108 - - *109 - - *143 + - *110 + - *111 + - *145 requestBody: required: true content: @@ -121091,8 +121337,8 @@ paths: required: - subject_digests examples: - default: *844 - withPredicateType: *845 + default: *847 + withPredicateType: *848 responses: '200': description: Response @@ -121131,7 +121377,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *846 + default: *849 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -121149,7 +121395,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *143 + - *145 requestBody: required: true content: @@ -121214,7 +121460,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *143 + - *145 - name: subject_digest description: Subject Digest in: path @@ -121245,7 +121491,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *143 + - *145 - name: attestation_id description: Attestation ID in: path @@ -121281,9 +121527,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations parameters: - *17 - - *108 - - *109 - - *143 + - *110 + - *111 + - *145 - name: subject_digest description: Subject Digest in: path @@ -121320,12 +121566,12 @@ paths: initiator: type: string examples: - default: *515 + default: *518 '201': description: Response content: application/json: - schema: *299 + schema: *302 examples: default: value: @@ -121351,7 +121597,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *143 + - *145 responses: '200': description: Response @@ -121359,9 +121605,9 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: - default: *828 + default: *831 '403': *29 '401': *25 x-github: @@ -121384,7 +121630,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121394,7 +121640,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -121456,8 +121702,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *143 - - *87 + - *145 + - *89 - *17 - *19 responses: @@ -121467,7 +121713,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -121544,7 +121790,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121554,7 +121800,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -121612,7 +121858,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121624,7 +121870,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -121643,7 +121889,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121655,7 +121901,7 @@ paths: type: array items: *4 examples: - default: *214 + default: *216 headers: Link: *47 x-github: @@ -121674,7 +121920,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-user-follows-another-user parameters: - - *143 + - *145 - name: target_user in: path required: true @@ -121701,8 +121947,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *143 - - *232 + - *145 + - *234 - *17 - *19 responses: @@ -121712,9 +121958,9 @@ paths: application/json: schema: type: array - items: *233 + items: *235 examples: - default: *234 + default: *236 headers: Link: *47 '422': *15 @@ -121735,7 +121981,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121745,9 +121991,9 @@ paths: application/json: schema: type: array - items: *819 + items: *822 examples: - default: *847 + default: *850 headers: Link: *47 x-github: @@ -121771,7 +122017,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *143 + - *145 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -121843,7 +122089,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *143 + - *145 responses: '200': description: Response @@ -121851,7 +122097,7 @@ paths: application/json: schema: *22 examples: - default: *371 + default: *374 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121869,7 +122115,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121924,7 +122170,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -121934,9 +122180,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *256 + default: *258 headers: Link: *47 x-github: @@ -121975,8 +122221,8 @@ paths: - docker - nuget - container - - *827 - - *143 + - *830 + - *145 - *19 - *17 responses: @@ -121986,12 +122232,12 @@ paths: application/json: schema: type: array - items: *397 + items: *400 examples: - default: *828 + default: *831 '403': *29 '401': *25 - '400': *829 + '400': *832 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122011,17 +122257,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *399 - - *400 - - *143 + - *402 + - *403 + - *145 responses: '200': description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *848 + default: *851 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122042,9 +122288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *399 - - *400 - - *143 + - *402 + - *403 + - *145 responses: '204': description: Response @@ -122076,9 +122322,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *399 - - *400 - - *143 + - *402 + - *403 + - *145 - name: token description: package token schema: @@ -122110,9 +122356,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *399 - - *400 - - *143 + - *402 + - *403 + - *145 responses: '200': description: Response @@ -122120,7 +122366,7 @@ paths: application/json: schema: type: array - items: *401 + items: *404 examples: default: value: @@ -122178,16 +122424,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *399 - - *400 - *402 - - *143 + - *403 + - *405 + - *145 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: default: value: @@ -122222,10 +122468,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *399 - - *400 - - *143 - *402 + - *403 + - *145 + - *405 responses: '204': description: Response @@ -122257,10 +122503,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *399 - - *400 - - *143 - *402 + - *403 + - *145 + - *405 responses: '204': description: Response @@ -122284,15 +122530,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-user parameters: - - *143 + - *145 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *108 - - *109 + - *110 + - *111 - *17 responses: '200': @@ -122301,9 +122547,9 @@ paths: application/json: schema: type: array - items: *413 + items: *416 examples: - default: *414 + default: *417 headers: Link: *47 '304': *37 @@ -122325,16 +122571,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *415 - - *143 + - *418 + - *145 responses: '200': description: Response content: application/json: - schema: *413 + schema: *416 examples: - default: *414 + default: *417 headers: Link: *47 '304': *37 @@ -122356,11 +122602,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *415 - - *143 + - *418 + - *145 - *17 - - *108 - - *109 + - *110 + - *111 responses: '200': description: Response @@ -122368,9 +122614,9 @@ paths: application/json: schema: type: array - items: *419 + items: *422 examples: - default: *849 + default: *852 headers: Link: *47 '304': *37 @@ -122391,8 +122637,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#add-field-to-user-owned-project parameters: - - *143 - - *415 + - *145 + - *418 requestBody: required: true content: @@ -122430,7 +122676,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *850 + items: *853 required: - name - data_type @@ -122446,7 +122692,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *851 + iteration_configuration: *854 required: - name - data_type @@ -122468,20 +122714,20 @@ paths: value: name: Due date data_type: date - single_select_field: *852 - iteration_field: *853 + single_select_field: *855 + iteration_field: *856 responses: '201': description: Response content: application/json: - schema: *419 + schema: *422 examples: - text_field: *854 - number_field: *855 - date_field: *856 - single_select_field: *857 - iteration_field: *858 + text_field: *857 + number_field: *858 + date_field: *859 + single_select_field: *860 + iteration_field: *861 '304': *37 '403': *29 '401': *25 @@ -122502,17 +122748,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *415 - - *859 - - *143 + - *418 + - *862 + - *145 responses: '200': description: Response content: application/json: - schema: *419 + schema: *422 examples: - default: *860 + default: *863 headers: Link: *47 '304': *37 @@ -122535,10 +122781,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-owned-project parameters: - - *415 - - *143 - - *108 - - *109 + - *418 + - *145 + - *110 + - *111 - *17 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest//issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -122568,9 +122814,9 @@ paths: application/json: schema: type: array - items: *423 + items: *426 examples: - default: *424 + default: *427 headers: Link: *47 '304': *37 @@ -122591,8 +122837,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - - *143 - - *415 + - *145 + - *418 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -122662,22 +122908,22 @@ paths: description: Response content: application/json: - schema: *421 + schema: *424 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *422 + value: *425 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *422 + value: *425 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *422 + value: *425 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *422 + value: *425 '304': *37 '403': *29 '401': *25 @@ -122697,9 +122943,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *415 - - *143 - - *425 + - *418 + - *145 + - *428 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -122719,9 +122965,9 @@ paths: description: Response content: application/json: - schema: *423 + schema: *426 examples: - default: *424 + default: *427 headers: Link: *47 '304': *37 @@ -122742,9 +122988,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *415 - - *143 - - *425 + - *418 + - *145 + - *428 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -122814,13 +123060,13 @@ paths: description: Response content: application/json: - schema: *423 + schema: *426 examples: - text_field: *424 - number_field: *424 - date_field: *424 - single_select_field: *424 - iteration_field: *424 + text_field: *427 + number_field: *427 + date_field: *427 + single_select_field: *427 + iteration_field: *427 '401': *25 '403': *29 '404': *6 @@ -122840,9 +123086,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *415 - - *143 - - *425 + - *418 + - *145 + - *428 responses: '204': description: Response @@ -122864,9 +123110,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#list-items-for-a-user-project-view parameters: - - *415 - - *143 - - *861 + - *418 + - *145 + - *864 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -122882,8 +123128,8 @@ paths: maxItems: 50 items: type: string - - *108 - - *109 + - *110 + - *111 - *17 responses: '200': @@ -122892,9 +123138,9 @@ paths: application/json: schema: type: array - items: *423 + items: *426 examples: - default: *424 + default: *427 headers: Link: *47 '304': *37 @@ -122922,7 +123168,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -122932,7 +123178,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -122997,7 +123243,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-received-by-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -123007,7 +123253,7 @@ paths: application/json: schema: type: array - items: *251 + items: *253 examples: default: value: @@ -123070,7 +123316,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *143 + - *145 - name: type description: Limit results to repositories of the specified type. in: query @@ -123113,9 +123359,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *410 + default: *413 headers: Link: *47 x-github: @@ -123135,7 +123381,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -123145,9 +123391,9 @@ paths: application/json: schema: type: array - items: *832 + items: *835 examples: - default: *833 + default: *836 headers: Link: *47 x-github: @@ -123167,7 +123413,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -123177,9 +123423,9 @@ paths: application/json: schema: type: array - items: *834 + items: *837 examples: - default: *862 + default: *865 headers: Link: *47 x-github: @@ -123203,9 +123449,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *143 - - *863 - - *110 + - *145 + - *866 + - *112 - *17 - *19 responses: @@ -123216,11 +123462,11 @@ paths: schema: anyOf: - type: array - items: *864 + items: *867 - type: array - items: *78 + items: *80 examples: - default-response: *837 + default-response: *840 headers: Link: *47 x-github: @@ -123239,7 +123485,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *143 + - *145 - *17 - *19 responses: @@ -123249,9 +123495,9 @@ paths: application/json: schema: type: array - items: *288 + items: *291 examples: - default: *410 + default: *413 headers: Link: *47 x-github: @@ -123379,7 +123625,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &865 + enterprise: &868 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -123437,7 +123683,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &866 + installation: &869 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -123456,7 +123702,7 @@ x-webhooks: required: - id - node_id - organization: &867 + organization: &870 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -123516,13 +123762,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &868 + repository: &871 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &907 + properties: &910 id: description: Unique identifier of the repository example: 42 @@ -123542,8 +123788,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *228 - required: *229 + properties: *230 + required: *231 nullable: true organization: title: Simple User @@ -124211,7 +124457,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &908 + required: &911 - archive_url - assignees_url - blobs_url @@ -124362,10 +124608,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -124441,11 +124687,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - rule: &869 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + rule: &872 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest//github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -124668,11 +124914,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - rule: *869 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + rule: *872 sender: *4 required: - action @@ -124855,11 +125101,11 @@ x-webhooks: - everyone required: - from - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - rule: *869 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + rule: *872 sender: *4 required: - action @@ -124932,7 +125178,7 @@ x-webhooks: required: true content: application/json: - schema: &891 + schema: &894 title: Exemption request cancellation event type: object properties: @@ -124940,11 +125186,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - exemption_request: &870 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + exemption_request: &873 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -125213,7 +125459,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &871 + items: &874 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -125323,7 +125569,7 @@ x-webhooks: required: true content: application/json: - schema: &892 + schema: &895 title: Exemption request completed event type: object properties: @@ -125331,11 +125577,11 @@ x-webhooks: type: string enum: - completed - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - exemption_request: *870 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + exemption_request: *873 sender: *4 required: - action @@ -125407,7 +125653,7 @@ x-webhooks: required: true content: application/json: - schema: &889 + schema: &892 title: Exemption request created event type: object properties: @@ -125415,11 +125661,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - exemption_request: *870 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + exemption_request: *873 sender: *4 required: - action @@ -125491,7 +125737,7 @@ x-webhooks: required: true content: application/json: - schema: &893 + schema: &896 title: Exemption response dismissed event type: object properties: @@ -125499,12 +125745,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - exemption_request: *870 - exemption_response: *871 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + exemption_request: *873 + exemption_response: *874 sender: *4 required: - action @@ -125578,7 +125824,7 @@ x-webhooks: required: true content: application/json: - schema: &890 + schema: &893 title: Exemption response submitted event type: object properties: @@ -125586,12 +125832,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - exemption_request: *870 - exemption_response: *871 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + exemption_request: *873 + exemption_response: *874 sender: *4 required: - action @@ -125675,7 +125921,7 @@ x-webhooks: type: string enum: - completed - check_run: &873 + check_run: &876 title: CheckRun description: A check performed on the code of a given code change type: object @@ -125728,8 +125974,8 @@ x-webhooks: type: string pull_requests: type: array - items: *230 - repository: *288 + items: *232 + repository: *291 status: example: completed type: string @@ -125766,7 +126012,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *872 + deployment: *875 details_url: example: https://example.com type: string @@ -125816,7 +126062,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *230 + items: *232 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -125851,10 +126097,10 @@ x-webhooks: - output - app - pull_requests - installation: *866 - enterprise: *865 - organization: *867 - repository: *868 + installation: *869 + enterprise: *868 + organization: *870 + repository: *871 sender: *4 required: - check_run @@ -126245,11 +126491,11 @@ x-webhooks: type: string enum: - created - check_run: *873 - installation: *866 - enterprise: *865 - organization: *867 - repository: *868 + check_run: *876 + installation: *869 + enterprise: *868 + organization: *870 + repository: *871 sender: *4 required: - check_run @@ -126643,11 +126889,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *873 - installation: *866 - enterprise: *865 - organization: *867 - repository: *868 + check_run: *876 + installation: *869 + enterprise: *868 + organization: *870 + repository: *871 requested_action: description: The action requested by the user. type: object @@ -127050,11 +127296,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *873 - installation: *866 - enterprise: *865 - organization: *867 - repository: *868 + check_run: *876 + installation: *869 + enterprise: *868 + organization: *870 + repository: *871 sender: *4 required: - check_run @@ -128024,10 +128270,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -128716,10 +128962,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -129402,10 +129648,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -129571,7 +129817,7 @@ x-webhooks: required: - login - id - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -129716,20 +129962,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &874 + commit_oid: &877 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: *865 - installation: *866 - organization: *867 - ref: &875 + enterprise: *868 + installation: *869 + organization: *870 + ref: &878 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: *868 + repository: *871 sender: *4 required: - action @@ -129894,7 +130140,7 @@ x-webhooks: required: - login - id - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -130124,12 +130370,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *874 - enterprise: *865 - installation: *866 - organization: *867 - ref: *875 - repository: *868 + commit_oid: *877 + enterprise: *868 + installation: *869 + organization: *870 + ref: *878 + repository: *871 sender: *4 required: - action @@ -130224,7 +130470,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130395,12 +130641,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *874 - enterprise: *865 - installation: *866 - organization: *867 - ref: *875 - repository: *868 + commit_oid: *877 + enterprise: *868 + installation: *869 + organization: *870 + ref: *878 + repository: *871 sender: *4 required: - action @@ -130566,7 +130812,7 @@ x-webhooks: required: - login - id - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -130732,12 +130978,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *874 - enterprise: *865 - installation: *866 - organization: *867 - ref: *875 - repository: *868 + commit_oid: *877 + enterprise: *868 + installation: *869 + organization: *870 + ref: *878 + repository: *871 sender: *4 required: - action @@ -130836,7 +131082,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131011,16 +131257,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *868 + repository: *871 sender: *4 required: - action @@ -131117,7 +131363,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131257,12 +131503,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *874 - enterprise: *865 - installation: *866 - organization: *867 - ref: *875 - repository: *868 + commit_oid: *877 + enterprise: *868 + installation: *869 + organization: *870 + ref: *878 + repository: *871 sender: *4 required: - action @@ -131428,7 +131674,7 @@ x-webhooks: required: - login - id - dismissed_comment: *544 + dismissed_comment: *547 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -131573,10 +131819,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -131831,10 +132077,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -131914,18 +132160,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *867 - pusher_type: &876 + organization: *870 + pusher_type: &879 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &877 + ref: &880 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -131935,7 +132181,7 @@ x-webhooks: enum: - tag - branch - repository: *868 + repository: *871 sender: *4 required: - ref @@ -132017,10 +132263,10 @@ x-webhooks: type: string enum: - created - definition: *157 - enterprise: *865 - installation: *866 - organization: *867 + definition: *159 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 required: - action @@ -132105,9 +132351,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 required: - action @@ -132184,10 +132430,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *157 - enterprise: *865 - installation: *866 - organization: *867 + definition: *159 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 required: - action @@ -132264,10 +132510,10 @@ x-webhooks: type: string enum: - updated - definition: *157 - enterprise: *865 - installation: *866 - organization: *867 + definition: *159 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 required: - action @@ -132344,19 +132590,19 @@ x-webhooks: type: string enum: - updated - enterprise: *865 - installation: *866 - repository: *868 - organization: *867 + enterprise: *868 + installation: *869 + repository: *871 + organization: *870 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *156 + items: *158 old_property_values: type: array description: The old custom property values for the repository. - items: *156 + items: *158 required: - action - repository @@ -132432,18 +132678,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *865 - installation: *866 - organization: *867 - pusher_type: *876 - ref: *877 + enterprise: *868 + installation: *869 + organization: *870 + pusher_type: *879 + ref: *880 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *868 + repository: *871 sender: *4 required: - ref @@ -132523,11 +132769,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -132607,11 +132853,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -132692,11 +132938,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -132777,11 +133023,11 @@ x-webhooks: type: string enum: - created - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -132860,11 +133106,11 @@ x-webhooks: type: string enum: - dismissed - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -132943,11 +133189,11 @@ x-webhooks: type: string enum: - fixed - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -133027,11 +133273,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -133110,11 +133356,11 @@ x-webhooks: type: string enum: - reopened - alert: *606 - installation: *866 - organization: *867 - enterprise: *865 - repository: *868 + alert: *609 + installation: *869 + organization: *870 + enterprise: *868 + repository: *871 sender: *4 required: - action @@ -133191,9 +133437,9 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - key: &878 + enterprise: *868 + installation: *869 + key: &881 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -133229,8 +133475,8 @@ x-webhooks: - verified - created_at - read_only - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -133307,11 +133553,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - key: *878 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + key: *881 + organization: *870 + repository: *871 sender: *4 required: - action @@ -133867,12 +134113,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - workflow: &884 + workflow: &887 title: Workflow type: object nullable: true @@ -134613,15 +134859,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *879 - required: *880 + properties: *882 + required: *883 nullable: true pull_requests: type: array - items: *712 - repository: *868 - organization: *867 - installation: *866 + items: *715 + repository: *871 + organization: *870 + installation: *869 sender: *4 responses: '200': @@ -134692,7 +134938,7 @@ x-webhooks: type: string enum: - approved - approver: &881 + approver: &884 type: object properties: avatar_url: @@ -134735,11 +134981,11 @@ x-webhooks: type: string comment: type: string - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - reviewers: &882 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + reviewers: &885 type: array items: type: object @@ -134818,7 +135064,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &883 + workflow_job_run: &886 type: object properties: conclusion: @@ -135549,18 +135795,18 @@ x-webhooks: type: string enum: - rejected - approver: *881 + approver: *884 comment: type: string - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - reviewers: *882 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + reviewers: *885 sender: *4 since: type: string - workflow_job_run: *883 + workflow_job_run: *886 workflow_job_runs: type: array items: @@ -136264,13 +136510,13 @@ x-webhooks: type: string enum: - requested - enterprise: *865 + enterprise: *868 environment: type: string - installation: *866 - organization: *867 - repository: *868 - requestor: &894 + installation: *869 + organization: *870 + repository: *871 + requestor: &897 title: User type: object nullable: true @@ -138159,12 +138405,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - workflow: *884 + workflow: *887 workflow_run: title: Deployment Workflow Run type: object @@ -138844,7 +139090,7 @@ x-webhooks: type: string enum: - answered - answer: &887 + answer: &890 type: object properties: author_association: @@ -139001,11 +139247,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139132,11 +139378,11 @@ x-webhooks: - from required: - category - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139219,11 +139465,11 @@ x-webhooks: type: string enum: - closed - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139305,7 +139551,7 @@ x-webhooks: type: string enum: - created - comment: &886 + comment: &889 type: object properties: author_association: @@ -139462,11 +139708,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139549,12 +139795,12 @@ x-webhooks: type: string enum: - deleted - comment: *886 - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + comment: *889 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139649,12 +139895,12 @@ x-webhooks: - from required: - body - comment: *886 - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + comment: *889 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139738,11 +139984,11 @@ x-webhooks: type: string enum: - created - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139824,11 +140070,11 @@ x-webhooks: type: string enum: - deleted - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -139928,11 +140174,11 @@ x-webhooks: type: string required: - from - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140014,10 +140260,10 @@ x-webhooks: type: string enum: - labeled - discussion: *885 - enterprise: *865 - installation: *866 - label: &888 + discussion: *888 + enterprise: *868 + installation: *869 + label: &891 title: Label type: object properties: @@ -140049,8 +140295,8 @@ x-webhooks: - color - default - description - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140133,11 +140379,11 @@ x-webhooks: type: string enum: - locked - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140219,11 +140465,11 @@ x-webhooks: type: string enum: - pinned - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140305,11 +140551,11 @@ x-webhooks: type: string enum: - reopened - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140394,16 +140640,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *885 - new_repository: *868 + new_discussion: *888 + new_repository: *871 required: - new_discussion - new_repository - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140486,10 +140732,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *885 - old_answer: *887 - organization: *867 - repository: *868 + discussion: *888 + old_answer: *890 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140571,12 +140817,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *885 - enterprise: *865 - installation: *866 - label: *888 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140659,11 +140905,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140745,11 +140991,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *885 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + discussion: *888 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -140818,7 +141064,7 @@ x-webhooks: required: true content: application/json: - schema: *889 + schema: *892 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140881,7 +141127,7 @@ x-webhooks: required: true content: application/json: - schema: *890 + schema: *893 responses: '200': description: Return a 200 status to indicate that the data was received @@ -140944,7 +141190,7 @@ x-webhooks: required: true content: application/json: - schema: *891 + schema: *894 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141007,7 +141253,7 @@ x-webhooks: required: true content: application/json: - schema: *889 + schema: *892 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141070,7 +141316,7 @@ x-webhooks: required: true content: application/json: - schema: *890 + schema: *893 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141136,7 +141382,7 @@ x-webhooks: required: true content: application/json: - schema: *891 + schema: *894 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141202,7 +141448,7 @@ x-webhooks: required: true content: application/json: - schema: *892 + schema: *895 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141268,7 +141514,7 @@ x-webhooks: required: true content: application/json: - schema: *889 + schema: *892 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141334,7 +141580,7 @@ x-webhooks: required: true content: application/json: - schema: *893 + schema: *896 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141400,7 +141646,7 @@ x-webhooks: required: true content: application/json: - schema: *890 + schema: *893 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141465,7 +141711,7 @@ x-webhooks: required: true content: application/json: - schema: *891 + schema: *894 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141530,7 +141776,7 @@ x-webhooks: required: true content: application/json: - schema: *892 + schema: *895 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141595,7 +141841,7 @@ x-webhooks: required: true content: application/json: - schema: *889 + schema: *892 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141660,7 +141906,7 @@ x-webhooks: required: true content: application/json: - schema: *893 + schema: *896 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141726,7 +141972,7 @@ x-webhooks: required: true content: application/json: - schema: *890 + schema: *893 responses: '200': description: Return a 200 status to indicate that the data was received @@ -141793,7 +142039,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *865 + enterprise: *868 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -142453,9 +142699,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *866 - organization: *867 - repository: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - forkee @@ -142601,9 +142847,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pages: description: The pages that were updated. type: array @@ -142640,7 +142886,7 @@ x-webhooks: - action - sha - html_url - repository: *868 + repository: *871 sender: *4 required: - pages @@ -142716,10 +142962,10 @@ x-webhooks: type: string enum: - created - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories: &895 + organization: *870 + repositories: &898 description: An array of repository objects that the installation can access. type: array @@ -142745,8 +142991,8 @@ x-webhooks: - name - full_name - private - repository: *868 - requester: *894 + repository: *871 + requester: *897 sender: *4 required: - action @@ -142821,11 +143067,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories: *895 - repository: *868 + organization: *870 + repositories: *898 + repository: *871 requester: nullable: true sender: *4 @@ -142901,11 +143147,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories: *895 - repository: *868 + organization: *870 + repositories: *898 + repository: *871 requester: nullable: true sender: *4 @@ -142981,10 +143227,10 @@ x-webhooks: type: string enum: - added - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories_added: &896 + organization: *870 + repositories_added: &899 description: An array of repository objects, which were added to the installation. type: array @@ -143030,15 +143276,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *868 - repository_selection: &897 + repository: *871 + repository_selection: &900 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *894 + requester: *897 sender: *4 required: - action @@ -143117,10 +143363,10 @@ x-webhooks: type: string enum: - removed - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories_added: *896 + organization: *870 + repositories_added: *899 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -143147,9 +143393,9 @@ x-webhooks: - name - full_name - private - repository: *868 - repository_selection: *897 - requester: *894 + repository: *871 + repository_selection: *900 + requester: *897 sender: *4 required: - action @@ -143228,11 +143474,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories: *895 - repository: *868 + organization: *870 + repositories: *898 + repository: *871 requester: nullable: true sender: *4 @@ -143411,10 +143657,10 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 target_type: type: string @@ -143493,11 +143739,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *865 + enterprise: *868 installation: *22 - organization: *867 - repositories: *895 - repository: *868 + organization: *870 + repositories: *898 + repository: *871 requester: nullable: true sender: *4 @@ -143621,8 +143867,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *220 - required: *221 + properties: *222 + required: *223 reactions: title: Reactions type: object @@ -143671,8 +143917,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *687 - required: *688 + properties: *690 + required: *691 nullable: true user: title: User @@ -143757,8 +144003,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -144547,8 +144793,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144564,7 +144810,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -144897,8 +145143,8 @@ x-webhooks: - state - locked - assignee - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -144978,7 +145224,7 @@ x-webhooks: type: string enum: - deleted - comment: &898 + comment: &901 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -145135,8 +145381,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *687 - required: *688 + properties: *690 + required: *691 nullable: true required: - url @@ -145151,8 +145397,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -145937,8 +146183,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145954,7 +146200,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -146289,8 +146535,8 @@ x-webhooks: - state - locked - assignee - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -146370,7 +146616,7 @@ x-webhooks: type: string enum: - edited - changes: &927 + changes: &930 description: The changes to the comment. type: object properties: @@ -146382,9 +146628,9 @@ x-webhooks: type: string required: - from - comment: *898 - enterprise: *865 - installation: *866 + comment: *901 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147172,8 +147418,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147189,7 +147435,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -147522,8 +147768,8 @@ x-webhooks: - state - locked - assignee - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -147604,9 +147850,9 @@ x-webhooks: type: string enum: - pinned - comment: *898 - enterprise: *865 - installation: *866 + comment: *901 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148396,8 +148642,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148413,7 +148659,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -148748,8 +148994,8 @@ x-webhooks: - state - locked - assignee - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -148829,9 +149075,9 @@ x-webhooks: type: string enum: - unpinned - comment: *898 - enterprise: *865 - installation: *866 + comment: *901 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -149621,8 +149867,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149638,7 +149884,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -149973,8 +150219,8 @@ x-webhooks: - state - locked - assignee - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -150057,15 +150303,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *225 + blocked_issue: *227 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *225 - blocking_issue_repo: *78 - installation: *866 - organization: *867 - repository: *868 + blocking_issue: *227 + blocking_issue_repo: *80 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -150148,15 +150394,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *225 + blocked_issue: *227 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *225 - blocking_issue_repo: *78 - installation: *866 - organization: *867 - repository: *868 + blocking_issue: *227 + blocking_issue_repo: *80 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -150238,15 +150484,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *225 - blocked_issue_repo: *78 + blocked_issue: *227 + blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *225 - installation: *866 - organization: *867 - repository: *868 + blocking_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -150329,15 +150575,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *225 - blocked_issue_repo: *78 + blocked_issue: *227 + blocked_issue_repo: *80 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *225 - installation: *866 - organization: *867 - repository: *868 + blocking_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -150417,10 +150663,10 @@ x-webhooks: type: string enum: - assigned - assignee: *894 - enterprise: *865 - installation: *866 - issue: &901 + assignee: *897 + enterprise: *868 + installation: *869 + issue: &904 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -151209,14 +151455,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151232,7 +151478,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -151333,8 +151579,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -151414,8 +151660,8 @@ x-webhooks: type: string enum: - closed - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -152209,14 +152455,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152232,7 +152478,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -152468,8 +152714,8 @@ x-webhooks: required: - state - closed_at - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -152548,8 +152794,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -153334,14 +153580,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153357,7 +153603,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -153457,8 +153703,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -153537,8 +153783,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -154345,14 +154591,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154368,7 +154614,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -154447,7 +154693,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &899 + milestone: &902 title: Milestone description: A collection of related issues and pull requests. type: object @@ -154585,8 +154831,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -154685,8 +154931,8 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -155475,14 +155721,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155495,7 +155741,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *381 + type: *384 title: description: Title of the issue type: string @@ -155599,9 +155845,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *888 - organization: *867 - repository: *868 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -155681,8 +155927,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156470,14 +156716,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156490,7 +156736,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *381 + type: *384 title: description: Title of the issue type: string @@ -156594,9 +156840,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *888 - organization: *867 - repository: *868 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -156676,8 +156922,8 @@ x-webhooks: type: string enum: - locked - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157489,14 +157735,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157509,7 +157755,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *381 + type: *384 title: description: Title of the issue type: string @@ -157590,8 +157836,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -157670,8 +157916,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -158477,14 +158723,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158500,7 +158746,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -158578,9 +158824,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *899 - organization: *867 - repository: *868 + milestone: *902 + organization: *870 + repository: *871 sender: *4 required: - action @@ -159443,11 +159689,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159475,8 +159721,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true user: title: User @@ -159548,7 +159794,7 @@ x-webhooks: required: - login - id - type: *381 + type: *384 required: - id - number @@ -160032,8 +160278,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160817,11 +161063,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160837,7 +161083,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -160850,8 +161096,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true user: title: User @@ -160945,8 +161191,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -161026,9 +161272,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *865 - installation: *866 - issue: &900 + enterprise: *868 + installation: *869 + issue: &903 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -161811,14 +162057,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161834,7 +162080,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -161934,8 +162180,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -162014,8 +162260,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162825,14 +163071,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162926,9 +163172,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *381 - organization: *867 - repository: *868 + type: *384 + organization: *870 + repository: *871 sender: *4 required: - action @@ -163794,14 +164040,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163817,7 +164063,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -164400,11 +164646,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *865 - installation: *866 - issue: *900 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *903 + organization: *870 + repository: *871 sender: *4 required: - action @@ -164484,12 +164730,12 @@ x-webhooks: type: string enum: - typed - enterprise: *865 - installation: *866 - issue: *901 - type: *381 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *904 + type: *384 + organization: *870 + repository: *871 sender: *4 required: - action @@ -164570,7 +164816,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &930 + assignee: &933 title: User type: object nullable: true @@ -164640,11 +164886,11 @@ x-webhooks: required: - login - id - enterprise: *865 - installation: *866 - issue: *901 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *904 + organization: *870 + repository: *871 sender: *4 required: - action @@ -164723,12 +164969,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *865 - installation: *866 - issue: *901 - label: *888 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *904 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -164808,8 +165054,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -165619,14 +165865,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *226 - required: *227 + properties: *228 + required: *229 nullable: true - sub_issues_summary: *804 - issue_dependencies_summary: *805 + sub_issues_summary: *807 + issue_dependencies_summary: *808 issue_field_values: type: array - items: *672 + items: *675 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165642,7 +165888,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *381 + type: *384 updated_at: type: string format: date-time @@ -165720,8 +165966,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -165801,11 +166047,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *865 - installation: *866 - issue: *900 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *903 + organization: *870 + repository: *871 sender: *4 required: - action @@ -165884,12 +166130,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *865 - installation: *866 - issue: *901 - type: *381 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + issue: *904 + type: *384 + organization: *870 + repository: *871 sender: *4 required: - action @@ -165969,11 +166215,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - label: *888 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -166051,11 +166297,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - label: *888 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -166165,11 +166411,11 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - label: *888 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + label: *891 + organization: *870 + repository: *871 sender: *4 required: - action @@ -166251,9 +166497,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *865 - installation: *866 - marketplace_purchase: &902 + enterprise: *868 + installation: *869 + marketplace_purchase: &905 title: Marketplace Purchase type: object required: @@ -166336,8 +166582,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *867 - previous_marketplace_purchase: &903 + organization: *870 + previous_marketplace_purchase: &906 title: Marketplace Purchase type: object properties: @@ -166417,7 +166663,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *868 + repository: *871 sender: *4 required: - action @@ -166497,10 +166743,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *865 - installation: *866 - marketplace_purchase: *902 - organization: *867 + enterprise: *868 + installation: *869 + marketplace_purchase: *905 + organization: *870 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -166583,7 +166829,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *868 + repository: *871 sender: *4 required: - action @@ -166665,10 +166911,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *865 - installation: *866 - marketplace_purchase: *902 - organization: *867 + enterprise: *868 + installation: *869 + marketplace_purchase: *905 + organization: *870 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -166750,7 +166996,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *868 + repository: *871 sender: *4 required: - action @@ -166831,8 +167077,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 marketplace_purchase: title: Marketplace Purchase type: object @@ -166914,9 +167160,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *867 - previous_marketplace_purchase: *903 - repository: *868 + organization: *870 + previous_marketplace_purchase: *906 + repository: *871 sender: *4 required: - action @@ -166996,12 +167242,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *865 - installation: *866 - marketplace_purchase: *902 - organization: *867 - previous_marketplace_purchase: *903 - repository: *868 + enterprise: *868 + installation: *869 + marketplace_purchase: *905 + organization: *870 + previous_marketplace_purchase: *906 + repository: *871 sender: *4 required: - action @@ -167103,11 +167349,11 @@ x-webhooks: type: string required: - to - enterprise: *865 - installation: *866 - member: *894 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + member: *897 + organization: *870 + repository: *871 sender: *4 required: - action @@ -167207,11 +167453,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *865 - installation: *866 - member: *894 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + member: *897 + organization: *870 + repository: *871 sender: *4 required: - action @@ -167290,11 +167536,11 @@ x-webhooks: type: string enum: - removed - enterprise: *865 - installation: *866 - member: *894 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + member: *897 + organization: *870 + repository: *871 sender: *4 required: - action @@ -167372,11 +167618,11 @@ x-webhooks: type: string enum: - added - enterprise: *865 - installation: *866 - member: *894 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + member: *897 + organization: *870 + repository: *871 scope: description: The scope of the membership. Currently, can only be `team`. @@ -167452,7 +167698,7 @@ x-webhooks: required: - login - id - team: &904 + team: &907 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -167675,11 +167921,11 @@ x-webhooks: type: string enum: - removed - enterprise: *865 - installation: *866 - member: *894 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + member: *897 + organization: *870 + repository: *871 scope: description: The scope of the membership. Currently, can only be `team`. @@ -167756,7 +168002,7 @@ x-webhooks: required: - login - id - team: *904 + team: *907 required: - action - scope @@ -167838,8 +168084,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *866 - merge_group: &906 + installation: *869 + merge_group: &909 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -167858,15 +168104,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *905 + head_commit: *908 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -167952,10 +168198,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *866 - merge_group: *906 - organization: *867 - repository: *868 + installation: *869 + merge_group: *909 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168028,7 +168274,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 + enterprise: *868 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -168137,16 +168383,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *866 - organization: *867 + installation: *869 + organization: *870 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *907 - required: *908 + properties: *910 + required: *911 nullable: true sender: *4 required: @@ -168227,11 +168473,11 @@ x-webhooks: type: string enum: - closed - enterprise: *865 - installation: *866 - milestone: *899 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + milestone: *902 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168310,9 +168556,9 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - milestone: &909 + enterprise: *868 + installation: *869 + milestone: &912 title: Milestone description: A collection of related issues and pull requests. type: object @@ -168449,8 +168695,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168529,11 +168775,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - milestone: *899 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + milestone: *902 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168643,11 +168889,11 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - milestone: *899 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + milestone: *902 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168727,11 +168973,11 @@ x-webhooks: type: string enum: - opened - enterprise: *865 - installation: *866 - milestone: *909 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + milestone: *912 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168810,11 +169056,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *894 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + blocked_user: *897 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168893,11 +169139,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *894 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + blocked_user: *897 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -168972,8 +169218,8 @@ x-webhooks: type: string enum: - created - definition: *151 - enterprise: *865 + definition: *153 + enterprise: *868 sender: *4 required: - action @@ -169053,8 +169299,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 sender: *4 required: - action @@ -169126,9 +169372,9 @@ x-webhooks: type: string enum: - updated - definition: *151 - enterprise: *865 - installation: *866 + definition: *153 + enterprise: *868 + installation: *869 sender: *4 required: - action @@ -169200,18 +169446,18 @@ x-webhooks: type: string enum: - updated - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 new_property_values: type: array description: The new custom property values. - items: *156 + items: *158 old_property_values: type: array description: The old custom property values. - items: *156 + items: *158 required: - action - organization @@ -169290,9 +169536,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - membership: &910 + enterprise: *868 + installation: *869 + membership: &913 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -169399,8 +169645,8 @@ x-webhooks: - role - organization_url - user - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 required: - action @@ -169478,11 +169724,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *865 - installation: *866 - membership: *910 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + membership: *913 + organization: *870 + repository: *871 sender: *4 required: - action @@ -169561,8 +169807,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -169678,10 +169924,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 - user: *894 + user: *897 required: - action - invitation @@ -169759,11 +170005,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *865 - installation: *866 - membership: *910 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + membership: *913 + organization: *870 + repository: *871 sender: *4 required: - action @@ -169850,11 +170096,11 @@ x-webhooks: properties: from: type: string - enterprise: *865 - installation: *866 - membership: *910 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + membership: *913 + organization: *870 + repository: *871 sender: *4 required: - action @@ -169932,9 +170178,9 @@ x-webhooks: type: string enum: - published - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 package: description: Information about the package. type: object @@ -170433,7 +170679,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &911 + items: &914 title: Ruby Gems metadata type: object properties: @@ -170528,7 +170774,7 @@ x-webhooks: - owner - package_version - registry - repository: *868 + repository: *871 sender: *4 required: - action @@ -170605,9 +170851,9 @@ x-webhooks: type: string enum: - updated - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 package: description: Information about the package. type: object @@ -170960,7 +171206,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *911 + items: *914 source_url: type: string format: uri @@ -171030,7 +171276,7 @@ x-webhooks: - owner - package_version - registry - repository: *868 + repository: *871 sender: *4 required: - action @@ -171206,12 +171452,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *865 + enterprise: *868 id: type: integer - installation: *866 - organization: *867 - repository: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - id @@ -171288,7 +171534,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &912 + personal_access_token_request: &915 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -171434,10 +171680,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *865 - organization: *867 + enterprise: *868 + organization: *870 sender: *4 - installation: *866 + installation: *869 required: - action - personal_access_token_request @@ -171514,11 +171760,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *912 - enterprise: *865 - organization: *867 + personal_access_token_request: *915 + enterprise: *868 + organization: *870 sender: *4 - installation: *866 + installation: *869 required: - action - personal_access_token_request @@ -171594,11 +171840,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *912 - enterprise: *865 - organization: *867 + personal_access_token_request: *915 + enterprise: *868 + organization: *870 sender: *4 - installation: *866 + installation: *869 required: - action - personal_access_token_request @@ -171673,11 +171919,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *912 - organization: *867 - enterprise: *865 + personal_access_token_request: *915 + organization: *870 + enterprise: *868 sender: *4 - installation: *866 + installation: *869 required: - action - personal_access_token_request @@ -171782,7 +172028,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *913 + last_response: *916 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -171814,8 +172060,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 zen: description: Random string of GitHub zen. @@ -172060,10 +172306,10 @@ x-webhooks: - from required: - note - enterprise: *865 - installation: *866 - organization: *867 - project_card: &914 + enterprise: *868 + installation: *869 + organization: *870 + project_card: &917 title: Project Card type: object properties: @@ -172182,7 +172428,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *868 + repository: *871 sender: *4 required: - action @@ -172263,11 +172509,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - project_card: *914 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project_card: *917 + repository: *871 sender: *4 required: - action @@ -172347,9 +172593,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 project_card: title: Project Card type: object @@ -172477,8 +172723,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *907 - required: *908 + properties: *910 + required: *911 nullable: true sender: *4 required: @@ -172572,11 +172818,11 @@ x-webhooks: - from required: - note - enterprise: *865 - installation: *866 - organization: *867 - project_card: *914 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project_card: *917 + repository: *871 sender: *4 required: - action @@ -172670,9 +172916,9 @@ x-webhooks: - from required: - column_id - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 project_card: allOf: - title: Project Card @@ -172862,7 +173108,7 @@ x-webhooks: type: string required: - after_id - repository: *868 + repository: *871 sender: *4 required: - action @@ -172942,10 +173188,10 @@ x-webhooks: type: string enum: - closed - enterprise: *865 - installation: *866 - organization: *867 - project: &916 + enterprise: *868 + installation: *869 + organization: *870 + project: &919 title: Project type: object properties: @@ -173069,7 +173315,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *868 + repository: *871 sender: *4 required: - action @@ -173149,10 +173395,10 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - project_column: &915 + enterprise: *868 + installation: *869 + organization: *870 + project_column: &918 title: Project Column type: object properties: @@ -173191,7 +173437,7 @@ x-webhooks: - name - created_at - updated_at - repository: *868 + repository: *871 sender: *4 required: - action @@ -173270,18 +173516,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - project_column: *915 + enterprise: *868 + installation: *869 + organization: *870 + project_column: *918 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *907 - required: *908 + properties: *910 + required: *911 nullable: true sender: *4 required: @@ -173371,11 +173617,11 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - organization: *867 - project_column: *915 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project_column: *918 + repository: *871 sender: *4 required: - action @@ -173455,11 +173701,11 @@ x-webhooks: type: string enum: - moved - enterprise: *865 - installation: *866 - organization: *867 - project_column: *915 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project_column: *918 + repository: *871 sender: *4 required: - action @@ -173539,11 +173785,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - project: *916 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project: *919 + repository: *871 sender: *4 required: - action @@ -173623,18 +173869,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - project: *916 + enterprise: *868 + installation: *869 + organization: *870 + project: *919 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *907 - required: *908 + properties: *910 + required: *911 nullable: true sender: *4 required: @@ -173736,11 +173982,11 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - organization: *867 - project: *916 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project: *919 + repository: *871 sender: *4 required: - action @@ -173819,11 +174065,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *865 - installation: *866 - organization: *867 - project: *916 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + project: *919 + repository: *871 sender: *4 required: - action @@ -173904,9 +174150,9 @@ x-webhooks: type: string enum: - closed - installation: *866 - organization: *867 - projects_v2: *413 + installation: *869 + organization: *870 + projects_v2: *416 sender: *4 required: - action @@ -173987,9 +174233,9 @@ x-webhooks: type: string enum: - created - installation: *866 - organization: *867 - projects_v2: *413 + installation: *869 + organization: *870 + projects_v2: *416 sender: *4 required: - action @@ -174070,9 +174316,9 @@ x-webhooks: type: string enum: - deleted - installation: *866 - organization: *867 - projects_v2: *413 + installation: *869 + organization: *870 + projects_v2: *416 sender: *4 required: - action @@ -174189,9 +174435,9 @@ x-webhooks: type: string to: type: string - installation: *866 - organization: *867 - projects_v2: *413 + installation: *869 + organization: *870 + projects_v2: *416 sender: *4 required: - action @@ -174274,7 +174520,7 @@ x-webhooks: type: string enum: - archived - changes: &920 + changes: &923 type: object properties: archived_at: @@ -174288,9 +174534,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *866 - organization: *867 - projects_v2_item: &917 + installation: *869 + organization: *870 + projects_v2_item: &920 title: Projects v2 Item description: An item belonging to a project type: object @@ -174308,7 +174554,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *420 + content_type: *423 creator: *4 created_at: type: string @@ -174425,9 +174671,9 @@ x-webhooks: nullable: true to: type: string - installation: *866 - organization: *867 - projects_v2_item: *917 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -174509,9 +174755,9 @@ x-webhooks: type: string enum: - created - installation: *866 - organization: *867 - projects_v2_item: *917 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -174592,9 +174838,9 @@ x-webhooks: type: string enum: - deleted - installation: *866 - organization: *867 - projects_v2_item: *917 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -174700,7 +174946,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &918 + - &921 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -174722,7 +174968,7 @@ x-webhooks: required: - id - name - - &919 + - &922 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -174756,8 +175002,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *918 - - *919 + - *921 + - *922 required: - field_value - type: object @@ -174773,9 +175019,9 @@ x-webhooks: nullable: true required: - body - installation: *866 - organization: *867 - projects_v2_item: *917 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -174870,9 +175116,9 @@ x-webhooks: to: type: string nullable: true - installation: *866 - organization: *867 - projects_v2_item: *917 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -174955,10 +175201,10 @@ x-webhooks: type: string enum: - restored - changes: *920 - installation: *866 - organization: *867 - projects_v2_item: *917 + changes: *923 + installation: *869 + organization: *870 + projects_v2_item: *920 sender: *4 required: - action @@ -175040,9 +175286,9 @@ x-webhooks: type: string enum: - reopened - installation: *866 - organization: *867 - projects_v2: *413 + installation: *869 + organization: *870 + projects_v2: *416 sender: *4 required: - action @@ -175123,14 +175369,14 @@ x-webhooks: type: string enum: - created - installation: *866 - organization: *867 - projects_v2_status_update: &923 + installation: *869 + organization: *870 + projects_v2_status_update: &926 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *921 - required: *922 + properties: *924 + required: *925 sender: *4 required: - action @@ -175211,9 +175457,9 @@ x-webhooks: type: string enum: - deleted - installation: *866 - organization: *867 - projects_v2_status_update: *923 + installation: *869 + organization: *870 + projects_v2_status_update: *926 sender: *4 required: - action @@ -175349,9 +175595,9 @@ x-webhooks: type: string format: date nullable: true - installation: *866 - organization: *867 - projects_v2_status_update: *923 + installation: *869 + organization: *870 + projects_v2_status_update: *926 sender: *4 required: - action @@ -175422,10 +175668,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - repository @@ -175502,13 +175748,13 @@ x-webhooks: type: string enum: - assigned - assignee: *894 - enterprise: *865 - installation: *866 - number: &924 + assignee: *897 + enterprise: *868 + installation: *869 + number: &927 description: The pull request number. type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -177803,7 +178049,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -177885,11 +178131,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -180179,7 +180425,7 @@ x-webhooks: - draft reason: type: string - repository: *868 + repository: *871 sender: *4 required: - action @@ -180261,11 +180507,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -182555,7 +182801,7 @@ x-webhooks: - draft reason: type: string - repository: *868 + repository: *871 sender: *4 required: - action @@ -182637,13 +182883,13 @@ x-webhooks: type: string enum: - closed - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: &925 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: &928 allOf: - - *712 + - *715 - type: object properties: allow_auto_merge: @@ -182705,7 +182951,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *868 + repository: *871 sender: *4 required: - action @@ -182786,12 +183032,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: *925 - repository: *868 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: *928 + repository: *871 sender: *4 required: - action @@ -182871,11 +183117,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *865 - milestone: *694 - number: *924 - organization: *867 - pull_request: &926 + enterprise: *868 + milestone: *697 + number: *927 + organization: *870 + pull_request: &929 title: Pull Request type: object properties: @@ -185164,7 +185410,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -185243,11 +185489,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -187555,7 +187801,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *868 + repository: *871 sender: *4 required: - action @@ -187679,12 +187925,12 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: *925 - repository: *868 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: *928 + repository: *871 sender: *4 required: - action @@ -187764,11 +188010,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -190061,7 +190307,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -190141,11 +190387,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *865 - installation: *866 - label: *888 - number: *924 - organization: *867 + enterprise: *868 + installation: *869 + label: *891 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -192439,7 +192685,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -192520,10 +192766,10 @@ x-webhooks: type: string enum: - locked - enterprise: *865 - installation: *866 - number: *924 - organization: *867 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -194815,7 +195061,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -194895,12 +195141,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *865 - milestone: *694 - number: *924 - organization: *867 - pull_request: *926 - repository: *868 + enterprise: *868 + milestone: *697 + number: *927 + organization: *870 + pull_request: *929 + repository: *871 sender: *4 required: - action @@ -194979,12 +195225,12 @@ x-webhooks: type: string enum: - opened - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: *925 - repository: *868 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: *928 + repository: *871 sender: *4 required: - action @@ -195065,12 +195311,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: *925 - repository: *868 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: *928 + repository: *871 sender: *4 required: - action @@ -195150,12 +195396,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *865 - installation: *866 - number: *924 - organization: *867 - pull_request: *925 - repository: *868 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 + pull_request: *928 + repository: *871 sender: *4 required: - action @@ -195521,9 +195767,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: type: object properties: @@ -197705,7 +197951,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *868 + repository: *871 sender: *4 required: - action @@ -197785,7 +198031,7 @@ x-webhooks: type: string enum: - deleted - comment: &928 + comment: &931 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -198070,9 +198316,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: type: object properties: @@ -200242,7 +200488,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *868 + repository: *871 sender: *4 required: - action @@ -200322,11 +200568,11 @@ x-webhooks: type: string enum: - edited - changes: *927 - comment: *928 - enterprise: *865 - installation: *866 - organization: *867 + changes: *930 + comment: *931 + enterprise: *868 + installation: *869 + organization: *870 pull_request: type: object properties: @@ -202499,7 +202745,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *868 + repository: *871 sender: *4 required: - action @@ -202580,9 +202826,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: title: Simple Pull Request type: object @@ -204767,7 +205013,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *868 + repository: *871 review: description: The review that was affected. type: object @@ -205014,9 +205260,9 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: title: Simple Pull Request type: object @@ -207066,8 +207312,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *868 - review: &929 + repository: *871 + review: &932 description: The review that was affected. type: object properties: @@ -207300,12 +207546,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: description: The pull request number. type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -209600,7 +209846,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 requested_reviewer: title: User type: object @@ -209684,12 +209930,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: description: The pull request number. type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -211991,7 +212237,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 requested_team: title: Team description: Groups of organization members that gives permissions @@ -212183,12 +212429,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: description: The pull request number. type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -214485,7 +214731,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 requested_reviewer: title: User type: object @@ -214570,12 +214816,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *865 - installation: *866 + enterprise: *868 + installation: *869 number: description: The pull request number. type: integer - organization: *867 + organization: *870 pull_request: title: Pull Request type: object @@ -216863,7 +217109,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 requested_team: title: Team description: Groups of organization members that gives permissions @@ -217044,9 +217290,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: title: Simple Pull Request type: object @@ -219233,8 +219479,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *868 - review: *929 + repository: *871 + review: *932 sender: *4 required: - action @@ -219314,9 +219560,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: title: Simple Pull Request type: object @@ -221412,7 +221658,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *868 + repository: *871 sender: *4 thread: type: object @@ -221799,9 +222045,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 pull_request: title: Simple Pull Request type: object @@ -223883,7 +224129,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *868 + repository: *871 sender: *4 thread: type: object @@ -224273,10 +224519,10 @@ x-webhooks: type: string before: type: string - enterprise: *865 - installation: *866 - number: *924 - organization: *867 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -226559,7 +226805,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -226641,11 +226887,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *930 - enterprise: *865 - installation: *866 - number: *924 - organization: *867 + assignee: *933 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -228940,7 +229186,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -229019,11 +229265,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *865 - installation: *866 - label: *888 - number: *924 - organization: *867 + enterprise: *868 + installation: *869 + label: *891 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -231308,7 +231554,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -231389,10 +231635,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *865 - installation: *866 - number: *924 - organization: *867 + enterprise: *868 + installation: *869 + number: *927 + organization: *870 pull_request: title: Pull Request type: object @@ -233669,7 +233915,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *868 + repository: *871 sender: *4 required: - action @@ -233869,7 +234115,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *865 + enterprise: *868 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -233961,8 +234207,8 @@ x-webhooks: - url - author - committer - installation: *866 - organization: *867 + installation: *869 + organization: *870 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -234552,9 +234798,9 @@ x-webhooks: type: string enum: - published - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 registry_package: type: object properties: @@ -235000,7 +235246,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *911 + items: *914 summary: type: string tag_name: @@ -235054,7 +235300,7 @@ x-webhooks: - owner - package_version - registry - repository: *868 + repository: *871 sender: *4 required: - action @@ -235132,9 +235378,9 @@ x-webhooks: type: string enum: - updated - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 registry_package: type: object properties: @@ -235442,7 +235688,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *911 + items: *914 summary: type: string tag_name: @@ -235491,7 +235737,7 @@ x-webhooks: - owner - package_version - registry - repository: *868 + repository: *871 sender: *4 required: - action @@ -235568,10 +235814,10 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - release: &931 + enterprise: *868 + installation: *869 + organization: *870 + release: &934 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -235889,7 +236135,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *868 + repository: *871 sender: *4 required: - action @@ -235966,11 +236212,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - release: *931 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + release: *934 + repository: *871 sender: *4 required: - action @@ -236087,11 +236333,11 @@ x-webhooks: type: boolean required: - to - enterprise: *865 - installation: *866 - organization: *867 - release: *931 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + release: *934 + repository: *871 sender: *4 required: - action @@ -236169,9 +236415,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -236493,7 +236739,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *868 + repository: *871 sender: *4 required: - action @@ -236569,10 +236815,10 @@ x-webhooks: type: string enum: - published - enterprise: *865 - installation: *866 - organization: *867 - release: &932 + enterprise: *868 + installation: *869 + organization: *870 + release: &935 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -236891,7 +237137,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *868 + repository: *871 sender: *4 required: - action @@ -236967,11 +237213,11 @@ x-webhooks: type: string enum: - released - enterprise: *865 - installation: *866 - organization: *867 - release: *931 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + release: *934 + repository: *871 sender: *4 required: - action @@ -237047,11 +237293,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *865 - installation: *866 - organization: *867 - release: *932 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + release: *935 + repository: *871 sender: *4 required: - action @@ -237127,11 +237373,11 @@ x-webhooks: type: string enum: - published - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - repository_advisory: *764 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + repository_advisory: *767 sender: *4 required: - action @@ -237207,11 +237453,11 @@ x-webhooks: type: string enum: - reported - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - repository_advisory: *764 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + repository_advisory: *767 sender: *4 required: - action @@ -237287,10 +237533,10 @@ x-webhooks: type: string enum: - archived - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -237367,10 +237613,10 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -237448,10 +237694,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -237535,10 +237781,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -237650,10 +237896,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -237725,10 +237971,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 status: type: string @@ -237809,10 +238055,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -237889,10 +238135,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -237986,10 +238232,10 @@ x-webhooks: - name required: - repository - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238069,11 +238315,11 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - repository_ruleset: *191 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + repository_ruleset: *193 sender: *4 required: - action @@ -238151,11 +238397,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - repository_ruleset: *191 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + repository_ruleset: *193 sender: *4 required: - action @@ -238233,11 +238479,11 @@ x-webhooks: type: string enum: - edited - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - repository_ruleset: *191 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + repository_ruleset: *193 changes: type: object properties: @@ -238256,16 +238502,16 @@ x-webhooks: properties: added: type: array - items: *162 + items: *164 deleted: type: array - items: *162 + items: *164 updated: type: array items: type: object properties: - condition: *162 + condition: *164 changes: type: object properties: @@ -238298,16 +238544,16 @@ x-webhooks: properties: added: type: array - items: *732 + items: *735 deleted: type: array - items: *732 + items: *735 updated: type: array items: type: object properties: - rule: *732 + rule: *735 changes: type: object properties: @@ -238541,10 +238787,10 @@ x-webhooks: - from required: - owner - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238622,10 +238868,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -238703,7 +238949,7 @@ x-webhooks: type: string enum: - create - alert: &933 + alert: &936 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -238825,10 +239071,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -239034,10 +239280,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -239115,11 +239361,11 @@ x-webhooks: type: string enum: - reopen - alert: *933 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *936 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -239318,10 +239564,10 @@ x-webhooks: enum: - fixed - open - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -239399,11 +239645,11 @@ x-webhooks: type: string enum: - assigned - alert: &934 + alert: &937 type: object properties: - number: *128 - created_at: *135 + number: *130 + created_at: *137 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -239411,8 +239657,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *133 - html_url: *134 + url: *135 + html_url: *136 locations_url: type: string format: uri @@ -239518,10 +239764,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -239599,11 +239845,11 @@ x-webhooks: type: string enum: - created - alert: *934 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *937 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -239684,11 +239930,11 @@ x-webhooks: type: string enum: - created - alert: *934 - installation: *866 - location: *935 - organization: *867 - repository: *868 + alert: *937 + installation: *869 + location: *938 + organization: *870 + repository: *871 sender: *4 required: - location @@ -239926,11 +240172,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *934 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *937 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240008,11 +240254,11 @@ x-webhooks: type: string enum: - reopened - alert: *934 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *937 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240090,11 +240336,11 @@ x-webhooks: type: string enum: - resolved - alert: *934 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *937 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240172,12 +240418,12 @@ x-webhooks: type: string enum: - unassigned - alert: *934 + alert: *937 assignee: *4 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240255,11 +240501,11 @@ x-webhooks: type: string enum: - validated - alert: *934 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + alert: *937 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -240385,10 +240631,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *868 - enterprise: *865 - installation: *866 - organization: *867 + repository: *871 + enterprise: *868 + installation: *869 + organization: *870 sender: *4 required: - action @@ -240466,16 +240712,16 @@ x-webhooks: type: string enum: - published - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - security_advisory: &936 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + security_advisory: &939 description: The details of the security advisory, including summary, description, and severity. type: object properties: - cvss_severities: *130 + cvss_severities: *132 cwes: type: array items: @@ -240641,11 +240887,11 @@ x-webhooks: type: string enum: - updated - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 - security_advisory: *936 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 + security_advisory: *939 sender: *4 required: - action @@ -240718,16 +240964,16 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 security_advisory: description: The details of the security advisory, including summary, description, and severity. type: object properties: - cvss_severities: *130 + cvss_severities: *132 cwes: type: array items: @@ -240893,11 +241139,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *430 - enterprise: *865 - installation: *866 - organization: *867 - repository: *473 + security_and_analysis: *433 + enterprise: *868 + installation: *869 + organization: *870 + repository: *476 sender: *4 required: - changes @@ -240975,12 +241221,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: &937 + sponsorship: &940 type: object properties: created_at: @@ -241281,12 +241527,12 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: *937 + sponsorship: *940 required: - action - sponsorship @@ -241374,12 +241620,12 @@ x-webhooks: type: string required: - from - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: *937 + sponsorship: *940 required: - action - changes @@ -241456,17 +241702,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &938 + effective_date: &941 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: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: *937 + sponsorship: *940 required: - action - sponsorship @@ -241540,7 +241786,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &939 + changes: &942 type: object properties: tier: @@ -241584,13 +241830,13 @@ x-webhooks: - from required: - tier - effective_date: *938 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + effective_date: *941 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: *937 + sponsorship: *940 required: - action - changes @@ -241667,13 +241913,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *939 - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + changes: *942 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - sponsorship: *937 + sponsorship: *940 required: - action - changes @@ -241747,10 +241993,10 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -241833,10 +242079,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242256,15 +242502,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *865 + enterprise: *868 id: description: The unique identifier of the status. type: integer - installation: *866 + installation: *869 name: type: string - organization: *867 - repository: *868 + organization: *870 + repository: *871 sender: *4 sha: description: The Commit SHA. @@ -242373,15 +242619,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *225 - parent_issue_repo: *78 + parent_issue: *227 + parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *225 - installation: *866 - organization: *867 - repository: *868 + sub_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -242465,15 +242711,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *225 - parent_issue_repo: *78 + parent_issue: *227 + parent_issue_repo: *80 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *225 - installation: *866 - organization: *867 - repository: *868 + sub_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -242557,15 +242803,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *225 - sub_issue_repo: *78 + sub_issue: *227 + sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *225 - installation: *866 - organization: *867 - repository: *868 + parent_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -242649,15 +242895,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *225 - sub_issue_repo: *78 + sub_issue: *227 + sub_issue_repo: *80 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *225 - installation: *866 - organization: *867 - repository: *868 + parent_issue: *227 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -242734,12 +242980,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 - team: &940 + team: &943 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -242962,9 +243208,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 repository: title: Repository description: A git repository @@ -243422,7 +243668,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *940 + team: *943 required: - action - team @@ -243498,9 +243744,9 @@ x-webhooks: type: string enum: - created - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 repository: title: Repository description: A git repository @@ -243958,7 +244204,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *940 + team: *943 required: - action - team @@ -244035,9 +244281,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 repository: title: Repository description: A git repository @@ -244495,7 +244741,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *940 + team: *943 required: - action - team @@ -244639,9 +244885,9 @@ x-webhooks: - from required: - permissions - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 repository: title: Repository description: A git repository @@ -245099,7 +245345,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *940 + team: *943 required: - action - changes @@ -245177,9 +245423,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *865 - installation: *866 - organization: *867 + enterprise: *868 + installation: *869 + organization: *870 repository: title: Repository description: A git repository @@ -245637,7 +245883,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *940 + team: *943 required: - action - team @@ -245713,10 +245959,10 @@ x-webhooks: type: string enum: - started - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 required: - action @@ -245789,16 +246035,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *865 + enterprise: *868 inputs: type: object nullable: true additionalProperties: true - installation: *866 - organization: *867 + installation: *869 + organization: *870 ref: type: string - repository: *868 + repository: *871 sender: *4 workflow: type: string @@ -245880,10 +246126,10 @@ x-webhooks: type: string enum: - completed - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 workflow_job: allOf: @@ -246120,7 +246366,7 @@ x-webhooks: type: string required: - conclusion - deployment: *612 + deployment: *615 required: - action - repository @@ -246199,10 +246445,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 workflow_job: allOf: @@ -246462,7 +246708,7 @@ x-webhooks: required: - status - steps - deployment: *612 + deployment: *615 required: - action - repository @@ -246541,10 +246787,10 @@ x-webhooks: type: string enum: - queued - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 workflow_job: type: object @@ -246679,7 +246925,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *612 + deployment: *615 required: - action - repository @@ -246758,10 +247004,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + installation: *869 + organization: *870 + repository: *871 sender: *4 workflow_job: type: object @@ -246897,7 +247143,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *612 + deployment: *615 required: - action - repository @@ -246977,12 +247223,12 @@ x-webhooks: type: string enum: - completed - enterprise: *865 - installation: *866 - organization: *867 - repository: *868 + enterprise: *868 + {"code":"deadline_exceeded","msg":"operation timed out"}