diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 97d5c51b1..cb20ed151 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -2365,6 +2365,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", @@ -9947,6 +10119,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", @@ -105535,6 +105874,46 @@ } } }, + "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" + ], + "examples": [ + "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", @@ -294881,6 +295260,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-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 9cc07d4bd..3b3aa0a8b 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -1647,6 +1647,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 @@ -7100,6 +7219,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 @@ -76192,6 +76425,37 @@ components: type: integer examples: - 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 + examples: + - 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 @@ -216982,6 +217246,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-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index f3dbc811a..a4624d91a 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -2365,6 +2365,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", @@ -9946,6 +10118,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", @@ -105345,6 +105684,46 @@ } } }, + "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" + ], + "examples": [ + "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", @@ -294036,6 +294415,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-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index 9cba1c5ce..589bebc1a 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -1647,6 +1647,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 @@ -76039,6 +76272,37 @@ components: type: integer examples: - 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 + examples: + - 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 @@ -216287,6 +216551,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-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index f7aba1c9d..45f755a11 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -2379,6 +2379,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", @@ -9993,6 +10165,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", @@ -106116,6 +106455,46 @@ } } }, + "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" + ], + "examples": [ + "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", @@ -296777,6 +297156,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-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 426ee6419..c742fcee2 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -1655,6 +1655,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 @@ -7125,6 +7244,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 @@ -76568,6 +76801,37 @@ components: type: integer examples: - 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 + examples: + - 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 @@ -218211,6 +218475,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-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 566238337..da594eaff 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -19128,6 +19128,349 @@ } } }, + "/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" + ], + "examples": [ + "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" + ], + "examples": [ + "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", @@ -89561,6 +89904,344 @@ } } }, + "/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" + ], + "examples": [ + "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" + ], + "examples": [ + "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-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 556ba5bb4..ad67e23a4 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -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 - - &43 + - &45 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 - - &44 + - &46 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 - - &51 + - &53 name: direction description: The direction to sort the results by. in: query @@ -695,7 +695,7 @@ paths: required: - vector_string - score - cvss_severities: &53 + cvss_severities: &55 type: - object - 'null' @@ -742,7 +742,7 @@ paths: required: - vector_string - score - epss: &54 + epss: &56 type: - object - 'null' @@ -905,7 +905,7 @@ paths: - subscriptions_url - type - url - type: &304 + type: &307 type: string description: The type of credit the user is receiving. enum: @@ -1038,7 +1038,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &115 + schema: &117 title: Validation Error Simple description: Validation Error Simple type: object @@ -1071,7 +1071,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &621 + - &624 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1656,7 +1656,7 @@ paths: schema: type: integer default: 30 - - &195 + - &198 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 @@ -1672,7 +1672,7 @@ paths: application/json: schema: type: array - items: &196 + items: &199 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1768,7 +1768,7 @@ paths: - installation_id - repository_id examples: - default: &197 + default: &200 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1831,7 +1831,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &114 + schema: &116 title: Validation Error description: Validation Error type: object @@ -1903,7 +1903,7 @@ paths: description: Response content: application/json: - schema: &198 + schema: &201 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2038,7 +2038,7 @@ paths: - request - response examples: - default: &199 + default: &202 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2242,7 +2242,7 @@ paths: parameters: - *17 - *19 - - &78 + - &80 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) @@ -2830,7 +2830,7 @@ paths: suspended_at: suspended_by: headers: - Link: &57 + Link: &59 example: ; rel="next", ; rel="last" schema: @@ -3020,7 +3020,7 @@ paths: - selected repositories: type: array - items: &69 + items: &71 title: Repository description: A repository on GitHub. type: object @@ -3047,7 +3047,7 @@ paths: license: anyOf: - type: 'null' - - &75 + - &77 title: License Simple description: License Simple type: object @@ -5446,7 +5446,7 @@ paths: responses: '202': *37 '422': *7 - '500': &105 + '500': &107 description: Internal Error content: application/json: @@ -7521,6 +7521,148 @@ 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: + - *38 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &43 + 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 + examples: + - 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': *27 + 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: + - *38 + requestBody: + required: true + content: + application/json: + schema: &129 + 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: &44 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *43 + examples: + default: *44 + '400': + description: Invalid input + '403': *27 + '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: + - *38 + - 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': *27 + '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 @@ -7546,8 +7688,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -7555,7 +7697,7 @@ paths: application/json: schema: type: array - items: &45 + items: &47 type: object description: A code security configuration properties: @@ -7953,7 +8095,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &49 + code_scanning_options: &51 type: - object - 'null' @@ -7972,7 +8114,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &48 + code_scanning_default_setup_options: &50 type: - object - 'null' @@ -8099,9 +8241,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *45 + schema: *47 examples: - default: &46 + default: &48 value: id: 1325 target_type: enterprise @@ -8159,7 +8301,7 @@ paths: description: Response content: application/json: - schema: &174 + schema: &177 type: array description: A list of default code security configurations items: @@ -8173,9 +8315,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *45 + configuration: *47 examples: - default: &175 + default: &178 value: - default_for_new_repos: public configuration: @@ -8264,7 +8406,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *38 - - &47 + - &49 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -8276,9 +8418,9 @@ paths: description: Response content: application/json: - schema: *45 + schema: *47 examples: - default: *46 + default: *48 '304': *35 '403': *27 '404': *6 @@ -8303,7 +8445,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *38 - - *47 + - *49 requestBody: required: true content: @@ -8382,8 +8524,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *48 - code_scanning_options: *49 + code_scanning_default_setup_options: *50 + code_scanning_options: *51 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -8479,13 +8621,13 @@ paths: description: Response content: application/json: - schema: *45 + schema: *47 examples: - default: *46 + default: *48 '304': *35 '403': *27 '404': *6 - '409': &50 + '409': &52 description: Conflict content: application/json: @@ -8513,14 +8655,14 @@ paths: url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *38 - - *47 + - *49 responses: - '204': &176 + '204': &179 description: A header with no content is returned. '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -8545,7 +8687,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *38 - - *47 + - *49 requestBody: required: true content: @@ -8572,7 +8714,7 @@ paths: '202': *37 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -8597,7 +8739,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *38 - - *47 + - *49 requestBody: required: true content: @@ -8637,12 +8779,12 @@ paths: - none - private_and_internal - public - configuration: *45 + configuration: *47 examples: default: value: default_for_new_repos: all - configuration: &173 + configuration: &176 value: id: 1325 target_type: organization @@ -8699,7 +8841,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *38 - - *47 + - *49 - 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)." @@ -8708,8 +8850,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -8727,7 +8869,7 @@ paths: application/json: schema: type: array - items: &177 + items: &180 type: object description: Repositories associated with a code security configuration and attachment status @@ -8745,7 +8887,7 @@ paths: - failed - updating - removed_by_enterprise - repository: &56 + repository: &58 title: Simple Repository description: A GitHub repository. type: object @@ -9072,7 +9214,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &178 + repository: &181 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -9166,7 +9308,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *38 - - &181 + - &184 name: state in: query description: |- @@ -9175,7 +9317,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &182 + - &185 name: severity in: query description: |- @@ -9184,7 +9326,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &183 + - &186 name: ecosystem in: query description: |- @@ -9193,14 +9335,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &184 + - &187 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 - - &185 + - &188 name: epss_percentage in: query description: |- @@ -9212,7 +9354,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 - - &461 + - &464 name: has in: query description: |- @@ -9226,7 +9368,7 @@ paths: type: string enum: - patch - - &186 + - &189 name: assignee in: query description: |- @@ -9235,7 +9377,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &187 + - &190 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9245,7 +9387,7 @@ paths: enum: - development - runtime - - &188 + - &191 name: sort in: query description: |- @@ -9260,9 +9402,9 @@ paths: - updated - epss_percentage default: created - - *51 - - *43 - - *44 + - *53 + - *45 + - *46 - *17 responses: '200': @@ -9271,11 +9413,11 @@ paths: application/json: schema: type: array - items: &189 + items: &192 type: object description: A Dependabot alert. properties: - number: &163 + number: &166 type: integer description: The security alert number. readOnly: true @@ -9293,7 +9435,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &52 + package: &54 type: object description: Details for the vulnerable package. readOnly: true @@ -9341,7 +9483,7 @@ paths: - direct - transitive - - security_advisory: &462 + security_advisory: &465 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9372,13 +9514,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &55 + items: &57 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *52 + package: *54 severity: type: string description: The severity of the vulnerability. @@ -9446,8 +9588,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *53 - epss: *54 + cvss_severities: *55 + epss: *56 cwes: type: array description: Details for the advisory pertaining to Common @@ -9547,30 +9689,30 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *55 - url: &166 + security_vulnerability: *57 + url: &169 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &167 + html_url: &170 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &164 + created_at: &167 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: &165 + updated_at: &168 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: &169 + dismissed_at: &172 type: - string - 'null' @@ -9601,7 +9743,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: &168 + fixed_at: &171 type: - string - 'null' @@ -9609,7 +9751,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &463 + auto_dismissed_at: &466 type: - string - 'null' @@ -9617,7 +9759,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &464 + dismissal_request: &467 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -9661,7 +9803,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *56 + repository: *58 required: - number - state @@ -9680,7 +9822,7 @@ paths: - repository additionalProperties: false examples: - default: &190 + default: &193 value: - number: 2 state: dismissed @@ -10049,7 +10191,7 @@ paths: application/json: schema: type: array - items: &58 + items: &60 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -10127,7 +10269,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -10202,9 +10344,9 @@ paths: description: Response content: application/json: - schema: *58 + schema: *60 examples: - default: &66 + default: &68 value: id: 1 name: Justice League @@ -10233,7 +10375,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *38 - - &59 + - &61 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -10252,7 +10394,7 @@ paths: type: array items: *4 examples: - default: &60 + default: &62 value: - login: octocat id: 1 @@ -10273,7 +10415,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10291,7 +10433,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10322,7 +10464,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10340,7 +10482,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10371,7 +10513,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10389,8 +10531,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *38 - - *59 - - &61 + - *61 + - &63 name: username description: The handle for the GitHub user account. in: path @@ -10404,7 +10546,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &62 + exampleKey1: &64 value: login: octocat id: 1 @@ -10440,8 +10582,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *38 - - *59 - *61 + - *63 responses: '201': description: Successfully added team member @@ -10449,7 +10591,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *62 + exampleKey1: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10467,8 +10609,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *38 - - *59 - *61 + - *63 responses: '204': description: Response @@ -10490,7 +10632,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *38 - - *59 + - *61 - *17 - *19 responses: @@ -10500,7 +10642,7 @@ paths: application/json: schema: type: array - items: &63 + items: &65 title: Organization Simple description: A GitHub organization. type: object @@ -10572,7 +10714,7 @@ paths: - avatar_url - description examples: - default: &64 + default: &66 value: login: github id: 1 @@ -10603,7 +10745,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10631,9 +10773,9 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: &102 + default: &104 value: - login: github id: 1 @@ -10664,7 +10806,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10705,8 +10847,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *38 - - *59 - - &65 + - *61 + - &67 name: org description: The organization name. The name is not case sensitive. in: path @@ -10718,9 +10860,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *63 + schema: *65 examples: - default: *64 + default: *66 '404': description: The team is not assigned to the organization x-github: @@ -10739,16 +10881,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *38 - - *59 - - *65 + - *61 + - *67 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *63 + schema: *65 examples: - default: *64 + default: *66 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10765,8 +10907,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *38 - - *59 - - *65 + - *61 + - *67 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -10790,7 +10932,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *38 - - &67 + - &69 name: team_slug description: The slug of the team name. in: path @@ -10802,11 +10944,11 @@ paths: description: Response content: application/json: - schema: *58 + schema: *60 examples: - default: *66 + default: *68 headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -10824,7 +10966,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *38 - - *67 + - *69 requestBody: required: true content: @@ -10882,11 +11024,11 @@ paths: description: Response content: application/json: - schema: *58 + schema: *60 examples: - default: *66 + default: *68 headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -10907,7 +11049,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *38 - - *67 + - *69 responses: '204': description: Response @@ -10945,7 +11087,7 @@ paths: application/json: schema: type: array - items: &97 + items: &99 title: Event description: Event type: object @@ -10956,7 +11098,7 @@ paths: type: - string - 'null' - actor: &68 + actor: &70 title: Actor description: Actor type: object @@ -10997,7 +11139,7 @@ paths: - id - name - url - org: *68 + org: *70 payload: oneOf: - title: CreateEvent @@ -11044,7 +11186,7 @@ paths: properties: action: type: string - discussion: &713 + discussion: &716 title: Discussion description: A Discussion in a repository. type: object @@ -11341,7 +11483,7 @@ paths: - id labels: type: array - items: &72 + items: &74 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -11424,7 +11566,7 @@ paths: properties: action: type: string - issue: &73 + issue: &75 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -11545,7 +11687,7 @@ paths: milestone: anyOf: - type: 'null' - - &256 + - &259 title: Milestone description: A collection of related issues and pull requests. @@ -11717,7 +11859,7 @@ paths: timeline_url: type: string format: uri - type: &220 + type: &223 title: Issue Type description: The type of issue. type: @@ -11771,12 +11913,12 @@ paths: - node_id - name - description - repository: *69 + repository: *71 performed_via_github_app: anyOf: - type: 'null' - *5 - author_association: &70 + author_association: &72 title: author_association type: string description: How the author is associated with the @@ -11792,7 +11934,7 @@ paths: - OWNER examples: - OWNER - reactions: &71 + reactions: &73 title: Reaction Rollup type: object properties: @@ -11828,7 +11970,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &633 + sub_issues_summary: &636 title: Sub-issues Summary type: object properties: @@ -11852,7 +11994,7 @@ paths: pinned_comment: anyOf: - type: 'null' - - &74 + - &76 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11903,16 +12045,16 @@ paths: issue_url: type: string format: uri - author_association: *70 + author_association: *72 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *71 + reactions: *73 pin: anyOf: - type: 'null' - - &534 + - &537 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -11939,7 +12081,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &634 + issue_dependencies_summary: &637 title: Issue Dependencies Summary type: object properties: @@ -11958,7 +12100,7 @@ paths: - total_blocking issue_field_values: type: array - items: &519 + items: &522 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12058,10 +12200,10 @@ paths: assignees: type: array items: *4 - label: *72 + label: *74 labels: type: array - items: *72 + items: *74 required: - action - issue @@ -12070,8 +12212,8 @@ paths: properties: action: type: string - issue: *73 - comment: *74 + issue: *75 + comment: *76 required: - action - issue @@ -12252,7 +12394,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 allow_forking: type: boolean is_template: @@ -12343,7 +12485,7 @@ paths: type: string number: type: integer - pull_request: &76 + pull_request: &78 title: Pull Request Minimal type: object properties: @@ -12414,10 +12556,10 @@ paths: assignees: type: array items: *4 - label: *72 + label: *74 labels: type: array - items: *72 + items: *74 required: - action - number @@ -12427,7 +12569,7 @@ paths: properties: action: type: string - pull_request: *76 + pull_request: *78 comment: type: object properties: @@ -12681,7 +12823,7 @@ paths: - pull_request updated_at: type: string - pull_request: *76 + pull_request: *78 required: - action - review @@ -12730,7 +12872,7 @@ paths: updated_at: type: string format: date-time - reactions: *71 + reactions: *73 required: - action - comment @@ -12741,7 +12883,7 @@ paths: type: string release: allOf: - - &566 + - &569 title: Release description: A release. type: object @@ -12823,7 +12965,7 @@ paths: author: *4 assets: type: array - items: &567 + items: &570 title: Release Asset description: Data related to a release. type: object @@ -12898,7 +13040,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *71 + reactions: *73 required: - assets_url - upload_url @@ -12991,7 +13133,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': &106 + '503': &108 description: Service unavailable content: application/json: @@ -13093,7 +13235,7 @@ paths: _links: type: object properties: - timeline: &77 + timeline: &79 title: Link With Type description: Hypermedia Link with Type type: object @@ -13105,17 +13247,17 @@ paths: required: - href - type - user: *77 - security_advisories: *77 - current_user: *77 - current_user_public: *77 - current_user_actor: *77 - current_user_organization: *77 + user: *79 + security_advisories: *79 + current_user: *79 + current_user_public: *79 + current_user_actor: *79 + current_user_organization: *79 current_user_organizations: type: array - items: *77 - repository_discussions: *77 - repository_discussions_category: *77 + items: *79 + repository_discussions: *79 + repository_discussions_category: *79 required: - timeline - user @@ -13177,7 +13319,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *78 + - *80 - *17 - *19 responses: @@ -13187,7 +13329,7 @@ paths: application/json: schema: type: array - items: &79 + items: &81 title: Base Gist description: Base Gist type: object @@ -13284,7 +13426,7 @@ paths: - created_at - updated_at examples: - default: &80 + default: &82 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -13329,7 +13471,7 @@ paths: site_admin: false truncated: false headers: - Link: *57 + Link: *59 '304': *35 '403': *27 x-github: @@ -13408,7 +13550,7 @@ paths: description: Response content: application/json: - schema: &81 + schema: &83 title: Gist Simple description: Gist Simple type: object @@ -13426,7 +13568,7 @@ paths: url: type: string format: uri - user: &640 + user: &643 title: Public User description: Public User type: object @@ -13800,7 +13942,7 @@ paths: truncated: type: boolean examples: - default: &82 + default: &84 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -13904,7 +14046,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *78 + - *80 - *17 - *19 responses: @@ -13914,11 +14056,11 @@ paths: application/json: schema: type: array - items: *79 + items: *81 examples: - default: *80 + default: *82 headers: - Link: *57 + Link: *59 '422': *15 '304': *35 '403': *27 @@ -13938,7 +14080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *78 + - *80 - *17 - *19 responses: @@ -13948,11 +14090,11 @@ paths: application/json: schema: type: array - items: *79 + items: *81 examples: - default: *80 + default: *82 headers: - Link: *57 + Link: *59 '401': *23 '304': *35 '403': *27 @@ -13978,7 +14120,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &83 + - &85 name: gist_id description: The unique identifier of the gist. in: path @@ -13990,10 +14132,10 @@ paths: description: Response content: application/json: - schema: *81 + schema: *83 examples: - default: *82 - '403': &86 + default: *84 + '403': &88 description: Forbidden Gist content: application/json: @@ -14042,7 +14184,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *83 + - *85 requestBody: required: true content: @@ -14106,9 +14248,9 @@ paths: description: Response content: application/json: - schema: *81 + schema: *83 examples: - updateGist: *82 + updateGist: *84 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -14266,7 +14408,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *83 + - *85 responses: '204': description: Response @@ -14295,7 +14437,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *83 + - *85 - *17 - *19 responses: @@ -14305,7 +14447,7 @@ paths: application/json: schema: type: array - items: &84 + items: &86 title: Gist Comment description: A comment made to a gist. type: object @@ -14343,7 +14485,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *70 + author_association: *72 required: - url - id @@ -14383,7 +14525,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -14408,7 +14550,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *83 + - *85 requestBody: required: true content: @@ -14434,9 +14576,9 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: &85 + default: &87 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -14494,8 +14636,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *83 - - &87 + - *85 + - &89 name: comment_id description: The unique identifier of the comment. in: path @@ -14508,12 +14650,12 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *85 + default: *87 '304': *35 '404': *6 - '403': *86 + '403': *88 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14535,8 +14677,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *83 - - *87 + - *85 + - *89 requestBody: required: true content: @@ -14562,9 +14704,9 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *85 + default: *87 '404': *6 x-github: githubCloudOnly: false @@ -14581,8 +14723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *83 - - *87 + - *85 + - *89 responses: '204': description: Response @@ -14605,7 +14747,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *83 + - *85 - *17 - *19 responses: @@ -14706,7 +14848,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *83 + - *85 - *17 - *19 responses: @@ -14716,7 +14858,7 @@ paths: application/json: schema: type: array - items: *81 + items: *83 examples: default: value: @@ -14762,7 +14904,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '404': *6 '304': *35 '403': *27 @@ -14781,13 +14923,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *83 + - *85 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: default: value: @@ -14858,7 +15000,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *83 + - *85 responses: '204': description: Response if gist is starred @@ -14888,7 +15030,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *83 + - *85 responses: '204': description: Response @@ -14910,7 +15052,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *83 + - *85 responses: '204': description: Response @@ -14939,7 +15081,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *83 + - *85 - name: sha in: path required: true @@ -14950,9 +15092,9 @@ paths: description: Response content: application/json: - schema: *81 + schema: *83 examples: - default: *82 + default: *84 '422': *15 '404': *6 '403': *27 @@ -15115,7 +15257,7 @@ paths: type: array items: allOf: - - *69 + - *71 repository_selection: type: string examples: @@ -15239,7 +15381,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *57 + Link: *59 '403': *27 '304': *35 '401': *23 @@ -15323,7 +15465,7 @@ paths: - closed - all default: open - - &223 + - &226 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15341,8 +15483,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - name: collab in: query required: false @@ -15372,9 +15514,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: &224 + default: &227 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15619,7 +15761,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *57 + Link: *59 '422': *15 '304': *35 '404': *6 @@ -15654,7 +15796,7 @@ paths: application/json: schema: type: array - items: *75 + items: *77 examples: default: value: @@ -15952,7 +16094,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &88 + X-CommonMarker-Version: &90 example: 0.17.4 schema: type: string @@ -16007,7 +16149,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *88 + X-CommonMarker-Version: *90 content: text/html: schema: @@ -16036,7 +16178,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &91 + - &93 name: account_id description: account_id parameter in: path @@ -16048,7 +16190,7 @@ paths: description: Response content: application/json: - schema: &90 + schema: &92 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -16082,7 +16224,7 @@ paths: - 'null' id: type: integer - plan: &89 + plan: &91 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -16185,7 +16327,7 @@ paths: - 'null' updated_at: type: string - plan: *89 + plan: *91 required: - url - id @@ -16193,7 +16335,7 @@ paths: - login - marketplace_purchase examples: - default: &92 + default: &94 value: url: https://api.github.com/orgs/github type: Organization @@ -16278,9 +16420,9 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: - default: &93 + default: &95 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -16298,7 +16440,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *57 + Link: *59 '404': *6 '401': *23 x-github: @@ -16320,14 +16462,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &94 + - &96 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &95 + - &97 name: sort description: The property to sort the results by. in: query @@ -16357,9 +16499,9 @@ paths: application/json: schema: type: array - items: *90 + items: *92 examples: - default: &96 + default: &98 value: - url: https://api.github.com/orgs/github type: Organization @@ -16410,7 +16552,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *57 + Link: *59 '404': *6 '422': *15 '401': *23 @@ -16433,15 +16575,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *91 + - *93 responses: '200': description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *92 + default: *94 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -16473,11 +16615,11 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: - default: *93 + default: *95 headers: - Link: *57 + Link: *59 '401': *23 x-github: githubCloudOnly: false @@ -16498,8 +16640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *94 - - *95 + - *96 + - *97 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -16519,11 +16661,11 @@ paths: application/json: schema: type: array - items: *90 + items: *92 examples: - default: *96 + default: *98 headers: - Link: *57 + Link: *59 '401': *23 x-github: githubCloudOnly: false @@ -16786,14 +16928,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &315 + - &318 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &316 + - &319 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -16810,7 +16952,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -16855,7 +16997,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &319 + '301': &322 description: Moved permanently content: application/json: @@ -16877,7 +17019,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &542 + - &545 name: all description: If `true`, show notifications marked as read. in: query @@ -16885,7 +17027,7 @@ paths: schema: type: boolean default: false - - &543 + - &546 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16894,8 +17036,8 @@ paths: schema: type: boolean default: false - - *78 - - &544 + - *80 + - &547 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: @@ -16920,14 +17062,14 @@ paths: application/json: schema: type: array - items: &98 + items: &100 title: Thread description: Thread type: object properties: id: type: string - repository: &145 + repository: &148 title: Minimal Repository description: Minimal Repository type: object @@ -17279,7 +17421,7 @@ paths: type: boolean examples: - false - security_and_analysis: &271 + security_and_analysis: &274 type: - object - 'null' @@ -17483,7 +17625,7 @@ paths: - url - subscription_url examples: - default: &545 + default: &548 value: - id: '1' repository: @@ -17565,7 +17707,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -17649,7 +17791,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &99 + - &101 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 @@ -17663,7 +17805,7 @@ paths: description: Response content: application/json: - schema: *98 + schema: *100 examples: default: value: @@ -17765,7 +17907,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *99 + - *101 responses: '205': description: Reset Content @@ -17787,7 +17929,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *99 + - *101 responses: '204': description: No content @@ -17810,13 +17952,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *99 + - *101 responses: '200': description: Response content: application/json: - schema: &100 + schema: &102 title: Thread Subscription description: Thread Subscription type: object @@ -17860,7 +18002,7 @@ paths: - url - subscribed examples: - default: &101 + default: &103 value: subscribed: true ignored: false @@ -17891,7 +18033,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *99 + - *101 requestBody: required: false content: @@ -17912,9 +18054,9 @@ paths: description: Response content: application/json: - schema: *100 + schema: *102 examples: - default: *101 + default: *103 '304': *35 '403': *27 '401': *23 @@ -17937,7 +18079,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *99 + - *101 responses: '204': description: Response @@ -18032,9 +18174,9 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: *102 + default: *104 headers: Link: example: ; rel="next" @@ -18061,13 +18203,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &103 + schema: &105 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -18101,12 +18243,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: *103 + schema: *105 examples: selected_actions: *40 responses: @@ -18135,13 +18277,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &104 + schema: &106 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -18175,12 +18317,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: *104 + schema: *106 examples: selected_actions: *42 responses: @@ -18209,7 +18351,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: - - *65 + - *67 - name: page in: query description: The page number of results to fetch. @@ -18255,7 +18397,7 @@ paths: items: anyOf: - type: 'null' - - *56 + - *58 additionalProperties: false examples: default: @@ -18360,7 +18502,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -18426,7 +18568,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *65 + - *67 requestBody: required: true content: @@ -18476,7 +18618,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *65 + - *67 - name: page description: The page number of the results to fetch. in: query @@ -18633,7 +18775,7 @@ paths: total_count: 3 '404': *6 '403': *27 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18654,8 +18796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *65 - - &107 + - *67 + - &109 name: budget_id description: The ID corresponding to the budget. in: path @@ -18757,8 +18899,8 @@ paths: '400': *14 '404': *6 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18778,8 +18920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *65 - - *107 + - *67 + - *109 requestBody: required: true content: @@ -18971,8 +19113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *65 - - *107 + - *67 + - *109 responses: '200': description: Response when deleting a budget @@ -18998,8 +19140,8 @@ paths: '400': *14 '404': *6 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19019,8 +19161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *65 - - &108 + - *67 + - &110 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, @@ -19029,7 +19171,7 @@ paths: required: false schema: type: integer - - &110 + - &112 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 @@ -19038,7 +19180,7 @@ paths: required: false schema: type: integer - - &109 + - &111 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 @@ -19053,14 +19195,14 @@ paths: required: false schema: type: string - - &690 + - &693 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &111 + - &113 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -19176,8 +19318,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19197,9 +19339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *65 - - *108 - - &691 + - *67 + - *110 + - &694 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 @@ -19208,7 +19350,7 @@ paths: required: false schema: type: integer - - *109 + - *111 responses: '200': description: Billing usage report response for an organization @@ -19283,8 +19425,8 @@ paths: repositoryName: github/example '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19307,19 +19449,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *65 - - *108 + - *67 - *110 - - *109 - - &692 + - *112 + - *111 + - &695 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *111 - - &693 + - *113 + - &696 name: sku description: The SKU to query for usage. in: query @@ -19429,8 +19571,8 @@ paths: netAmount: 8.0 '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19456,13 +19598,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &112 + schema: &114 title: Organization Full description: Organization Full type: object @@ -19857,7 +19999,7 @@ paths: - updated_at - archived_at examples: - default-response: &113 + default-response: &115 value: login: github id: 1 @@ -19957,7 +20099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *65 + - *67 requestBody: required: false content: @@ -20174,18 +20316,18 @@ paths: description: Response content: application/json: - schema: *112 + schema: *114 examples: - default: *113 + default: *115 '422': description: Validation failed content: application/json: schema: oneOf: - - *114 - - *115 - '409': *50 + - *116 + - *117 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20208,7 +20350,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *65 + - *67 responses: '202': *37 '404': *6 @@ -20233,7 +20375,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -20259,7 +20401,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20280,7 +20422,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: - - *65 + - *67 - *17 - *19 responses: @@ -20298,7 +20440,7 @@ paths: type: integer repository_cache_usages: type: array - items: &326 + items: &329 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -20336,7 +20478,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20356,7 +20498,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -20374,7 +20516,7 @@ paths: type: integer runners: type: array - items: &116 + items: &118 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -20437,7 +20579,7 @@ paths: - size_gb - display_name - source - machine_size_details: &124 + machine_size_details: &126 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -20546,7 +20688,7 @@ paths: - public_ip_enabled - platform examples: - default: &144 + default: &147 value: total_count: 2 runners: @@ -20588,7 +20730,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20606,7 +20748,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -20684,9 +20826,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: &125 + default: &127 value: id: 5 name: My hosted ubuntu runner @@ -20727,7 +20869,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -20743,7 +20885,7 @@ paths: type: integer images: type: array - items: &117 + items: &119 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -20802,7 +20944,7 @@ paths: - latest_version - state examples: - default: &119 + default: &121 value: total_count: 2 image_versions: @@ -20833,8 +20975,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: - - *65 - - &118 + - *67 + - &120 name: image_definition_id description: Image definition ID of custom image in: path @@ -20846,7 +20988,7 @@ paths: description: Response content: application/json: - schema: *117 + schema: *119 examples: default: value: @@ -20876,8 +21018,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *65 - - *118 + - *67 + - *120 responses: '204': description: Response @@ -20900,8 +21042,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: - - *118 - - *65 + - *120 + - *67 responses: '200': description: Response @@ -20917,7 +21059,7 @@ paths: type: integer image_versions: type: array - items: &120 + items: &122 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20955,7 +21097,7 @@ paths: - created_on - state_details examples: - default: *119 + default: *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20975,9 +21117,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: - - *65 - - *118 - - &121 + - *67 + - *120 + - &123 name: version description: Version of a custom image in: path @@ -20990,7 +21132,7 @@ paths: description: Response content: application/json: - schema: *120 + schema: *122 examples: default: value: @@ -21016,9 +21158,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: - - *65 - - *118 - - *121 + - *67 + - *120 + - *123 responses: '204': description: Response @@ -21039,7 +21181,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: - - *65 + - *67 responses: '200': description: Response @@ -21055,7 +21197,7 @@ paths: type: integer images: type: array - items: &122 + items: &124 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -21095,7 +21237,7 @@ paths: - display_name - source examples: - default: &123 + default: &125 value: id: ubuntu-20.04 platform: linux-x64 @@ -21119,7 +21261,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: - - *65 + - *67 responses: '200': description: Response @@ -21135,9 +21277,9 @@ paths: type: integer images: type: array - items: *122 + items: *124 examples: - default: *123 + default: *125 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21154,7 +21296,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: - - *65 + - *67 responses: '200': description: Response @@ -21209,7 +21351,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: - - *65 + - *67 responses: '200': description: Response @@ -21225,7 +21367,7 @@ paths: type: integer machine_specs: type: array - items: *124 + items: *126 examples: default: value: @@ -21250,7 +21392,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: - - *65 + - *67 responses: '200': description: Response @@ -21294,8 +21436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *65 - - &126 + - *67 + - &128 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -21307,11 +21449,11 @@ paths: description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: *125 + default: *127 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21329,8 +21471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *65 - - *126 + - *67 + - *128 requestBody: required: true content: @@ -21383,9 +21525,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: *125 + default: *127 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21401,21 +21543,126 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *65 - - *126 + - *67 + - *128 responses: '202': description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: *125 + default: *127 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: + - *67 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *43 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *27 + 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: + - *67 + requestBody: + required: true + content: + application/json: + schema: *129 + examples: + default: *44 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *43 + examples: + default: *44 + '400': + description: Invalid input + '403': *27 + '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: + - *67 + - 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': *27 + '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 @@ -21430,13 +21677,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: - - *65 + - *67 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &127 + schema: &130 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -21450,7 +21697,7 @@ paths: required: - include_claim_keys examples: - default: &128 + default: &131 value: include_claim_keys: - repo @@ -21472,20 +21719,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: - - *65 + - *67 requestBody: required: true content: application/json: - schema: *127 + schema: *130 examples: - default: *128 + default: *131 responses: '201': description: Empty response content: application/json: - schema: &154 + schema: &157 title: Empty Object description: An object without any properties. type: object @@ -21515,7 +21762,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -21524,7 +21771,7 @@ paths: schema: type: object properties: - enabled_repositories: &129 + enabled_repositories: &132 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -21537,7 +21784,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: &130 + allowed_actions: &133 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -21545,12 +21792,12 @@ paths: - all - local_only - selected - selected_actions_url: &332 + selected_actions_url: &335 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: &131 + sha_pinning_required: &134 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -21581,7 +21828,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -21592,9 +21839,9 @@ paths: schema: type: object properties: - enabled_repositories: *129 - allowed_actions: *130 - sha_pinning_required: *131 + enabled_repositories: *132 + allowed_actions: *133 + sha_pinning_required: *134 required: - enabled_repositories examples: @@ -21622,13 +21869,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &336 + schema: &339 type: object properties: days: @@ -21665,12 +21912,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: &337 + schema: &340 type: object properties: days: @@ -21687,7 +21934,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -21707,13 +21954,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &132 + schema: &135 type: object properties: approval_policy: @@ -21727,7 +21974,7 @@ paths: required: - approval_policy examples: - default: &338 + default: &341 value: approval_policy: first_time_contributors '404': *6 @@ -21748,7 +21995,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -21758,7 +22005,7 @@ paths: required: true content: application/json: - schema: *132 + schema: *135 examples: default: summary: Set approval policy to first time contributors @@ -21780,13 +22027,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: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &339 + schema: &342 type: object required: - run_workflows_from_fork_pull_requests @@ -21812,7 +22059,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &133 + default: &136 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -21835,12 +22082,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: - - *65 + - *67 requestBody: required: true content: application/json: - schema: &340 + schema: &343 type: object required: - run_workflows_from_fork_pull_requests @@ -21863,7 +22110,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *133 + default: *136 responses: '204': description: Empty response for successful settings update @@ -21893,7 +22140,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: - - *65 + - *67 - *17 - *19 responses: @@ -21911,9 +22158,9 @@ paths: type: number repositories: type: array - items: *69 + items: *71 examples: - default: &137 + default: &140 value: total_count: 1 repositories: @@ -22053,7 +22300,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: - - *65 + - *67 responses: '204': description: Response @@ -22097,8 +22344,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: - - *65 - - &134 + - *67 + - &137 name: repository_id description: The unique identifier of the repository. in: path @@ -22126,8 +22373,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: Response @@ -22150,13 +22397,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &135 + schema: &138 type: object properties: github_owned_allowed: @@ -22178,7 +22425,7 @@ paths: items: type: string examples: - default: &136 + default: &139 value: github_owned_allowed: true verified_allowed: false @@ -22203,7 +22450,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -22211,9 +22458,9 @@ paths: required: false content: application/json: - schema: *135 + schema: *138 examples: - selected_actions: *136 + selected_actions: *139 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22233,7 +22480,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -22281,7 +22528,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -22308,7 +22555,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -22328,7 +22575,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: - - *65 + - *67 - *17 - *19 responses: @@ -22343,9 +22590,9 @@ paths: type: integer repositories: type: array - items: *69 + items: *71 examples: - default: *137 + default: *140 '403': *27 '404': *6 x-github: @@ -22365,7 +22612,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: - - *65 + - *67 requestBody: required: true content: @@ -22413,14 +22660,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -22440,14 +22687,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -22469,23 +22716,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &341 + schema: &344 type: object properties: - default_workflow_permissions: &138 + default_workflow_permissions: &141 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &139 + can_approve_pull_request_reviews: &142 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -22493,7 +22740,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &140 + default: &143 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -22518,7 +22765,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Success response @@ -22526,13 +22773,13 @@ paths: required: false content: application/json: - schema: &342 + schema: &345 type: object properties: - default_workflow_permissions: *138 - can_approve_pull_request_reviews: *139 + default_workflow_permissions: *141 + can_approve_pull_request_reviews: *142 examples: - default: *140 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22552,7 +22799,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: - - *65 + - *67 - *17 - *19 - name: visible_to_repository @@ -22577,7 +22824,7 @@ paths: type: number runner_groups: type: array - items: &141 + items: &144 type: object properties: id: @@ -22694,7 +22941,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: - - *65 + - *67 requestBody: required: true content: @@ -22767,9 +23014,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: &143 + default: &146 value: id: 2 name: octo-runner-group @@ -22804,8 +23051,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: - - *65 - - &142 + - *67 + - &145 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -22817,7 +23064,7 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: default: value: @@ -22853,8 +23100,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: - - *65 - - *142 + - *67 + - *145 requestBody: required: true content: @@ -22910,9 +23157,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *143 + default: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22931,8 +23178,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: - - *65 - - *142 + - *67 + - *145 responses: '204': description: Response @@ -22955,8 +23202,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: - - *65 - - *142 + - *67 + - *145 - *17 - *19 responses: @@ -22974,11 +23221,11 @@ paths: type: number runners: type: array - items: *116 + items: *118 examples: - default: *144 + default: *147 headers: - Link: *57 + Link: *59 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22998,8 +23245,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: - - *65 - - *142 + - *67 + - *145 - *19 - *17 responses: @@ -23017,9 +23264,9 @@ paths: type: number repositories: type: array - items: *145 + items: *148 examples: - default: &643 + default: &646 value: total_count: 1 repositories: @@ -23271,8 +23518,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: - - *65 - - *142 + - *67 + - *145 requestBody: required: true content: @@ -23316,9 +23563,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: - - *65 - - *142 - - *134 + - *67 + - *145 + - *137 responses: '204': description: Response @@ -23340,9 +23587,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: - - *65 - - *142 - - *134 + - *67 + - *145 + - *137 responses: '204': description: Response @@ -23365,8 +23612,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: - - *65 - - *142 + - *67 + - *145 - *17 - *19 responses: @@ -23384,7 +23631,7 @@ paths: type: number runners: type: array - items: &147 + items: &150 title: Self hosted runners description: A self hosted runner type: object @@ -23418,7 +23665,7 @@ paths: type: boolean labels: type: array - items: &150 + items: &153 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -23448,7 +23695,7 @@ paths: - busy - labels examples: - default: &148 + default: &151 value: total_count: 2 runners: @@ -23488,7 +23735,7 @@ paths: name: no-gpu type: custom headers: - Link: *57 + Link: *59 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -23507,8 +23754,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: - - *65 - - *142 + - *67 + - *145 requestBody: required: true content: @@ -23552,9 +23799,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: - - *65 - - *142 - - &146 + - *67 + - *145 + - &149 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -23582,9 +23829,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: - - *65 - - *142 - - *146 + - *67 + - *145 + - *149 responses: '204': description: Response @@ -23614,7 +23861,7 @@ paths: in: query schema: type: string - - *65 + - *67 - *17 - *19 responses: @@ -23632,11 +23879,11 @@ paths: type: integer runners: type: array - items: *147 + items: *150 examples: - default: *148 + default: *151 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23658,7 +23905,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -23666,7 +23913,7 @@ paths: application/json: schema: type: array - items: &343 + items: &346 title: Runner Application description: Runner Application type: object @@ -23691,7 +23938,7 @@ paths: - download_url - filename examples: - default: &344 + default: &347 value: - os: osx architecture: x64 @@ -23734,7 +23981,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: - - *65 + - *67 requestBody: required: true content: @@ -23777,7 +24024,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &345 + '201': &348 description: Response content: application/json: @@ -23787,7 +24034,7 @@ paths: - runner - encoded_jit_config properties: - runner: *147 + runner: *150 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -23816,7 +24063,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23844,13 +24091,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *65 + - *67 responses: '201': description: Response content: application/json: - schema: &149 + schema: &152 title: Authentication Token description: Authentication Token type: object @@ -23874,7 +24121,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *69 + items: *71 single_file: type: - string @@ -23892,7 +24139,7 @@ paths: - token - expires_at examples: - default: &346 + default: &349 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -23923,15 +24170,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *65 + - *67 responses: '201': description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: &347 + default: &350 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -23956,16 +24203,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: - - *65 - - *146 + - *67 + - *149 responses: '200': description: Response content: application/json: - schema: *147 + schema: *150 examples: - default: &348 + default: &351 value: id: 23 name: MBP @@ -24006,8 +24253,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: - - *65 - - *146 + - *67 + - *149 responses: '204': description: Response @@ -24033,10 +24280,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: - - *65 - - *146 + - *67 + - *149 responses: - '200': &151 + '200': &154 description: Response content: application/json: @@ -24050,7 +24297,7 @@ paths: type: integer labels: type: array - items: *150 + items: *153 examples: default: value: @@ -24089,8 +24336,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: - - *65 - - *146 + - *67 + - *149 requestBody: required: true content: @@ -24114,7 +24361,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -24138,8 +24385,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: - - *65 - - *146 + - *67 + - *149 requestBody: required: true content: @@ -24164,7 +24411,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -24188,10 +24435,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: - - *65 - - *146 + - *67 + - *149 responses: - '200': &349 + '200': &352 description: Response content: application/json: @@ -24205,7 +24452,7 @@ paths: type: integer labels: type: array - items: *150 + items: *153 examples: default: value: @@ -24246,9 +24493,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: - - *65 - - *146 - - &350 + - *67 + - *149 + - &353 name: name description: The name of a self-hosted runner's custom label. in: path @@ -24256,7 +24503,7 @@ paths: schema: type: string responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -24281,7 +24528,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *65 + - *67 - *17 - *19 responses: @@ -24299,7 +24546,7 @@ paths: type: integer secrets: type: array - items: &152 + items: &155 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -24351,7 +24598,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24374,13 +24621,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &362 + schema: &365 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -24415,7 +24662,7 @@ paths: - key_id - key examples: - default: &363 + default: &366 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24440,8 +24687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *65 - - &153 + - *67 + - &156 name: secret_name description: The name of the secret. in: path @@ -24453,7 +24700,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *155 examples: default: value: @@ -24483,8 +24730,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -24541,7 +24788,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -24567,8 +24814,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -24594,8 +24841,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - *19 - *17 responses: @@ -24613,9 +24860,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: &157 + default: &160 value: total_count: 1 repositories: @@ -24707,8 +24954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -24760,8 +25007,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -24794,8 +25041,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -24827,8 +25074,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *65 - - &331 + - *67 + - &334 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)." @@ -24852,7 +25099,7 @@ paths: type: integer variables: type: array - items: &155 + items: &158 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24921,7 +25168,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24942,7 +25189,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *65 + - *67 requestBody: required: true content: @@ -24990,7 +25237,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -25015,8 +25262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *65 - - &156 + - *67 + - &159 name: name description: The name of the variable. in: path @@ -25028,7 +25275,7 @@ paths: description: Response content: application/json: - schema: *155 + schema: *158 examples: default: value: @@ -25058,8 +25305,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 requestBody: required: true content: @@ -25121,8 +25368,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 responses: '204': description: Response @@ -25148,8 +25395,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 - *19 - *17 responses: @@ -25167,9 +25414,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 '409': description: Response when the visibility of the variable is not set to `selected` @@ -25195,8 +25442,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 requestBody: required: true content: @@ -25245,8 +25492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 - name: repository_id in: path required: true @@ -25280,8 +25527,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 - name: repository_id in: path required: true @@ -25322,7 +25569,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *65 + - *67 requestBody: required: true content: @@ -25441,7 +25688,7 @@ paths: type: integer deployment_records: type: array - items: &158 + items: &161 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -25486,7 +25733,7 @@ paths: description: The ID of the provenance attestation associated with the deployment record. examples: - default: &159 + default: &162 value: total_count: 1 deployment_records: @@ -25521,7 +25768,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *65 + - *67 - name: cluster in: path description: The cluster name. @@ -25659,9 +25906,9 @@ paths: type: integer deployment_records: type: array - items: *158 + items: *161 examples: - default: *159 + default: *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25681,7 +25928,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *65 + - *67 requestBody: required: true content: @@ -25845,7 +26092,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *65 + - *67 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -25871,9 +26118,9 @@ paths: - 3 deployment_records: type: array - items: *158 + items: *161 examples: - default: *159 + default: *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25893,7 +26140,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *65 + - *67 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25977,9 +26224,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *43 - - *44 - - *65 + - *45 + - *46 + - *67 requestBody: required: true content: @@ -26003,12 +26250,12 @@ paths: required: - subject_digests examples: - default: &672 + default: &675 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &673 + withPredicateType: &676 value: subject_digests: - sha256:abc123 @@ -26067,7 +26314,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &674 + default: &677 value: attestations_subject_digests: - sha256:abc: @@ -26176,7 +26423,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *65 + - *67 requestBody: required: true content: @@ -26241,7 +26488,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *65 + - *67 - name: subject_digest description: Subject Digest in: path @@ -26274,9 +26521,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *43 - - *44 - - *65 + - *45 + - *46 + - *67 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -26324,7 +26571,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *65 + - *67 - name: attestation_id description: Attestation ID in: path @@ -26360,9 +26607,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations parameters: - *17 - - *43 - - *44 - - *65 + - *45 + - *46 + - *67 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -26418,7 +26665,7 @@ paths: initiator: type: string examples: - default: &376 + default: &379 value: attestations: - bundle: @@ -26525,7 +26772,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -26537,7 +26784,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26556,8 +26803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: If the user is blocked @@ -26582,8 +26829,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -26603,8 +26850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -26629,15 +26876,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *65 + - *67 - *19 - *17 - - *51 + - *53 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &160 + schema: &163 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -26663,7 +26910,7 @@ paths: application/json: schema: type: array - items: &161 + items: &164 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -26694,7 +26941,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &180 + items: &183 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -26771,7 +27018,7 @@ paths: parent: anyOf: - type: 'null' - - &235 + - &238 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -26907,7 +27154,7 @@ paths: - string - 'null' format: date-time - state: *160 + state: *163 contact_link: description: The contact link of the campaign. type: @@ -27003,9 +27250,9 @@ paths: closed_at: state: open headers: - Link: *57 + Link: *59 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27029,7 +27276,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -27130,9 +27377,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *164 examples: - default: &162 + default: &165 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -27181,7 +27428,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27203,7 +27450,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *65 + - *67 - name: campaign_number description: The campaign number. in: path @@ -27215,16 +27462,16 @@ paths: description: Response content: application/json: - schema: *161 + schema: *164 examples: - default: *162 + default: *165 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27245,7 +27492,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *65 + - *67 - name: campaign_number description: The campaign number. in: path @@ -27295,7 +27542,7 @@ paths: - string - 'null' format: uri - state: *160 + state: *163 examples: default: value: @@ -27305,9 +27552,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *164 examples: - default: *162 + default: *165 '400': description: Bad Request content: @@ -27319,7 +27566,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27340,7 +27587,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *65 + - *67 - name: campaign_number description: The campaign number. in: path @@ -27351,7 +27598,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27373,18 +27620,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *65 - - &400 + - *67 + - &403 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: &170 + schema: &173 type: string description: The name of the tool used to generate the code scanning analysis. - - &401 + - &404 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 @@ -27392,23 +27639,23 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &171 + schema: &174 type: - string - 'null' description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *43 - - *44 + - *45 + - *46 - *19 - *17 - - *51 + - *53 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &403 + schema: &406 type: string description: State of a code scanning alert. enum: @@ -27431,7 +27678,7 @@ paths: be returned. in: query required: false - schema: &404 + schema: &407 type: string description: Severity of a code scanning alert. enum: @@ -27460,18 +27707,18 @@ paths: items: type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 - instances_url: &405 + number: *166 + created_at: *167 + updated_at: *168 + url: *169 + html_url: *170 + instances_url: &408 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &172 + state: &175 type: - string - 'null' @@ -27481,13 +27728,13 @@ paths: - dismissed - fixed - - fixed_at: *168 + fixed_at: *171 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 - dismissed_reason: &406 + dismissed_at: *172 + dismissed_reason: &409 type: - string - 'null' @@ -27498,14 +27745,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &407 + dismissed_comment: &410 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &408 + rule: &411 type: object properties: id: @@ -27566,43 +27813,43 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &409 + tool: &412 type: object properties: - name: *170 + name: *173 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *171 - most_recent_instance: &410 + guid: *174 + most_recent_instance: &413 type: object properties: - ref: &402 + ref: &405 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &420 + analysis_key: &423 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: &421 + environment: &424 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: &422 + category: &425 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: *172 + state: *175 commit_sha: type: string message: @@ -27610,7 +27857,7 @@ paths: properties: text: type: string - location: &423 + location: &426 type: object description: Describe a region within a file for the alert. properties: @@ -27631,7 +27878,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: &424 + items: &427 type: - string - 'null' @@ -27643,7 +27890,7 @@ paths: - test - library - - repository: *56 + repository: *58 dismissal_approved_by: anyOf: - type: 'null' @@ -27895,9 +28142,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: *57 + Link: *59 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27919,7 +28166,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *65 + - *67 - name: target_type in: query description: The target type of the code security configuration @@ -27938,8 +28185,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -27947,7 +28194,7 @@ paths: application/json: schema: type: array - items: *45 + items: *47 examples: default: value: @@ -28030,7 +28277,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *65 + - *67 requestBody: required: true content: @@ -28117,7 +28364,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *49 + code_scanning_options: *51 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -28126,7 +28373,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *48 + code_scanning_default_setup_options: *50 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -28265,9 +28512,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *45 + schema: *47 examples: - default: *173 + default: *176 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28289,15 +28536,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *174 + schema: *177 examples: - default: *175 + default: *178 '304': *35 '403': *27 '404': *6 @@ -28323,7 +28570,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *65 + - *67 requestBody: required: true content: @@ -28349,11 +28596,11 @@ paths: - 32 - 91 responses: - '204': *176 + '204': *179 '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28375,16 +28622,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 responses: '200': description: Response content: application/json: - schema: *45 + schema: *47 examples: - default: *173 + default: *176 '304': *35 '403': *27 '404': *6 @@ -28408,8 +28655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 requestBody: required: true content: @@ -28496,8 +28743,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *48 - code_scanning_options: *49 + code_scanning_default_setup_options: *50 + code_scanning_options: *51 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -28622,7 +28869,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *45 + schema: *47 examples: default: value: @@ -28681,14 +28928,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 responses: - '204': *176 + '204': *179 '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28712,8 +28959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *65 - - *47 + - *67 + - *49 requestBody: required: true content: @@ -28776,8 +29023,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: - - *65 - - *47 + - *67 + - *49 requestBody: required: true content: @@ -28817,12 +29064,12 @@ paths: - none - private_and_internal - public - configuration: *45 + configuration: *47 examples: default: value: default_for_new_repos: all - configuration: *173 + configuration: *176 '403': *27 '404': *6 x-github: @@ -28846,8 +29093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 - 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)." @@ -28856,8 +29103,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -28875,13 +29122,13 @@ paths: application/json: schema: type: array - items: *177 + items: *180 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *178 + repository: *181 '403': *27 '404': *6 x-github: @@ -28905,7 +29152,7 @@ paths: parameters: - *17 - *19 - - *65 + - *67 responses: '200': description: Response @@ -28921,7 +29168,7 @@ paths: type: integer codespaces: type: array - items: &225 + items: &228 type: object title: Codespace description: A codespace. @@ -28952,11 +29199,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *145 + repository: *148 machine: anyOf: - type: 'null' - - &436 + - &439 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -29243,7 +29490,7 @@ paths: - pulls_url - recent_folders examples: - default: &226 + default: &229 value: total_count: 3 codespaces: @@ -29653,7 +29900,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -29675,7 +29922,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *65 + - *67 deprecated: true requestBody: required: true @@ -29719,7 +29966,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29742,7 +29989,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *65 + - *67 deprecated: true requestBody: required: true @@ -29774,7 +30021,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29797,7 +30044,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *65 + - *67 requestBody: required: true content: @@ -29828,7 +30075,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29849,7 +30096,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *65 + - *67 - *17 - *19 responses: @@ -29867,7 +30114,7 @@ paths: type: integer secrets: type: array - items: &179 + items: &182 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -29908,7 +30155,7 @@ paths: - updated_at - visibility examples: - default: &437 + default: &440 value: total_count: 2 secrets: @@ -29921,7 +30168,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29940,13 +30187,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &438 + schema: &441 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -29981,7 +30228,7 @@ paths: - key_id - key examples: - default: &439 + default: &442 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -30004,23 +30251,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '200': description: Response content: application/json: - schema: *179 + schema: *182 examples: - default: &441 + default: &444 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -30040,8 +30287,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -30096,7 +30343,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -30122,8 +30369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -30148,8 +30395,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - *19 - *17 responses: @@ -30167,9 +30414,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 '404': *6 x-github: githubCloudOnly: false @@ -30191,8 +30438,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -30242,8 +30489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -30276,8 +30523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -30316,7 +30563,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: - - *65 + - *67 responses: '200': description: OK @@ -30425,7 +30672,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30457,7 +30704,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: - - *65 + - *67 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -30480,7 +30727,7 @@ paths: currently being billed. seats: type: array - items: &228 + items: &231 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -30493,13 +30740,13 @@ paths: organization: anyOf: - type: 'null' - - *63 + - *65 assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *180 - - *58 + - *183 + - *60 type: - 'null' - object @@ -30629,8 +30876,8 @@ paths: type: User site_admin: false headers: - Link: *57 - '500': *105 + Link: *59 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30663,7 +30910,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: - - *65 + - *67 requestBody: content: application/json: @@ -30705,7 +30952,7 @@ paths: default: value: seats_created: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30741,7 +30988,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: - - *65 + - *67 requestBody: content: application/json: @@ -30783,7 +31030,7 @@ paths: default: value: seats_cancelled: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30821,7 +31068,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: - - *65 + - *67 requestBody: content: application/json: @@ -30862,7 +31109,7 @@ paths: default: value: seats_created: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30898,7 +31145,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: - - *65 + - *67 requestBody: content: application/json: @@ -30940,7 +31187,7 @@ paths: default: value: seats_cancelled: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30980,7 +31227,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: - - *65 + - *67 responses: '200': description: OK @@ -31000,7 +31247,7 @@ paths: value: octo-repo: - "/src/some-dir/kernel.rs" - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -31033,7 +31280,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: - - *65 + - *67 requestBody: description: The content exclusion rules to set required: true @@ -31085,7 +31332,7 @@ paths: default: value: message: Content exclusion rules updated successfully. - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -31124,7 +31371,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *65 + - *67 - 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`). @@ -31156,7 +31403,7 @@ paths: application/json: schema: type: array - items: &308 + items: &311 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -31471,7 +31718,7 @@ paths: - date additionalProperties: true examples: - default: &309 + default: &312 value: - date: '2024-06-24' total_active_users: 24 @@ -31570,10 +31817,10 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *105 + '500': *107 '403': *27 '404': *6 - '422': &310 + '422': &313 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -31600,12 +31847,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *65 - - *181 - - *182 - - *183 + - *67 - *184 - *185 + - *186 + - *187 + - *188 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -31635,7 +31882,7 @@ paths: enum: - patch - deployment - - *186 + - *189 - name: runtime_risk in: query description: |- @@ -31644,11 +31891,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *187 - - *188 - - *51 - - *43 - - *44 + - *190 + - *191 + - *53 + - *45 + - *46 - *17 responses: '200': @@ -31657,9 +31904,9 @@ paths: application/json: schema: type: array - items: *189 + items: *192 examples: - default: *190 + default: *193 '304': *35 '400': *14 '403': *27 @@ -31685,7 +31932,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *65 + - *67 - *17 - *19 responses: @@ -31703,7 +31950,7 @@ paths: type: integer secrets: type: array - items: &191 + items: &194 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -31755,7 +32002,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31776,13 +32023,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &467 + schema: &470 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -31801,7 +32048,7 @@ paths: - key_id - key examples: - default: &468 + default: &471 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31824,14 +32071,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '200': description: Response content: application/json: - schema: *191 + schema: *194 examples: default: value: @@ -31859,8 +32106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -31917,7 +32164,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -31941,8 +32188,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -31966,8 +32213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - *19 - *17 responses: @@ -31985,9 +32232,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32008,8 +32255,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -32059,8 +32306,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -32091,8 +32338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -32122,7 +32369,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: - - *65 + - *67 responses: '200': description: Response @@ -32130,7 +32377,7 @@ paths: application/json: schema: type: array - items: &237 + items: &240 title: Package description: A software package type: object @@ -32183,7 +32430,7 @@ paths: repository: anyOf: - type: 'null' - - *145 + - *148 created_at: type: string format: date-time @@ -32201,7 +32448,7 @@ paths: - created_at - updated_at examples: - default: &238 + default: &241 value: - id: 197 name: hello_docker @@ -32279,7 +32526,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *65 + - *67 - *17 - *19 responses: @@ -32289,7 +32536,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: 200-response: value: @@ -32361,7 +32608,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *65 + - *67 - *17 - *19 responses: @@ -32371,7 +32618,7 @@ paths: application/json: schema: type: array - items: &214 + items: &217 title: Organization Invitation description: Organization Invitation type: object @@ -32425,7 +32672,7 @@ paths: - invitation_teams_url - node_id examples: - default: &215 + default: &218 value: - id: 1 login: monalisa @@ -32458,7 +32705,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -32482,7 +32729,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *65 + - *67 - *17 - *19 responses: @@ -32492,7 +32739,7 @@ paths: application/json: schema: type: array - items: &192 + items: &195 title: Org Hook description: Org Hook type: object @@ -32592,7 +32839,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -32615,7 +32862,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *65 + - *67 requestBody: required: true content: @@ -32677,9 +32924,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: &193 + default: &196 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -32726,8 +32973,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *65 - - &194 + - *67 + - &197 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. @@ -32740,9 +32987,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *193 + default: *196 '404': *6 x-github: githubCloudOnly: false @@ -32769,8 +33016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 requestBody: required: false content: @@ -32816,7 +33063,7 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: default: value: @@ -32857,8 +33104,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 responses: '204': description: Response @@ -32885,8 +33132,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *65 - - *194 + - *67 + - *197 responses: '200': description: Response @@ -32916,8 +33163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *65 - - *194 + - *67 + - *197 requestBody: required: false content: @@ -32967,10 +33214,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 - *17 - - *195 + - *198 responses: '200': description: Response @@ -32978,9 +33225,9 @@ paths: application/json: schema: type: array - items: *196 + items: *199 examples: - default: *197 + default: *200 '400': *14 '422': *15 x-github: @@ -33005,17 +33252,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 - *16 responses: '200': description: Response content: application/json: - schema: *198 + schema: *201 examples: - default: *199 + default: *202 '400': *14 '422': *15 x-github: @@ -33040,8 +33287,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 - *16 responses: '202': *37 @@ -33070,8 +33317,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 responses: '204': description: Response @@ -33093,8 +33340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *65 - - &204 + - *67 + - &207 name: actor_type in: path description: The type of the actor @@ -33107,14 +33354,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &205 + - &208 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &200 + - &203 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`.' @@ -33122,7 +33369,7 @@ paths: required: true schema: type: string - - &201 + - &204 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) @@ -33133,7 +33380,7 @@ paths: type: string - *19 - *17 - - *51 + - *53 - name: sort description: The property to sort the results by. in: query @@ -33216,13 +33463,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *65 - - *200 - - *201 + - *67 + - *203 + - *204 - *19 - *17 - - *51 - - &210 + - *53 + - &213 name: sort description: The property to sort the results by. in: query @@ -33300,15 +33547,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *65 - - *200 - - *201 + - *67 + - *203 + - *204 responses: '200': description: Response content: application/json: - schema: &202 + schema: &205 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -33324,7 +33571,7 @@ paths: type: integer format: int64 examples: - default: &203 + default: &206 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -33344,24 +33591,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *65 - - &206 + - *67 + - &209 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *200 - - *201 + - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *202 + schema: *205 examples: - default: *203 + default: *206 x-github: enabledForGitHubApps: true category: orgs @@ -33379,19 +33626,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *65 - - *200 - - *201 + - *67 + - *203 - *204 - - *205 + - *207 + - *208 responses: '200': description: Response content: application/json: - schema: *202 + schema: *205 examples: - default: *203 + default: *206 x-github: enabledForGitHubApps: true category: orgs @@ -33408,10 +33655,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *65 - - *200 - - *201 - - &207 + - *67 + - *203 + - *204 + - &210 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -33424,7 +33671,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &211 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -33440,7 +33687,7 @@ paths: type: integer format: int64 examples: - default: &209 + default: &212 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -33476,19 +33723,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *65 - - *206 - - *200 - - *201 - - *207 + - *67 + - *209 + - *203 + - *204 + - *210 responses: '200': description: Response content: application/json: - schema: *208 + schema: *211 examples: - default: *209 + default: *212 x-github: enabledForGitHubApps: true category: orgs @@ -33505,20 +33752,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *65 - - *204 - - *205 - - *200 - - *201 + - *67 - *207 + - *208 + - *203 + - *204 + - *210 responses: '200': description: Response content: application/json: - schema: *208 + schema: *211 examples: - default: *209 + default: *212 x-github: enabledForGitHubApps: true category: orgs @@ -33535,14 +33782,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *65 - - *206 - - *200 - - *201 + - *67 + - *209 + - *203 + - *204 - *19 - *17 - - *51 - - *210 + - *53 + - *213 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -33618,7 +33865,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *65 + - *67 responses: '200': description: Response @@ -33626,7 +33873,7 @@ paths: application/json: schema: *20 examples: - default: &506 + default: &509 value: id: 1 account: @@ -33695,7 +33942,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -33765,7 +34012,7 @@ paths: suspended_at: suspended_by: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33784,7 +34031,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -33792,12 +34039,12 @@ paths: application/json: schema: anyOf: - - &212 + - &215 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &211 + limit: &214 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -33825,7 +34072,7 @@ paths: properties: {} additionalProperties: false examples: - default: &213 + default: &216 value: limit: collaborators_only origin: organization @@ -33849,18 +34096,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: &507 + schema: &510 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *211 + limit: *214 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -33885,9 +34132,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *215 examples: - default: *213 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -33905,7 +34152,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -33929,7 +34176,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *65 + - *67 - *17 - *19 - name: role @@ -33963,11 +34210,11 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -33988,7 +34235,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *65 + - *67 requestBody: required: false content: @@ -34042,7 +34289,7 @@ paths: description: Response content: application/json: - schema: *214 + schema: *217 examples: default: value: @@ -34096,8 +34343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *65 - - &216 + - *67 + - &219 name: invitation_id description: The unique identifier of the invitation. in: path @@ -34127,8 +34374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *65 - - *216 + - *67 + - *219 - *17 - *19 responses: @@ -34138,9 +34385,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: &236 + default: &239 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -34156,7 +34403,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -34175,7 +34422,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -34183,7 +34430,7 @@ paths: application/json: schema: type: array - items: &217 + items: &220 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -34333,7 +34580,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -34426,9 +34673,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *220 examples: - default: &218 + default: &221 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -34483,8 +34730,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *65 - - &219 + - *67 + - &222 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -34585,9 +34832,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *220 examples: - default: *218 + default: *221 '404': *6 '422': *7 x-github: @@ -34611,10 +34858,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *65 - - *219 + - *67 + - *222 responses: - '204': *176 + '204': *179 '404': *6 '422': *7 x-github: @@ -34634,7 +34881,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -34642,7 +34889,7 @@ paths: application/json: schema: type: array - items: *220 + items: *223 examples: default: value: @@ -34680,7 +34927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -34730,9 +34977,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: &221 + default: &224 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -34764,8 +35011,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *65 - - &222 + - *67 + - &225 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -34821,9 +35068,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '404': *6 '422': *7 x-github: @@ -34847,8 +35094,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *65 - - *222 + - *67 + - *225 responses: '204': description: Response @@ -34881,7 +35128,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *65 + - *67 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -34911,7 +35158,7 @@ paths: - closed - all default: open - - *223 + - *226 - name: type description: Can be the name of an issue type. in: query @@ -34929,8 +35176,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - *17 - *19 responses: @@ -34940,11 +35187,11 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *224 + default: *227 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -34964,7 +35211,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *65 + - *67 - 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) @@ -35002,9 +35249,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -35022,8 +35269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response if requester is an organization member and user is @@ -35057,8 +35304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -35084,8 +35331,8 @@ paths: parameters: - *17 - *19 - - *65 - - *61 + - *67 + - *63 responses: '200': description: Response @@ -35101,11 +35348,11 @@ paths: type: integer codespaces: type: array - items: *225 + items: *228 examples: - default: *226 + default: *229 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -35128,9 +35375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *65 - - *61 - - &227 + - *67 + - *63 + - &230 name: codespace_name in: path required: true @@ -35140,7 +35387,7 @@ paths: responses: '202': *37 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -35163,17 +35410,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *65 - - *61 - - *227 + - *67 + - *63 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: &435 + default: &438 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -35315,7 +35562,7 @@ paths: recent_folders: [] template: '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -35346,14 +35593,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: - - *65 - - *61 + - *67 + - *63 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *228 + schema: *231 examples: default: value: @@ -35397,7 +35644,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -35422,14 +35669,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '200': description: Response content: application/json: - schema: &229 + schema: &232 title: Org Membership description: Org Membership type: object @@ -35478,7 +35725,7 @@ paths: format: uri examples: - https://api.github.com/orgs/octocat - organization: *63 + organization: *65 user: anyOf: - type: 'null' @@ -35498,7 +35745,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &230 + response-if-user-has-an-active-admin-membership-with-organization: &233 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -35570,8 +35817,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 requestBody: required: false content: @@ -35599,9 +35846,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - response-if-user-already-had-membership-with-organization: *230 + response-if-user-already-had-membership-with-organization: *233 '422': *15 '403': *27 x-github: @@ -35625,8 +35872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -35651,7 +35898,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *65 + - *67 - *17 - *19 - name: exclude @@ -35673,7 +35920,7 @@ paths: application/json: schema: type: array - items: &231 + items: &234 title: Migration description: A migration. type: object @@ -35715,7 +35962,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *69 + items: *71 url: type: string format: uri @@ -35914,7 +36161,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35930,7 +36177,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *65 + - *67 requestBody: required: true content: @@ -36011,7 +36258,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -36189,8 +36436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *65 - - &232 + - *67 + - &235 name: migration_id description: The unique identifier of the migration. in: path @@ -36218,7 +36465,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -36387,8 +36634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *65 - - *232 + - *67 + - *235 responses: '302': description: Response @@ -36409,8 +36656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *65 - - *232 + - *67 + - *235 responses: '204': description: Response @@ -36433,9 +36680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *65 - - *232 - - &655 + - *67 + - *235 + - &658 name: repo_name description: repo_name parameter in: path @@ -36462,8 +36709,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *65 - - *232 + - *67 + - *235 - *17 - *19 responses: @@ -36473,9 +36720,9 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: &243 + default: &246 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -36588,7 +36835,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -36614,7 +36861,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response - list of organization roles @@ -36630,7 +36877,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &234 + items: &237 title: Organization Role description: Organization roles type: object @@ -36779,8 +37026,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response @@ -36805,9 +37052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *65 - *67 - - &233 + - *69 + - &236 name: role_id description: The unique identifier of the role. in: path @@ -36842,9 +37089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *65 - *67 - - *233 + - *69 + - *236 responses: '204': description: Response @@ -36869,8 +37116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -36895,9 +37142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *65 - - *61 - - *233 + - *67 + - *63 + - *236 responses: '204': description: Response @@ -36927,9 +37174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *65 - - *61 - - *233 + - *67 + - *63 + - *236 responses: '204': description: Response @@ -36957,14 +37204,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *65 - - *233 + - *67 + - *236 responses: '200': description: Response content: application/json: - schema: *234 + schema: *237 examples: default: value: @@ -37014,8 +37261,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: - - *65 - - *233 + - *67 + - *236 - *17 - *19 responses: @@ -37094,7 +37341,7 @@ paths: parent: anyOf: - type: 'null' - - *235 + - *238 type: description: The ownership type of the team type: string @@ -37127,9 +37374,9 @@ paths: - type - parent examples: - default: *236 + default: *239 headers: - Link: *57 + Link: *59 '404': description: Response if the organization or role does not exist. '422': @@ -37156,8 +37403,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: - - *65 - - *233 + - *67 + - *236 - *17 - *19 responses: @@ -37186,7 +37433,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *235 + items: *238 name: type: - string @@ -37303,9 +37550,9 @@ paths: - type - url examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '404': description: Response if the organization or role does not exist. '422': @@ -37327,7 +37574,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *65 + - *67 - 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) @@ -37354,9 +37601,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37379,8 +37626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *65 - - *61 + - *67 + - *63 requestBody: required: false content: @@ -37437,8 +37684,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -37495,8 +37742,8 @@ paths: - docker - nuget - container - - *65 - - &656 + - *67 + - &659 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -37532,12 +37779,12 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '403': *27 '401': *23 - '400': &658 + '400': &661 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -37559,7 +37806,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &239 + - &242 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 @@ -37577,20 +37824,20 @@ paths: - docker - nuget - container - - &240 + - &243 name: package_name description: The name of the package. in: path required: true schema: type: string - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: default: value: @@ -37642,9 +37889,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *239 - - *240 - - *65 + - *242 + - *243 + - *67 responses: '204': description: Response @@ -37676,9 +37923,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *239 - - *240 - - *65 + - *242 + - *243 + - *67 - name: token description: package token schema: @@ -37710,9 +37957,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: - - *239 - - *240 - - *65 + - *242 + - *243 + - *67 - *19 - *17 - name: state @@ -37732,7 +37979,7 @@ paths: application/json: schema: type: array - items: &241 + items: &244 title: Package Version description: A version of a software package type: object @@ -37867,10 +38114,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *239 - - *240 - - *65 - - &242 + - *242 + - *243 + - *67 + - &245 name: package_version_id description: Unique identifier of the package version. in: path @@ -37882,7 +38129,7 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -37918,10 +38165,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *239 - - *240 - - *65 - *242 + - *243 + - *67 + - *245 responses: '204': description: Response @@ -37953,10 +38200,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *239 - - *240 - - *65 - *242 + - *243 + - *67 + - *245 responses: '204': description: Response @@ -37983,10 +38230,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: - - *65 + - *67 - *17 - *19 - - &244 + - &247 name: sort description: The property by which to sort the results. in: query @@ -37996,8 +38243,8 @@ paths: enum: - created_at default: created_at - - *51 - - &245 + - *53 + - &248 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -38009,7 +38256,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &246 + - &249 name: repository description: The name of the repository to use to filter the results. in: query @@ -38018,7 +38265,7 @@ paths: type: string examples: - Hello-World - - &247 + - &250 name: permission description: The permission to use to filter the results. in: query @@ -38027,7 +38274,7 @@ paths: type: string examples: - issues_read - - &248 + - &251 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) @@ -38037,7 +38284,7 @@ paths: schema: type: string format: date-time - - &249 + - &252 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) @@ -38047,7 +38294,7 @@ paths: schema: type: string format: date-time - - &250 + - &253 name: token_id description: The ID of the token in: query @@ -38060,7 +38307,7 @@ paths: examples: - token_id[]=1,token_id[]=2 responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 @@ -38195,7 +38442,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38215,7 +38462,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: - - *65 + - *67 requestBody: required: true content: @@ -38257,7 +38504,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 @@ -38282,7 +38529,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: - - *65 + - *67 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -38319,11 +38566,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38344,7 +38591,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: - - *65 + - *67 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -38355,7 +38602,7 @@ paths: - *17 - *19 responses: - '500': *105 + '500': *107 '404': *6 '403': *27 '200': @@ -38364,11 +38611,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38389,19 +38636,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: - - *65 + - *67 - *17 - *19 - - *244 - - *51 - - *245 - - *246 - *247 + - *53 - *248 - *249 - *250 + - *251 + - *252 + - *253 responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 @@ -38530,7 +38777,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38550,7 +38797,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: - - *65 + - *67 requestBody: required: true content: @@ -38585,7 +38832,7 @@ paths: - 1296269 - 1296280 responses: - '500': *105 + '500': *107 '404': *6 '202': *37 '403': *27 @@ -38610,7 +38857,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: - - *65 + - *67 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -38638,9 +38885,9 @@ paths: value: action: revoke responses: - '500': *105 + '500': *107 '404': *6 - '204': *176 + '204': *179 '403': *27 '422': *15 x-github: @@ -38662,7 +38909,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: - - *65 + - *67 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -38672,7 +38919,7 @@ paths: - *17 - *19 responses: - '500': *105 + '500': *107 '404': *6 '403': *27 '200': @@ -38681,11 +38928,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38707,7 +38954,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -38725,7 +38972,7 @@ paths: type: integer configurations: type: array - items: &251 + items: &254 title: Organization private registry description: Private registry configuration for an organization type: object @@ -38808,7 +39055,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *57 + Link: *59 '400': *14 '404': *6 x-github: @@ -38830,7 +39077,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -39021,7 +39268,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &252 + org-private-registry-with-selected-visibility: &255 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -39062,7 +39309,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: - - *65 + - *67 responses: '200': description: Response @@ -39090,7 +39337,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -39112,16 +39359,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *65 - - *153 + - *67 + - *156 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *251 + schema: *254 examples: - default: *252 + default: *255 '404': *6 x-github: githubCloudOnly: false @@ -39142,8 +39389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -39248,8 +39495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -39272,15 +39519,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *65 + - *67 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -39289,7 +39536,7 @@ paths: application/json: schema: type: array - items: &253 + items: &256 title: Projects v2 Project description: A projects v2 project type: object @@ -39363,7 +39610,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &741 + - &744 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -39448,7 +39695,7 @@ paths: - deleted_at - deleted_by examples: - default: &254 + default: &257 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -39531,7 +39778,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -39551,24 +39798,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &255 + - &258 name: project_number description: The project's number. in: path required: true schema: type: integer - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *253 + schema: *256 examples: - default: *254 + default: *257 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -39588,8 +39835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *65 - - *255 + - *67 + - *258 requestBody: required: true description: Details of the draft item to create in the project. @@ -39623,7 +39870,7 @@ paths: description: Response content: application/json: - schema: &260 + schema: &263 title: Projects v2 Item description: An item belonging to a project type: object @@ -39636,8 +39883,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *73 - - &450 + - *75 + - &453 title: Pull Request Simple description: Pull Request Simple type: object @@ -39757,7 +40004,7 @@ paths: milestone: anyOf: - type: 'null' - - *256 + - *259 active_lock_reason: type: - string @@ -39806,7 +40053,7 @@ paths: items: *4 requested_teams: type: array - items: *180 + items: *183 head: type: object properties: @@ -39814,7 +40061,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: @@ -39834,7 +40081,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: @@ -39850,7 +40097,7 @@ paths: _links: type: object properties: - comments: &257 + comments: &260 title: Link description: Hypermedia Link type: object @@ -39859,13 +40106,13 @@ paths: type: string required: - href - commits: *257 - statuses: *257 - html: *257 - issue: *257 - review_comments: *257 - review_comment: *257 - self: *257 + commits: *260 + statuses: *260 + html: *260 + issue: *260 + review_comments: *260 + review_comment: *260 + self: *260 required: - comments - commits @@ -39875,8 +40122,8 @@ paths: - review_comments - review_comment - self - author_association: *70 - auto_merge: &552 + author_association: *72 + auto_merge: &555 title: Auto merge description: The status of auto merging a pull request. type: @@ -39978,7 +40225,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &259 + content_type: &262 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -40022,7 +40269,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &261 + draft_issue: &264 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -40096,11 +40343,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *255 - - *65 + - *258 + - *67 - *17 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -40108,7 +40355,7 @@ paths: application/json: schema: type: array - items: &258 + items: &261 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -40261,7 +40508,7 @@ paths: - updated_at - project_url examples: - default: &677 + default: &680 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40372,7 +40619,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -40391,8 +40638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *255 - - *65 + - *258 + - *67 requestBody: required: true content: @@ -40438,7 +40685,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &678 + items: &681 type: object properties: name: @@ -40475,7 +40722,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &679 + iteration_configuration: &682 type: object description: The configuration for iteration fields. properties: @@ -40525,7 +40772,7 @@ paths: value: name: Due date data_type: date - single_select_field: &680 + single_select_field: &683 summary: Create a single select field value: name: Priority @@ -40552,7 +40799,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &681 + iteration_field: &684 summary: Create an iteration field value: name: Sprint @@ -40576,9 +40823,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *258 + schema: *261 examples: - text_field: &682 + text_field: &685 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -40587,7 +40834,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: &683 + number_field: &686 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -40596,7 +40843,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: &684 + date_field: &687 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -40605,7 +40852,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: &685 + single_select_field: &688 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40639,7 +40886,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &686 + iteration_field: &689 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -40684,23 +40931,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *255 - - &687 + - *258 + - &690 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *258 + schema: *261 examples: - default: &688 + default: &691 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40735,7 +40982,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -40756,8 +41003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *255 - - *65 + - *258 + - *67 - 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. @@ -40779,8 +41026,8 @@ paths: maxItems: 50 items: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -40789,7 +41036,7 @@ paths: application/json: schema: type: array - items: &262 + items: &265 title: Projects v2 Item description: An item belonging to a project type: object @@ -40806,7 +41053,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *259 + content_type: *262 content: type: - object @@ -40856,7 +41103,7 @@ paths: - updated_at - archived_at examples: - default: &263 + default: &266 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -41533,7 +41780,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -41553,8 +41800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *65 - - *255 + - *67 + - *258 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -41624,22 +41871,22 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *261 + value: *264 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *261 + value: *264 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *261 + value: *264 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *261 + value: *264 '304': *35 '403': *27 '401': *23 @@ -41659,9 +41906,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *255 - - *65 - - &264 + - *258 + - *67 + - &267 name: item_id description: The unique identifier of the project item. in: path @@ -41687,11 +41934,11 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -41710,9 +41957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *255 - - *65 - - *264 + - *258 + - *67 + - *267 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -41785,13 +42032,13 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - text_field: *263 - number_field: *263 - date_field: *263 - single_select_field: *263 - iteration_field: *263 + text_field: *266 + number_field: *266 + date_field: *266 + single_select_field: *266 + iteration_field: *266 '401': *23 '403': *27 '404': *6 @@ -41811,9 +42058,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *255 - - *65 - - *264 + - *258 + - *67 + - *267 responses: '204': description: Response @@ -41836,8 +42083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *65 - - *255 + - *67 + - *258 requestBody: required: true content: @@ -41911,7 +42158,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &669 + schema: &672 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -42015,7 +42262,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &265 + value: &268 value: id: 1 number: 1 @@ -42061,10 +42308,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *265 + value: *268 roadmap_view: summary: Response for creating a roadmap view - value: *265 + value: *268 '304': *35 '403': *27 '401': *23 @@ -42092,9 +42339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *255 - - *65 - - &689 + - *258 + - *67 + - &692 name: view_number description: The number that identifies the project view. in: path @@ -42116,8 +42363,8 @@ paths: maxItems: 50 items: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -42126,11 +42373,11 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -42153,7 +42400,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -42161,7 +42408,7 @@ paths: application/json: schema: type: array - items: &266 + items: &269 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -42239,7 +42486,7 @@ paths: - property_name - value_type examples: - default: &267 + default: &270 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -42288,7 +42535,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -42299,7 +42546,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *266 + items: *269 minItems: 1 maxItems: 100 required: @@ -42329,9 +42576,9 @@ paths: application/json: schema: type: array - items: *266 + items: *269 examples: - default: *267 + default: *270 '403': *27 '404': *6 x-github: @@ -42352,8 +42599,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *65 - - &268 + - *67 + - &271 name: custom_property_name description: The custom property name in: path @@ -42365,9 +42612,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: &269 + default: &272 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -42401,8 +42648,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: - - *65 - - *268 + - *67 + - *271 requestBody: required: true content: @@ -42482,9 +42729,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *269 + default: *272 '403': *27 '404': *6 x-github: @@ -42507,10 +42754,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *65 - - *268 + - *67 + - *271 responses: - '204': *176 + '204': *179 '403': *27 '404': *6 x-github: @@ -42531,7 +42778,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *65 + - *67 - *17 - *19 - name: repository_query @@ -42572,7 +42819,7 @@ paths: - octocat/Hello-World properties: type: array - items: &270 + items: &273 title: Custom Property Value description: Custom property name and associated value type: object @@ -42614,7 +42861,7 @@ paths: - property_name: team value: octocat headers: - Link: *57 + Link: *59 '403': *27 '404': *6 x-github: @@ -42642,7 +42889,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: - - *65 + - *67 requestBody: required: true content: @@ -42662,7 +42909,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *270 + items: *273 required: - repository_names - properties @@ -42703,7 +42950,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *65 + - *67 - *17 - *19 responses: @@ -42715,9 +42962,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42734,8 +42981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response if user is a public member @@ -42759,8 +43006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -42781,8 +43028,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -42806,7 +43053,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *65 + - *67 - name: type description: Specifies the types of repositories you want returned. in: query @@ -42852,11 +43099,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42875,7 +43122,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *65 + - *67 requestBody: required: true content: @@ -43057,7 +43304,7 @@ paths: description: Response content: application/json: - schema: &318 + schema: &321 title: Full Repository description: Full Repository type: object @@ -43420,7 +43667,7 @@ paths: template_repository: anyOf: - type: 'null' - - *69 + - *71 temp_clone_token: type: - string @@ -43520,13 +43767,13 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 organization: anyOf: - type: 'null' - *4 - parent: *69 - source: *69 + parent: *71 + source: *71 forks: type: integer master_branch: @@ -43539,7 +43786,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &455 + code_of_conduct: &458 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -43569,7 +43816,7 @@ paths: - key - name - html_url - security_and_analysis: *271 + security_and_analysis: *274 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -43653,7 +43900,7 @@ paths: - network_count - subscribers_count examples: - default: &320 + default: &323 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -44171,10 +44418,10 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - *17 - *19 - - &574 + - &577 name: targets description: | A comma-separated list of rule targets to filter by. @@ -44193,7 +44440,7 @@ paths: application/json: schema: type: array - items: &298 + items: &301 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -44228,7 +44475,7 @@ paths: source: type: string description: The name of the source - enforcement: &274 + enforcement: &277 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -44241,7 +44488,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &275 + items: &278 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -44312,7 +44559,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &272 + - &275 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -44336,7 +44583,7 @@ paths: match. items: type: string - - &276 + - &279 title: Organization ruleset conditions type: object description: |- @@ -44350,7 +44597,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *272 + - *275 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -44384,7 +44631,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *272 + - *275 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -44406,7 +44653,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *272 + - *275 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -44419,7 +44666,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &273 + items: &276 title: Repository ruleset property targeting definition type: object @@ -44452,7 +44699,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *273 + items: *276 required: - repository_property type: @@ -44460,12 +44707,12 @@ paths: - object rules: type: array - items: &575 + items: &578 title: Repository Rule type: object description: A repository rule. oneOf: - - &277 + - &280 title: creation description: Only allow users with bypass permission to create matching refs. @@ -44477,7 +44724,7 @@ paths: type: string enum: - creation - - &278 + - &281 title: update description: Only allow users with bypass permission to update matching refs. @@ -44498,7 +44745,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &279 + - &282 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -44510,7 +44757,7 @@ paths: type: string enum: - deletion - - &280 + - &283 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -44522,7 +44769,7 @@ paths: type: string enum: - required_linear_history - - &573 + - &576 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -44600,7 +44847,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &281 + - &284 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -44624,7 +44871,7 @@ paths: type: string required: - required_deployment_environments - - &282 + - &285 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -44636,7 +44883,7 @@ paths: type: string enum: - required_signatures - - &283 + - &286 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -44742,7 +44989,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &284 + - &287 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -44790,7 +45037,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &285 + - &288 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -44802,7 +45049,7 @@ paths: type: string enum: - non_fast_forward - - &286 + - &289 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -44839,7 +45086,7 @@ paths: required: - operator - pattern - - &287 + - &290 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -44876,7 +45123,7 @@ paths: required: - operator - pattern - - &288 + - &291 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -44913,7 +45160,7 @@ paths: required: - operator - pattern - - &289 + - &292 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -44950,7 +45197,7 @@ paths: required: - operator - pattern - - &290 + - &293 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -44987,7 +45234,7 @@ paths: required: - operator - pattern - - &291 + - &294 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -45012,7 +45259,7 @@ paths: type: string required: - restricted_file_paths - - &292 + - &295 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -45036,7 +45283,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &293 + - &296 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -45059,7 +45306,7 @@ paths: type: string required: - restricted_file_extensions - - &294 + - &297 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -45084,7 +45331,7 @@ paths: maximum: 100 required: - max_file_size - - &295 + - &298 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -45134,7 +45381,7 @@ paths: - repository_id required: - workflows - - &296 + - &299 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -45195,7 +45442,7 @@ paths: - tool required: - code_scanning_tools - - &297 + - &300 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -45257,7 +45504,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *107 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -45273,7 +45520,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 requestBody: description: Request body required: true @@ -45294,23 +45541,20 @@ paths: - push - repository default: branch - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *276 + items: *278 + conditions: *279 rules: type: array description: An array of rules within the ruleset. - items: &300 + items: &303 title: Repository Rule type: object description: A repository rule. oneOf: - - *277 - - *278 - - *279 - *280 - *281 - *282 @@ -45329,6 +45573,9 @@ paths: - *295 - *296 - *297 + - *298 + - *299 + - *300 required: - name - enforcement @@ -45366,9 +45613,9 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: &299 + default: &302 value: id: 21 name: super cool ruleset @@ -45409,7 +45656,7 @@ paths: updated_at: '2023-09-23T16:29:47Z' '404': *6 '422': *15 - '500': *105 + '500': *107 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -45423,8 +45670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *65 - - &576 + - *67 + - &579 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 @@ -45439,7 +45686,7 @@ paths: in: query schema: type: string - - &577 + - &580 name: time_period description: |- The time period to filter by. @@ -45455,14 +45702,14 @@ paths: - week - month default: day - - &578 + - &581 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 - - &579 + - &582 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -45482,7 +45729,7 @@ paths: description: Response content: application/json: - schema: &580 + schema: &583 title: Rule Suites description: Response type: array @@ -45538,7 +45785,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &581 + default: &584 value: - id: 21 actor_id: 12 @@ -45562,7 +45809,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45581,8 +45828,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *65 - - &582 + - *67 + - &585 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -45598,7 +45845,7 @@ paths: description: Response content: application/json: - schema: &583 + schema: &586 title: Rule Suite description: Response type: object @@ -45705,7 +45952,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &584 + default: &587 value: id: 21 actor_id: 12 @@ -45740,7 +45987,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45766,7 +46013,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45778,11 +46025,11 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *299 + default: *302 '404': *6 - '500': *105 + '500': *107 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -45798,7 +46045,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45824,16 +46071,16 @@ paths: - tag - push - repository - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *276 + items: *278 + conditions: *279 rules: description: An array of rules within the ruleset. type: array - items: *300 + items: *303 examples: default: value: @@ -45868,12 +46115,12 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *299 + default: *302 '404': *6 '422': *15 - '500': *105 + '500': *107 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -45889,7 +46136,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45900,7 +46147,7 @@ paths: '204': description: Response '404': *6 - '500': *105 + '500': *107 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -45912,7 +46159,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *65 + - *67 - *17 - *19 - name: ruleset_id @@ -45928,7 +46175,7 @@ paths: application/json: schema: type: array - items: &301 + items: &304 title: Ruleset version type: object description: The historical version of a ruleset @@ -45952,7 +46199,7 @@ paths: type: string format: date-time examples: - default: &586 + default: &589 value: - version_id: 3 actor: @@ -45970,7 +46217,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45987,7 +46234,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46005,9 +46252,9 @@ paths: description: Response content: application/json: - schema: &587 + schema: &590 allOf: - - *301 + - *304 - type: object required: - state @@ -46054,7 +46301,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46076,8 +46323,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *65 - - &588 + - *67 + - &591 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -46088,7 +46335,7 @@ paths: enum: - open - resolved - - &589 + - &592 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -46098,7 +46345,7 @@ paths: required: false schema: type: string - - &590 + - &593 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -46107,7 +46354,7 @@ paths: required: false schema: type: string - - &591 + - &594 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -46126,7 +46373,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &592 + - &595 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. @@ -46138,10 +46385,10 @@ paths: - created - updated default: created - - *51 + - *53 - *19 - *17 - - &593 + - &596 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 @@ -46151,7 +46398,7 @@ paths: required: false schema: type: string - - &594 + - &597 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 @@ -46161,7 +46408,7 @@ paths: required: false schema: type: string - - &595 + - &598 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -46170,7 +46417,7 @@ paths: required: false schema: type: string - - &596 + - &599 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -46179,7 +46426,7 @@ paths: schema: type: boolean default: false - - &597 + - &600 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -46188,7 +46435,7 @@ paths: schema: type: boolean default: false - - &598 + - &601 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -46207,27 +46454,27 @@ paths: items: type: object properties: - number: *163 - created_at: *164 + number: *166 + created_at: *167 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *168 + url: *169 + html_url: *170 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &599 + state: &602 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: &600 + resolution: &603 type: - string - 'null' @@ -46261,7 +46508,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *56 + repository: *58 push_protection_bypassed: type: - boolean @@ -46334,14 +46581,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &601 + - &604 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &603 + - &606 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -46398,7 +46645,7 @@ paths: - blob_url - commit_sha - commit_url - - &604 + - &607 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. @@ -46459,7 +46706,7 @@ paths: - page_url - commit_sha - commit_url - - &605 + - &608 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -46474,7 +46721,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &606 + - &609 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -46489,7 +46736,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &607 + - &610 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -46504,7 +46751,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &608 + - &611 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -46519,7 +46766,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &609 + - &612 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -46534,7 +46781,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &610 + - &613 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -46549,7 +46796,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &611 + - &614 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. @@ -46564,7 +46811,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &612 + - &615 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. @@ -46579,7 +46826,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &613 + - &616 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. @@ -46594,7 +46841,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &614 + - &617 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. @@ -46609,7 +46856,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &615 + - &618 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 @@ -46810,9 +47057,9 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46837,7 +47084,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *65 + - *67 responses: '200': description: Response @@ -46849,7 +47096,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &303 + pattern_config_version: &306 type: - string - 'null' @@ -46859,7 +47106,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &302 + items: &305 type: object properties: token_type: @@ -46928,7 +47175,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *302 + items: *305 examples: default: value: @@ -46977,7 +47224,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *65 + - *67 requestBody: required: true content: @@ -46985,7 +47232,7 @@ paths: schema: type: object properties: - pattern_config_version: *303 + pattern_config_version: *306 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -47011,7 +47258,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *303 + custom_pattern_version: *306 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -47047,7 +47294,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 "/orgs/{org}/security-advisories": get: @@ -47065,8 +47312,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *65 - - *51 + - *67 + - *53 - name: sort description: The property to sort the results by. in: query @@ -47078,8 +47325,8 @@ paths: - updated - published default: created - - *43 - - *44 + - *45 + - *46 - 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)." @@ -47109,7 +47356,7 @@ paths: application/json: schema: type: array - items: &619 + items: &622 description: A repository security advisory. type: object properties: @@ -47317,7 +47564,7 @@ paths: required: - vector_string - score - cvss_severities: *53 + cvss_severities: *55 cwes: type: - array @@ -47353,7 +47600,7 @@ paths: login: type: string description: The username of the user credited. - type: *304 + type: *307 credits_detailed: type: - array @@ -47364,7 +47611,7 @@ paths: type: object properties: user: *4 - type: *304 + type: *307 state: type: string description: The state of the user's acceptance of the @@ -47390,13 +47637,13 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *180 + items: *183 private_fork: readOnly: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *56 + - *58 type: - 'null' required: @@ -47428,7 +47675,7 @@ paths: - private_fork additionalProperties: false examples: - default: &620 + default: &623 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -47807,7 +48054,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *65 + - *67 responses: '200': description: Response @@ -47815,7 +48062,7 @@ paths: application/json: schema: type: array - items: *235 + items: *238 examples: default: value: @@ -47855,8 +48102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response @@ -47881,8 +48128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response @@ -47909,7 +48156,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Immutable releases settings response @@ -47959,7 +48206,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -48017,7 +48264,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *65 + - *67 - *19 - *17 responses: @@ -48035,9 +48282,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48056,7 +48303,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *65 + - *67 requestBody: required: true content: @@ -48105,8 +48352,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: Response @@ -48128,8 +48375,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: Response @@ -48152,7 +48399,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -48170,7 +48417,7 @@ paths: type: integer network_configurations: type: array - items: &305 + items: &308 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -48248,7 +48495,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48267,7 +48514,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: - - *65 + - *67 requestBody: required: true content: @@ -48310,9 +48557,9 @@ paths: description: Response content: application/json: - schema: *305 + schema: *308 examples: - default: &306 + default: &309 value: id: 123456789ABCDEF name: My network configuration @@ -48340,8 +48587,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: - - *65 - - &307 + - *67 + - &310 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -48353,11 +48600,11 @@ paths: description: Response content: application/json: - schema: *305 + schema: *308 examples: - default: *306 + default: *309 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48376,8 +48623,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: - - *65 - - *307 + - *67 + - *310 requestBody: required: true content: @@ -48417,9 +48664,9 @@ paths: description: Response content: application/json: - schema: *305 + schema: *308 examples: - default: *306 + default: *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48438,8 +48685,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: - - *65 - - *307 + - *67 + - *310 responses: '204': description: Response @@ -48462,7 +48709,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: - - *65 + - *67 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -48521,7 +48768,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48551,8 +48798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *65 - *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`). @@ -48584,13 +48831,13 @@ paths: application/json: schema: type: array - items: *308 + items: *311 examples: - default: *309 - '500': *105 + default: *312 + '500': *107 '403': *27 '404': *6 - '422': *310 + '422': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48608,7 +48855,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *65 + - *67 - *17 - *19 - name: team_type @@ -48630,11 +48877,11 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -48654,7 +48901,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *65 + - *67 requestBody: required: true content: @@ -48726,7 +48973,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &314 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -48800,7 +49047,7 @@ paths: parent: anyOf: - type: 'null' - - *235 + - *238 members_count: type: integer examples: @@ -49125,7 +49372,7 @@ paths: - repos_count - organization examples: - default: &312 + default: &315 value: id: 1 node_id: MDQ6VGVhbTE= @@ -49195,16 +49442,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *65 - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 x-github: githubCloudOnly: false @@ -49225,8 +49472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *65 - *67 + - *69 requestBody: required: false content: @@ -49289,16 +49536,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '201': description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 '422': *15 '403': *27 @@ -49323,12 +49570,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response - '422': &313 + '422': &316 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -49351,8 +49598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *65 - *67 + - *69 - *17 - *19 responses: @@ -49362,12 +49609,12 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 headers: - Link: *57 - '422': *313 + Link: *59 + '422': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49387,8 +49634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *65 - *67 + - *69 - name: role description: Filters members returned by their role in the team. in: query @@ -49411,9 +49658,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49441,15 +49688,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *65 - *67 - - *61 + - *69 + - *63 responses: '200': description: Response content: application/json: - schema: &314 + schema: &317 title: Team Membership description: Team Membership type: object @@ -49477,7 +49724,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &636 + response-if-user-is-a-team-maintainer: &639 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -49513,9 +49760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *65 - *67 - - *61 + - *69 + - *63 requestBody: required: false content: @@ -49540,9 +49787,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - response-if-users-membership-with-team-is-now-pending: &637 + response-if-users-membership-with-team-is-now-pending: &640 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -49577,9 +49824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *65 - *67 - - *61 + - *69 + - *63 responses: '204': description: Response @@ -49605,8 +49852,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *65 - *67 + - *69 - *17 - *19 responses: @@ -49616,11 +49863,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49647,16 +49894,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *65 - *67 - - *315 - - *316 + - *69 + - *318 + - *319 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &638 + schema: &641 title: Team Repository description: A team's access to a repository. type: object @@ -49682,7 +49929,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 forks: type: integer permissions: @@ -50297,10 +50544,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *65 - *67 - - *315 - - *316 + - *69 + - *318 + - *319 requestBody: required: false content: @@ -50345,10 +50592,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *65 - *67 - - *315 - - *316 + - *69 + - *318 + - *319 responses: '204': description: Response @@ -50372,8 +50619,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *65 - *67 + - *69 - *17 - *19 responses: @@ -50383,9 +50630,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - response-if-child-teams-exist: &639 + response-if-child-teams-exist: &642 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -50413,7 +50660,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50438,7 +50685,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *65 + - *67 - name: security_product in: path description: The security feature to enable or disable. @@ -50539,7 +50786,7 @@ paths: resources: type: object properties: - core: &317 + core: &320 title: Rate Limit type: object properties: @@ -50556,21 +50803,21 @@ paths: - remaining - reset - used - graphql: *317 - search: *317 - code_search: *317 - source_import: *317 - integration_manifest: *317 - code_scanning_upload: *317 - actions_runner_registration: *317 - scim: *317 - dependency_snapshots: *317 - dependency_sbom: *317 - code_scanning_autofix: *317 + graphql: *320 + search: *320 + code_search: *320 + source_import: *320 + integration_manifest: *320 + code_scanning_upload: *320 + actions_runner_registration: *320 + scim: *320 + dependency_snapshots: *320 + dependency_sbom: *320 + code_scanning_autofix: *320 required: - core - search - rate: *317 + rate: *320 required: - rate - resources @@ -50675,14 +50922,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *318 + schema: *321 examples: default-response: summary: Default response @@ -51187,7 +51434,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *319 + '301': *322 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51205,8 +51452,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -51498,10 +51745,10 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 - '307': &321 + default: *323 + '307': &324 description: Temporary Redirect content: application/json: @@ -51530,8 +51777,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -51553,9 +51800,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *321 + '307': *324 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51577,11 +51824,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - - &354 + - &357 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -51604,7 +51851,7 @@ paths: type: integer artifacts: type: array - items: &322 + items: &325 title: Artifact description: An artifact type: object @@ -51699,7 +51946,7 @@ paths: - expires_at - updated_at examples: - default: &355 + default: &358 value: total_count: 2 artifacts: @@ -51738,7 +51985,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51760,9 +52007,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *315 - - *316 - - &323 + - *318 + - *319 + - &326 name: artifact_id description: The unique identifier of the artifact. in: path @@ -51774,7 +52021,7 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: default: value: @@ -51812,9 +52059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *315 - - *316 - - *323 + - *318 + - *319 + - *326 responses: '204': description: Response @@ -51838,9 +52085,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *315 - - *316 - - *323 + - *318 + - *319 + - *326 - name: archive_format in: path required: true @@ -51854,7 +52101,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': &510 + '410': &513 description: Gone content: application/json: @@ -51879,14 +52126,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &324 + schema: &327 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -51920,13 +52167,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *324 + schema: *327 examples: selected_actions: *40 responses: @@ -51955,14 +52202,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &325 + schema: &328 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -51996,13 +52243,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *325 + schema: *328 examples: selected_actions: *42 responses: @@ -52033,14 +52280,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *326 + schema: *329 examples: default: value: @@ -52066,11 +52313,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - - &327 + - &330 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 @@ -52098,13 +52345,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *51 + - *53 responses: '200': description: Response content: application/json: - schema: &328 + schema: &331 title: Repository actions caches description: Repository actions caches type: object @@ -52154,7 +52401,7 @@ paths: - total_count - actions_caches examples: - default: &329 + default: &332 value: total_count: 1 actions_caches: @@ -52166,7 +52413,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52186,23 +52433,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: - - *315 - - *316 + - *318 + - *319 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *327 + - *330 responses: '200': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52222,8 +52469,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: - - *315 - - *316 + - *318 + - *319 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -52254,9 +52501,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *315 - - *316 - - &330 + - *318 + - *319 + - &333 name: job_id description: The unique identifier of the job. in: path @@ -52268,7 +52515,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &361 title: Job description: Information of a job execution in a workflow run type: object @@ -52615,9 +52862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *315 - - *316 - - *330 + - *318 + - *319 + - *333 responses: '302': description: Response @@ -52645,9 +52892,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *315 - - *316 - - *330 + - *318 + - *319 + - *333 requestBody: required: false content: @@ -52669,7 +52916,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -52693,8 +52940,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Status response @@ -52744,8 +52991,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -52779,7 +53026,7 @@ paths: description: Empty response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -52808,8 +53055,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -52827,7 +53074,7 @@ paths: type: integer secrets: type: array - items: &360 + items: &363 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -52848,7 +53095,7 @@ paths: - created_at - updated_at examples: - default: &361 + default: &364 value: total_count: 2 secrets: @@ -52859,7 +53106,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52881,9 +53128,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *315 - - *316 - - *331 + - *318 + - *319 + - *334 - *19 responses: '200': @@ -52900,7 +53147,7 @@ paths: type: integer variables: type: array - items: &364 + items: &367 title: Actions Variable type: object properties: @@ -52934,7 +53181,7 @@ paths: - created_at - updated_at examples: - default: &365 + default: &368 value: total_count: 2 variables: @@ -52947,7 +53194,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52967,8 +53214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -52977,12 +53224,12 @@ paths: schema: type: object properties: - enabled: &333 + enabled: &336 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *130 - selected_actions_url: *332 - sha_pinning_required: *131 + allowed_actions: *133 + selected_actions_url: *335 + sha_pinning_required: *134 required: - enabled examples: @@ -53010,8 +53257,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -53022,9 +53269,9 @@ paths: schema: type: object properties: - enabled: *333 - allowed_actions: *130 - sha_pinning_required: *131 + enabled: *336 + allowed_actions: *133 + sha_pinning_required: *134 required: - enabled examples: @@ -53054,14 +53301,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &334 + schema: &337 type: object properties: access_level: @@ -53078,7 +53325,7 @@ paths: required: - access_level examples: - default: &335 + default: &338 value: access_level: organization x-github: @@ -53102,15 +53349,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *334 + schema: *337 examples: - default: *335 + default: *338 responses: '204': description: Response @@ -53134,14 +53381,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *336 + schema: *339 examples: default: value: @@ -53165,8 +53412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Empty response for successful settings update @@ -53176,7 +53423,7 @@ paths: required: true content: application/json: - schema: *337 + schema: *340 examples: default: summary: Set retention days @@ -53200,16 +53447,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *132 + schema: *135 examples: - default: *338 + default: *341 '404': *6 x-github: enabledForGitHubApps: true @@ -53228,8 +53475,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -53239,7 +53486,7 @@ paths: required: true content: application/json: - schema: *132 + schema: *135 examples: default: summary: Set approval policy to first time contributors @@ -53263,16 +53510,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *339 + schema: *342 examples: - default: *133 + default: *136 '403': *27 '404': *6 x-github: @@ -53292,15 +53539,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *340 + schema: *343 examples: - default: *133 + default: *136 responses: '204': description: Empty response for successful settings update @@ -53324,16 +53571,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *135 + schema: *138 examples: - default: *136 + default: *139 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -53352,8 +53599,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -53361,9 +53608,9 @@ paths: required: false content: application/json: - schema: *135 + schema: *138 examples: - selected_actions: *136 + selected_actions: *139 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -53385,16 +53632,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *341 + schema: *344 examples: - default: *140 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53415,8 +53662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Success response @@ -53427,9 +53674,9 @@ paths: required: true content: application/json: - schema: *342 + schema: *345 examples: - default: *140 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53456,8 +53703,8 @@ paths: in: query schema: type: string - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -53475,11 +53722,11 @@ paths: type: integer runners: type: array - items: *147 + items: *150 examples: - default: *148 + default: *151 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53501,8 +53748,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -53510,9 +53757,9 @@ paths: application/json: schema: type: array - items: *343 + items: *346 examples: - default: *344 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53534,8 +53781,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -53578,10 +53825,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *345 + '201': *348 '404': *6 '422': *7 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53609,16 +53856,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '201': description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53646,16 +53893,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '201': description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *347 + default: *350 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53677,17 +53924,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: '200': description: Response content: application/json: - schema: *147 + schema: *150 examples: - default: *348 + default: *351 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53708,9 +53955,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: '204': description: Response @@ -53736,11 +53983,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: - '200': *151 + '200': *154 '404': *6 x-github: githubCloudOnly: false @@ -53762,9 +54009,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 requestBody: required: true content: @@ -53788,7 +54035,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -53812,9 +54059,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 requestBody: required: true content: @@ -53839,7 +54086,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -53863,11 +54110,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: - '200': *349 + '200': *352 '404': *6 x-github: githubCloudOnly: false @@ -53894,12 +54141,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: - - *315 - - *316 - - *146 - - *350 + - *318 + - *319 + - *149 + - *353 responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -53925,9 +54172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *315 - - *316 - - &368 + - *318 + - *319 + - &371 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. @@ -53935,7 +54182,7 @@ paths: required: false schema: type: string - - &369 + - &372 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -53943,7 +54190,7 @@ paths: required: false schema: type: string - - &370 + - &373 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -53952,7 +54199,7 @@ paths: required: false schema: type: string - - &371 + - &374 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 @@ -53979,7 +54226,7 @@ paths: - pending - *17 - *19 - - &372 + - &375 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)." @@ -53988,7 +54235,7 @@ paths: schema: type: string format: date-time - - &351 + - &354 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -53997,13 +54244,13 @@ paths: schema: type: boolean default: false - - &373 + - &376 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &374 + - &377 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -54026,7 +54273,7 @@ paths: type: integer workflow_runs: type: array - items: &352 + items: &355 title: Workflow Run description: An invocation of a workflow type: object @@ -54143,7 +54390,7 @@ paths: type: - array - 'null' - items: *76 + items: *78 created_at: type: string format: date-time @@ -54204,7 +54451,7 @@ paths: head_commit: anyOf: - type: 'null' - - &396 + - &399 title: Simple Commit description: A commit. type: object @@ -54278,8 +54525,8 @@ paths: - timestamp - author - committer - repository: *145 - head_repository: *145 + repository: *148 + head_repository: *148 head_repository_id: type: integer examples: @@ -54319,7 +54566,7 @@ paths: - workflow_url - pull_requests examples: - default: &375 + default: &378 value: total_count: 1 workflow_runs: @@ -54533,7 +54780,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54555,24 +54802,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *315 - - *316 - - &353 + - *318 + - *319 + - &356 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *351 + - *354 responses: '200': description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: &356 + default: &359 value: id: 30433642 name: Build @@ -54813,9 +55060,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '204': description: Response @@ -54838,9 +55085,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '200': description: Response @@ -54968,15 +55215,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: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -55003,13 +55250,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 - *17 - *19 - - *354 - - *51 + - *357 + - *53 responses: '200': description: Response @@ -55025,11 +55272,11 @@ paths: type: integer artifacts: type: array - items: *322 + items: *325 examples: - default: *355 + default: *358 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55051,25 +55298,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *315 - - *316 - - *353 - - &357 + - *318 + - *319 + - *356 + - &360 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *351 + - *354 responses: '200': description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: *356 + default: *359 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55092,10 +55339,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *315 - - *316 - - *353 - - *357 + - *318 + - *319 + - *356 + - *360 - *17 - *19 responses: @@ -55113,9 +55360,9 @@ paths: type: integer jobs: type: array - items: *358 + items: *361 examples: - default: &359 + default: &362 value: total_count: 1 jobs: @@ -55204,7 +55451,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -55228,10 +55475,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *315 - - *316 - - *353 - - *357 + - *318 + - *319 + - *356 + - *360 responses: '302': description: Response @@ -55259,19 +55506,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '202': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55294,9 +55541,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: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: true content: @@ -55363,19 +55610,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '202': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55398,9 +55645,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 - 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 @@ -55430,11 +55677,11 @@ paths: type: integer jobs: type: array - items: *358 + items: *361 examples: - default: *359 + default: *362 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55457,9 +55704,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '302': description: Response @@ -55486,14 +55733,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '204': description: Response '403': *27 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55515,9 +55762,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '200': description: Response @@ -55586,7 +55833,7 @@ paths: items: type: object properties: - type: &476 + type: &479 type: string description: The type of reviewer. enum: @@ -55597,7 +55844,7 @@ paths: reviewer: anyOf: - *4 - - *180 + - *183 required: - environment - wait_timer @@ -55672,9 +55919,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: true content: @@ -55724,7 +55971,7 @@ paths: application/json: schema: type: array - items: &471 + items: &474 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -55836,7 +56083,7 @@ paths: - created_at - updated_at examples: - default: &472 + default: &475 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -55892,9 +56139,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: false content: @@ -55916,7 +56163,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -55939,9 +56186,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: false content: @@ -55963,7 +56210,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -55995,9 +56242,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '200': description: Response @@ -56134,8 +56381,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -56153,11 +56400,11 @@ paths: type: integer secrets: type: array - items: *360 + items: *363 examples: - default: *361 + default: *364 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56180,16 +56427,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *362 + schema: *365 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56211,17 +56458,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '200': description: Response content: application/json: - schema: *360 + schema: *363 examples: - default: &489 + default: &492 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -56247,9 +56494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 requestBody: required: true content: @@ -56280,7 +56527,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -56306,9 +56553,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '204': description: Response @@ -56333,9 +56580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *315 - - *316 - - *331 + - *318 + - *319 + - *334 - *19 responses: '200': @@ -56352,11 +56599,11 @@ paths: type: integer variables: type: array - items: *364 + items: *367 examples: - default: *365 + default: *368 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56377,8 +56624,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -56405,7 +56652,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -56430,17 +56677,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *315 - - *316 - - *156 + - *318 + - *319 + - *159 responses: '200': description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: &490 + default: &493 value: name: USERNAME value: octocat @@ -56466,9 +56713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *315 - - *316 - - *156 + - *318 + - *319 + - *159 requestBody: required: true content: @@ -56510,9 +56757,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *315 - - *316 - - *156 + - *318 + - *319 + - *159 responses: '204': description: Response @@ -56537,8 +56784,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -56556,7 +56803,7 @@ paths: type: integer workflows: type: array - items: &366 + items: &369 title: Workflow description: A GitHub Actions workflow type: object @@ -56651,7 +56898,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56674,9 +56921,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *315 - - *316 - - &367 + - *318 + - *319 + - &370 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -56691,7 +56938,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *369 examples: default: value: @@ -56724,9 +56971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '204': description: Response @@ -56751,9 +56998,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -56840,9 +57087,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '204': description: Response @@ -56869,19 +57116,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *315 - - *316 - - *367 - - *368 - - *369 + - *318 + - *319 - *370 - *371 - - *17 - - *19 - *372 - - *351 - *373 - *374 + - *17 + - *19 + - *375 + - *354 + - *376 + - *377 responses: '200': description: Response @@ -56897,11 +57144,11 @@ paths: type: integer workflow_runs: type: array - items: *352 + items: *355 examples: - default: *375 + default: *378 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56931,9 +57178,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '200': description: Response @@ -56994,12 +57241,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *315 - - *316 - - *51 + - *318 + - *319 + - *53 - *17 - - *43 - - *44 + - *45 + - *46 - name: ref description: |- The Git reference for the activities you want to list. @@ -57144,7 +57391,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '422': *7 x-github: githubCloudOnly: false @@ -57163,8 +57410,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -57176,9 +57423,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -57201,8 +57448,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *315 - - *316 + - *318 + - *319 - name: assignee in: path required: true @@ -57238,8 +57485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -57351,11 +57598,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *315 - - *316 + - *318 + - *319 - *17 - - *43 - - *44 + - *45 + - *46 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -57409,7 +57656,7 @@ paths: initiator: type: string examples: - default: *376 + default: *379 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57429,8 +57676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -57438,7 +57685,7 @@ paths: application/json: schema: type: array - items: &377 + items: &380 title: Autolink reference description: An autolink reference. type: object @@ -57497,8 +57744,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -57537,9 +57784,9 @@ paths: description: response content: application/json: - schema: *377 + schema: *380 examples: - default: &378 + default: &381 value: id: 1 key_prefix: TICKET- @@ -57570,9 +57817,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *315 - - *316 - - &379 + - *318 + - *319 + - &382 name: autolink_id description: The unique identifier of the autolink. in: path @@ -57584,9 +57831,9 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *378 + default: *381 '404': *6 x-github: githubCloudOnly: false @@ -57606,9 +57853,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *315 - - *316 - - *379 + - *318 + - *319 + - *382 responses: '204': description: Response @@ -57632,8 +57879,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response if Dependabot is enabled @@ -57683,8 +57930,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -57705,8 +57952,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -57726,8 +57973,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *315 - - *316 + - *318 + - *319 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -57765,7 +58012,7 @@ paths: - url protected: type: boolean - protection: &381 + protection: &384 title: Branch Protection description: Branch Protection type: object @@ -57808,7 +58055,7 @@ paths: required: - contexts - checks - enforce_admins: &384 + enforce_admins: &387 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -57825,7 +58072,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &386 + required_pull_request_reviews: &389 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -57847,7 +58094,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *180 + items: *183 apps: description: The list of apps with review dismissal access. @@ -57879,7 +58126,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *180 + items: *183 apps: description: The list of apps allowed to bypass pull request requirements. @@ -57909,7 +58156,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &383 + restrictions: &386 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -57972,7 +58219,7 @@ paths: type: string teams: type: array - items: *180 + items: *183 apps: type: array items: @@ -58184,7 +58431,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -58202,9 +58449,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *315 - - *316 - - &382 + - *318 + - *319 + - &385 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). @@ -58218,14 +58465,14 @@ paths: description: Response content: application/json: - schema: &392 + schema: &395 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &446 + commit: &449 title: Commit description: Commit type: object @@ -58264,7 +58511,7 @@ paths: author: anyOf: - type: 'null' - - &380 + - &383 title: Git User description: Metaproperties for Git author/committer information. @@ -58286,7 +58533,7 @@ paths: committer: anyOf: - type: 'null' - - *380 + - *383 message: type: string examples: @@ -58310,7 +58557,7 @@ paths: required: - sha - url - verification: &496 + verification: &499 title: Verification type: object properties: @@ -58346,14 +58593,14 @@ paths: author: oneOf: - *4 - - *154 + - *157 type: - 'null' - object committer: oneOf: - *4 - - *154 + - *157 type: - 'null' - object @@ -58390,7 +58637,7 @@ paths: type: integer files: type: array - items: &457 + items: &460 title: Diff Entry description: Diff Entry type: object @@ -58486,7 +58733,7 @@ paths: - self protected: type: boolean - protection: *381 + protection: *384 protection_url: type: string format: uri @@ -58595,7 +58842,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *319 + '301': *322 '404': *6 x-github: githubCloudOnly: false @@ -58617,15 +58864,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: default: value: @@ -58819,9 +59066,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -59081,7 +59328,7 @@ paths: url: type: string format: uri - required_status_checks: &389 + required_status_checks: &392 title: Status Check Policy description: Status Check Policy type: object @@ -59162,7 +59409,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *183 apps: type: array items: *5 @@ -59180,7 +59427,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *183 apps: type: array items: *5 @@ -59240,7 +59487,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *383 + restrictions: *386 required_conversation_resolution: type: object properties: @@ -59352,9 +59599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59379,17 +59626,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: &385 + default: &388 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -59411,17 +59658,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *385 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59440,9 +59687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59467,17 +59714,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: &387 + default: &390 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -59573,9 +59820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -59673,9 +59920,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *387 + default: *390 '422': *15 x-github: githubCloudOnly: false @@ -59696,9 +59943,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59725,17 +59972,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: &388 + default: &391 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -59758,17 +60005,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *388 + default: *391 '404': *6 x-github: githubCloudOnly: false @@ -59788,9 +60035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59815,17 +60062,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: &390 + default: &393 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -59851,9 +60098,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -59905,9 +60152,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: *390 + default: *393 '404': *6 '422': *15 x-github: @@ -59929,9 +60176,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59955,9 +60202,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -59991,9 +60238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -60060,9 +60307,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -60126,9 +60373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: content: application/json: @@ -60194,15 +60441,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *383 + schema: *386 examples: default: value: @@ -60293,9 +60540,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -60318,9 +60565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -60330,7 +60577,7 @@ paths: type: array items: *5 examples: - default: &391 + default: &394 value: - id: 1 slug: octoapp @@ -60387,9 +60634,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60423,7 +60670,7 @@ paths: type: array items: *5 examples: - default: *391 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -60444,9 +60691,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60480,7 +60727,7 @@ paths: type: array items: *5 examples: - default: *391 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -60501,9 +60748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60537,7 +60784,7 @@ paths: type: array items: *5 examples: - default: *391 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -60559,9 +60806,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -60569,9 +60816,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '404': *6 x-github: githubCloudOnly: false @@ -60591,9 +60838,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -60629,9 +60876,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '422': *15 x-github: githubCloudOnly: false @@ -60652,9 +60899,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -60690,9 +60937,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '422': *15 x-github: githubCloudOnly: false @@ -60713,9 +60960,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: content: application/json: @@ -60750,9 +60997,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '422': *15 x-github: githubCloudOnly: false @@ -60774,9 +61021,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -60786,7 +61033,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '404': *6 x-github: githubCloudOnly: false @@ -60810,9 +61057,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60845,7 +61092,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '422': *15 x-github: githubCloudOnly: false @@ -60870,9 +61117,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60905,7 +61152,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '422': *15 x-github: githubCloudOnly: false @@ -60930,9 +61177,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60965,7 +61212,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '422': *15 x-github: githubCloudOnly: false @@ -60992,9 +61239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -61016,7 +61263,7 @@ paths: description: Response content: application/json: - schema: *392 + schema: *395 examples: default: value: @@ -61132,8 +61379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -61412,7 +61659,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &396 title: CheckRun description: A check performed on the code of a given code change type: object @@ -61547,8 +61794,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *76 - deployment: &702 + items: *78 + deployment: &705 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61835,9 +62082,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *315 - - *316 - - &394 + - *318 + - *319 + - &397 name: check_run_id description: The unique identifier of the check run. in: path @@ -61849,9 +62096,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *396 examples: - default: &395 + default: &398 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -61951,9 +62198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *315 - - *316 - - *394 + - *318 + - *319 + - *397 requestBody: required: true content: @@ -62193,9 +62440,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *396 examples: - default: *395 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62215,9 +62462,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *315 - - *316 - - *394 + - *318 + - *319 + - *397 - *17 - *19 responses: @@ -62307,7 +62554,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62327,15 +62574,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *315 - - *316 - - *394 + - *318 + - *319 + - *397 responses: '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -62373,8 +62620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -62396,7 +62643,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &397 + schema: &400 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -62478,12 +62725,12 @@ paths: type: - array - 'null' - items: *76 + items: *78 app: anyOf: - type: 'null' - *5 - repository: *145 + repository: *148 created_at: type: - string @@ -62494,7 +62741,7 @@ paths: - string - 'null' format: date-time - head_commit: *396 + head_commit: *399 latest_check_runs_count: type: integer check_runs_url: @@ -62522,7 +62769,7 @@ paths: - check_runs_url - pull_requests examples: - default: &398 + default: &401 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -62813,9 +63060,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62834,8 +63081,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -62896,7 +63143,7 @@ paths: required: - app_id - setting - repository: *145 + repository: *148 examples: default: value: @@ -63144,9 +63391,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *315 - - *316 - - &399 + - *318 + - *319 + - &402 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -63158,9 +63405,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63183,17 +63430,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *315 - - *316 - - *399 - - &452 + - *318 + - *319 + - *402 + - &455 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &453 + - &456 name: status description: Returns check runs with the specified `status`. in: query @@ -63232,9 +63479,9 @@ paths: type: integer check_runs: type: array - items: *393 + items: *396 examples: - default: &454 + default: &457 value: total_count: 1 check_runs: @@ -63316,7 +63563,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63336,15 +63583,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *315 - - *316 - - *399 + - *318 + - *319 + - *402 responses: '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -63371,30 +63618,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *315 - - *316 - - *400 - - *401 + - *318 + - *319 + - *403 + - *404 - *19 - *17 - - &418 + - &421 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: *402 - - &419 + schema: *405 + - &422 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *51 - - *43 - - *44 + - *53 + - *45 + - *46 - name: sort description: The property by which to sort the results. in: query @@ -63410,13 +63657,13 @@ paths: be returned. in: query required: false - schema: *403 + schema: *406 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *404 + schema: *407 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -63435,24 +63682,24 @@ paths: items: type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 - instances_url: *405 - state: *172 - fixed_at: *168 + number: *166 + created_at: *167 + updated_at: *168 + url: *169 + html_url: *170 + instances_url: *408 + state: *175 + fixed_at: *171 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 - dismissed_reason: *406 - dismissed_comment: *407 - rule: *408 - tool: *409 - most_recent_instance: *410 + dismissed_at: *172 + dismissed_reason: *409 + dismissed_comment: *410 + rule: *411 + tool: *412 + most_recent_instance: *413 dismissal_approved_by: anyOf: - type: 'null' @@ -63575,14 +63822,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &411 + '403': &414 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63602,9 +63849,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *315 - - *316 - - &412 + - *318 + - *319 + - &415 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -63612,30 +63859,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *163 + schema: *166 responses: '200': description: Response content: application/json: - schema: &413 + schema: &416 type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 - instances_url: *405 - state: *172 - fixed_at: *168 + number: *166 + created_at: *167 + updated_at: *168 + url: *169 + html_url: *170 + instances_url: *408 + state: *175 + fixed_at: *171 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 - dismissed_reason: *406 - dismissed_comment: *407 + dismissed_at: *172 + dismissed_reason: *409 + dismissed_comment: *410 rule: type: object properties: @@ -63697,8 +63944,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *409 - most_recent_instance: *410 + tool: *412 + most_recent_instance: *413 dismissal_approved_by: anyOf: - type: 'null' @@ -63794,9 +64041,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63814,9 +64061,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 requestBody: required: true content: @@ -63831,8 +64078,8 @@ paths: enum: - open - dismissed - dismissed_reason: *406 - dismissed_comment: *407 + dismissed_reason: *409 + dismissed_comment: *410 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -63860,7 +64107,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *416 examples: default: value: @@ -63936,14 +64183,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &417 + '403': &420 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': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63963,15 +64210,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: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 responses: '200': description: Response content: application/json: - schema: &414 + schema: &417 type: object properties: status: @@ -63998,13 +64245,13 @@ paths: - description - started_at examples: - default: &415 + default: &418 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &416 + '400': &419 description: Bad Request content: application/json: @@ -64015,9 +64262,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': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64040,29 +64287,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: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 responses: '200': description: OK content: application/json: - schema: *414 + schema: *417 examples: - default: *415 + default: *418 '202': description: Accepted content: application/json: - schema: *414 + schema: *417 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *416 + '400': *419 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -64072,7 +64319,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64094,9 +64341,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: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 requestBody: required: false content: @@ -64142,12 +64389,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *416 - '403': *417 + '400': *419 + '403': *420 '404': *6 '422': description: Unprocessable Entity - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64167,13 +64414,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 - *19 - *17 - - *418 - - *419 + - *421 + - *422 responses: '200': description: Response @@ -64184,10 +64431,10 @@ paths: items: type: object properties: - ref: *402 - analysis_key: *420 - environment: *421 - category: *422 + ref: *405 + analysis_key: *423 + environment: *424 + category: *425 state: type: - string @@ -64204,7 +64451,7 @@ paths: properties: text: type: string - location: *423 + location: *426 html_url: type: string classifications: @@ -64212,7 +64459,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: *424 + items: *427 examples: default: value: @@ -64249,9 +64496,9 @@ paths: end_column: 50 classifications: - source - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64283,30 +64530,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *315 - - *316 - - *400 - - *401 + - *318 + - *319 + - *403 + - *404 - *19 - *17 - - *419 + - *422 - 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: *402 + schema: *405 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &425 + schema: &428 type: string description: An identifier for the upload. examples: - 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *51 + - *53 - name: sort description: The property by which to sort the results. in: query @@ -64323,23 +64570,23 @@ paths: application/json: schema: type: array - items: &426 + items: &429 type: object properties: - ref: *402 - commit_sha: &434 + ref: *405 + commit_sha: &437 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: *420 + analysis_key: *423 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *422 + category: *425 error: type: string examples: @@ -64364,8 +64611,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *425 - tool: *409 + sarif_id: *428 + tool: *412 deletable: type: boolean warning: @@ -64427,9 +64674,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64463,8 +64710,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: - - *315 - - *316 + - *318 + - *319 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64477,7 +64724,7 @@ paths: description: Response content: application/json: - schema: *426 + schema: *429 examples: response: summary: application/json response @@ -64531,14 +64778,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *411 + '403': *414 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64618,8 +64865,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: - - *315 - - *316 + - *318 + - *319 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64675,9 +64922,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': *417 + '403': *420 '404': *6 - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64697,8 +64944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -64706,7 +64953,7 @@ paths: application/json: schema: type: array - items: &427 + items: &430 title: CodeQL Database description: A CodeQL database. type: object @@ -64818,9 +65065,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': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64847,8 +65094,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - name: language in: path description: The language of the CodeQL database. @@ -64860,7 +65107,7 @@ paths: description: Response content: application/json: - schema: *427 + schema: *430 examples: default: value: @@ -64892,11 +65139,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': &459 + '302': &462 description: Found - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64916,8 +65163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *315 - - *316 + - *318 + - *319 - name: language in: path description: The language of the CodeQL database. @@ -64927,9 +65174,9 @@ paths: responses: '204': description: Response - '403': *417 + '403': *420 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64955,8 +65202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -64965,7 +65212,7 @@ paths: type: object additionalProperties: false properties: - language: &428 + language: &431 type: string description: The language targeted by the CodeQL query enum: @@ -65045,7 +65292,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &432 + schema: &435 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -65053,9 +65300,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *56 + controller_repo: *58 actor: *4 - query_language: *428 + query_language: *431 query_pack_url: type: string description: The download url for the query pack. @@ -65103,7 +65350,7 @@ paths: items: type: object properties: - repository: &429 + repository: &432 title: Repository Identifier description: Repository Identifier type: object @@ -65145,7 +65392,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &433 + analysis_status: &436 type: string description: The new status of the CodeQL variant analysis repository task. @@ -65177,7 +65424,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &430 + access_mismatch_repos: &433 type: object properties: repository_count: @@ -65192,7 +65439,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: *429 + items: *432 required: - repository_count - repositories @@ -65215,8 +65462,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *430 - over_limit_repos: *430 + no_codeql_db_repos: *433 + over_limit_repos: *433 required: - access_mismatch_repos - not_found_repos @@ -65232,7 +65479,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &431 + value: &434 summary: Default response value: id: 1 @@ -65378,17 +65625,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *431 + value: *434 repository_lists: summary: Response for a successful variant analysis submission - value: *431 + value: *434 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65409,8 +65656,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: - - *315 - - *316 + - *318 + - *319 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -65422,11 +65669,11 @@ paths: description: Response content: application/json: - schema: *432 + schema: *435 examples: - default: *431 + default: *434 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65447,7 +65694,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: - - *315 + - *318 - name: repo in: path description: The name of the controller repository. @@ -65481,8 +65728,8 @@ paths: schema: type: object properties: - repository: *56 - analysis_status: *433 + repository: *58 + analysis_status: *436 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -65586,7 +65833,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65607,8 +65854,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -65701,9 +65948,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65722,8 +65969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -65792,7 +66039,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -65817,7 +66064,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *417 + '403': *420 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -65831,7 +66078,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65888,8 +66135,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -65897,7 +66144,7 @@ paths: schema: type: object properties: - commit_sha: *434 + commit_sha: *437 ref: type: string description: |- @@ -65957,7 +66204,7 @@ paths: schema: type: object properties: - id: *425 + id: *428 url: type: string description: The REST API URL for checking the status of the upload. @@ -65971,11 +66218,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': *417 + '403': *420 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65994,8 +66241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *315 - - *316 + - *318 + - *319 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -66043,10 +66290,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': *411 + '403': *414 '404': description: Not Found if the sarif id does not match any upload - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66068,8 +66315,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -66093,7 +66340,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *45 + configuration: *47 examples: default: value: @@ -66125,7 +66372,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': *176 + '204': *179 '304': *35 '403': *27 '404': *6 @@ -66150,8 +66397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *315 - - *316 + - *318 + - *319 - 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 @@ -66279,8 +66526,8 @@ paths: parameters: - *17 - *19 - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -66296,7 +66543,7 @@ paths: type: integer codespaces: type: array - items: *225 + items: *228 examples: default: value: @@ -66572,7 +66819,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': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -66594,8 +66841,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -66659,22 +66906,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -66698,8 +66945,8 @@ paths: parameters: - *17 - *19 - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -66739,7 +66986,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *105 + '500': *107 '400': *14 '401': *23 '403': *27 @@ -66763,8 +67010,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -66801,9 +67048,9 @@ paths: type: integer machines: type: array - items: *436 + items: *439 examples: - default: &646 + default: &649 value: total_count: 2 machines: @@ -66820,7 +67067,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -66843,8 +67090,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *315 - - *316 + - *318 + - *319 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -66931,8 +67178,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: - - *315 - - *316 + - *318 + - *319 - 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 @@ -66980,7 +67227,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67001,8 +67248,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -67020,7 +67267,7 @@ paths: type: integer secrets: type: array - items: &440 + items: &443 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -67041,9 +67288,9 @@ paths: - created_at - updated_at examples: - default: *437 + default: *440 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67064,16 +67311,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *438 + schema: *441 examples: - default: *439 + default: *442 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -67093,17 +67340,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '200': description: Response content: application/json: - schema: *440 + schema: *443 examples: - default: *441 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67123,9 +67370,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 requestBody: required: true content: @@ -67153,7 +67400,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -67177,9 +67424,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '204': description: Response @@ -67207,8 +67454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *315 - - *316 + - *318 + - *319 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -67246,7 +67493,7 @@ paths: application/json: schema: type: array - items: &442 + items: &445 title: Collaborator description: Collaborator type: object @@ -67414,7 +67661,7 @@ paths: admin: false role_name: write headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -67439,9 +67686,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 responses: '204': description: Response if user is a collaborator @@ -67487,9 +67734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 requestBody: required: false content: @@ -67515,7 +67762,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &509 + schema: &512 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -67527,7 +67774,7 @@ paths: format: int64 examples: - 42 - repository: *145 + repository: *148 invitee: anyOf: - type: 'null' @@ -67703,7 +67950,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *114 + schema: *116 '403': *27 x-github: triggersNotification: true @@ -67743,9 +67990,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 responses: '204': description: No Content when collaborator was removed from the repository. @@ -67776,9 +68023,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 responses: '200': description: if user has admin permissions @@ -67798,7 +68045,7 @@ paths: user: anyOf: - type: 'null' - - *442 + - *445 required: - permission - role_name @@ -67852,8 +68099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -67863,7 +68110,7 @@ paths: application/json: schema: type: array - items: &443 + items: &446 title: Commit Comment description: Commit Comment type: object @@ -67904,8 +68151,8 @@ paths: updated_at: type: string format: date-time - author_association: *70 - reactions: *71 + author_association: *72 + reactions: *73 required: - url - html_url @@ -67921,7 +68168,7 @@ paths: - created_at - updated_at examples: - default: &448 + default: &451 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67955,7 +68202,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67980,17 +68227,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: &449 + default: &452 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68047,9 +68294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -68071,7 +68318,7 @@ paths: description: Response content: application/json: - schema: *443 + schema: *446 examples: default: value: @@ -68122,9 +68369,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response @@ -68145,9 +68392,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 - 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. @@ -68173,7 +68420,7 @@ paths: application/json: schema: type: array - items: &444 + items: &447 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -68217,7 +68464,7 @@ paths: - content - created_at examples: - default: &512 + default: &515 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -68243,7 +68490,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -68262,9 +68509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -68296,9 +68543,9 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: &445 + default: &448 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -68327,9 +68574,9 @@ paths: description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -68351,10 +68598,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *315 - - *316 - - *87 - - &513 + - *318 + - *319 + - *89 + - &516 name: reaction_id description: The unique identifier of the reaction. in: path @@ -68409,8 +68656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *315 - - *316 + - *318 + - *319 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -68466,9 +68713,9 @@ paths: application/json: schema: type: array - items: *446 + items: *449 examples: - default: &559 + default: &562 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68538,11 +68785,11 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *57 - '500': *105 + Link: *59 + '500': *107 '400': *14 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68562,9 +68809,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *315 - - *316 - - &447 + - *318 + - *319 + - &450 name: commit_sha description: The SHA of the commit. in: path @@ -68611,7 +68858,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68636,9 +68883,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 - *17 - *19 responses: @@ -68648,11 +68895,11 @@ paths: application/json: schema: type: array - items: *443 + items: *446 examples: - default: *448 + default: *451 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68678,9 +68925,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 requestBody: required: true content: @@ -68715,9 +68962,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: *449 + default: *452 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68745,9 +68992,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 - *17 - *19 responses: @@ -68757,9 +69004,9 @@ paths: application/json: schema: type: array - items: *450 + items: *453 examples: - default: &551 + default: &554 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -69238,8 +69485,8 @@ paths: auto_merge: draft: false headers: - Link: *57 - '409': *50 + Link: *59 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69296,11 +69543,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *315 - - *316 + - *318 + - *319 - *19 - *17 - - &451 + - &454 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)" @@ -69315,9 +69562,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *449 examples: - default: &539 + default: &542 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69403,9 +69650,9 @@ paths: ..... '422': *15 '404': *6 - '500': *105 - '503': *106 - '409': *50 + '500': *107 + '503': *108 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69430,11 +69677,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *315 - - *316 - - *451 - - *452 - - *453 + - *318 + - *319 + - *454 + - *455 + - *456 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -69468,11 +69715,11 @@ paths: type: integer check_runs: type: array - items: *393 + items: *396 examples: - default: *454 + default: *457 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69495,9 +69742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *315 - - *316 - - *451 + - *318 + - *319 + - *454 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -69505,7 +69752,7 @@ paths: schema: type: integer example: 1 - - *452 + - *455 - *17 - *19 responses: @@ -69523,7 +69770,7 @@ paths: type: integer check_suites: type: array - items: *397 + items: *400 examples: default: value: @@ -69698,7 +69945,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69723,9 +69970,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *315 - - *316 - - *451 + - *318 + - *319 + - *454 - *17 - *19 responses: @@ -69796,7 +70043,7 @@ paths: type: string total_count: type: integer - repository: *145 + repository: *148 commit_url: type: string format: uri @@ -69927,9 +70174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *315 - - *316 - - *451 + - *318 + - *319 + - *454 - *17 - *19 responses: @@ -69939,7 +70186,7 @@ paths: application/json: schema: type: array - items: &624 + items: &627 title: Status description: The status of a commit. type: object @@ -70019,8 +70266,8 @@ paths: type: User site_admin: false headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70048,8 +70295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -70082,11 +70329,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *455 + - *458 code_of_conduct_file: anyOf: - type: 'null' - - &456 + - &459 title: Community Health File type: object properties: @@ -70102,23 +70349,23 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 contributing: anyOf: - type: 'null' - - *456 + - *459 readme: anyOf: - type: 'null' - - *456 + - *459 issue_template: anyOf: - type: 'null' - - *456 + - *459 pull_request_template: anyOf: - type: 'null' - - *456 + - *459 required: - code_of_conduct - code_of_conduct_file @@ -70247,8 +70494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *315 - - *316 + - *318 + - *319 - *19 - *17 - name: basehead @@ -70296,8 +70543,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *446 - merge_base_commit: *446 + base_commit: *449 + merge_base_commit: *449 status: type: string enum: @@ -70321,10 +70568,10 @@ paths: - 6 commits: type: array - items: *446 + items: *449 files: type: array - items: *457 + items: *460 required: - url - html_url @@ -70567,8 +70814,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70610,8 +70857,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *315 - - *316 + - *318 + - *319 - name: path description: path parameter in: path @@ -70781,7 +71028,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &458 + response-if-content-is-a-file-github-object: &461 summary: Response if content is a file value: type: file @@ -70918,7 +71165,7 @@ paths: - size - type - url - - &564 + - &567 title: Content File description: Content File type: object @@ -71136,7 +71383,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *458 + response-if-content-is-a-file: *461 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -71205,7 +71452,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *459 + '302': *462 '304': *35 x-github: githubCloudOnly: false @@ -71228,8 +71475,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *315 - - *316 + - *318 + - *319 - name: path description: path parameter in: path @@ -71324,7 +71571,7 @@ paths: description: Response content: application/json: - schema: &460 + schema: &463 title: File Commit description: File Commit type: object @@ -71480,7 +71727,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *463 examples: example-for-creating-a-file: value: @@ -71534,7 +71781,7 @@ paths: schema: oneOf: - *3 - - &491 + - &494 description: Repository rule violation was detected type: object properties: @@ -71555,7 +71802,7 @@ paths: items: type: object properties: - placeholder_id: &616 + placeholder_id: &619 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -71587,8 +71834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *315 - - *316 + - *318 + - *319 - name: path description: path parameter in: path @@ -71649,7 +71896,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *463 examples: default: value: @@ -71683,8 +71930,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *50 - '503': *106 + '409': *52 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71704,8 +71951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *315 - - *316 + - *318 + - *319 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -71806,7 +72053,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *57 + Link: *59 '204': description: Response if repository is empty '403': *27 @@ -71829,26 +72076,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *315 - - *316 - - *181 - - *182 - - *183 + - *318 + - *319 - *184 + - *185 + - *186 + - *187 - 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 - - *185 - - *461 - - *186 - - *187 - *188 - - *51 - - *43 - - *44 + - *464 + - *189 + - *190 + - *191 + - *53 + - *45 + - *46 - *17 responses: '200': @@ -71857,11 +72104,11 @@ paths: application/json: schema: type: array - items: &465 + items: &468 type: object description: A Dependabot alert. properties: - number: *163 + number: *166 state: type: string description: The state of the Dependabot alert. @@ -71876,7 +72123,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *52 + package: *54 manifest_path: type: string description: The full path to the dependency manifest file, @@ -71907,13 +72154,13 @@ paths: - direct - transitive - - security_advisory: *462 - security_vulnerability: *55 - url: *166 - html_url: *167 - created_at: *164 - updated_at: *165 - dismissed_at: *169 + security_advisory: *465 + security_vulnerability: *57 + url: *169 + html_url: *170 + created_at: *167 + updated_at: *168 + dismissed_at: *172 dismissed_by: anyOf: - type: 'null' @@ -71937,9 +72184,9 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *168 - auto_dismissed_at: *463 - dismissal_request: *464 + fixed_at: *171 + auto_dismissed_at: *466 + dismissal_request: *467 assignees: type: array description: The users assigned to this alert. @@ -72194,9 +72441,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *315 - - *316 - - &466 + - *318 + - *319 + - &469 name: alert_number in: path description: |- @@ -72205,13 +72452,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *163 + schema: *166 responses: '200': description: Response content: application/json: - schema: *465 + schema: *468 examples: default: value: @@ -72343,9 +72590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *315 - - *316 - - *466 + - *318 + - *319 + - *469 requestBody: required: true content: @@ -72401,7 +72648,7 @@ paths: description: Response content: application/json: - schema: *465 + schema: *468 examples: default: value: @@ -72508,7 +72755,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *7 x-github: githubCloudOnly: false @@ -72531,8 +72778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -72550,7 +72797,7 @@ paths: type: integer secrets: type: array - items: &469 + items: &472 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -72582,7 +72829,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72604,16 +72851,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *467 + schema: *470 examples: - default: *468 + default: *471 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72633,15 +72880,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '200': description: Response content: application/json: - schema: *469 + schema: *472 examples: default: value: @@ -72667,9 +72914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 requestBody: required: true content: @@ -72697,7 +72944,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -72721,9 +72968,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '204': description: Response @@ -72745,8 +72992,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: - - *315 - - *316 + - *318 + - *319 - 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 @@ -72896,7 +73143,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *57 + Link: *59 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -72920,8 +73167,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -73158,7 +73405,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *57 + Link: *59 '404': *6 '403': *27 x-github: @@ -73181,8 +73428,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -73265,7 +73512,7 @@ paths: - version - url additionalProperties: false - metadata: &470 + metadata: &473 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -73304,7 +73551,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *470 + metadata: *473 resolved: type: object description: A collection of resolved package dependencies. @@ -73318,7 +73565,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *470 + metadata: *473 relationship: type: string description: A notation of whether a dependency is requested @@ -73451,8 +73698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *315 - - *316 + - *318 + - *319 - name: sha description: The SHA recorded at creation time. in: query @@ -73493,11 +73740,11 @@ paths: application/json: schema: type: array - items: *471 + items: *474 examples: - default: *472 + default: *475 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73561,8 +73808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -73644,7 +73891,7 @@ paths: description: Response content: application/json: - schema: *471 + schema: *474 examples: simple-example: summary: Simple example @@ -73717,9 +73964,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *315 - - *316 - - &473 + - *318 + - *319 + - &476 name: deployment_id description: deployment_id parameter in: path @@ -73731,7 +73978,7 @@ paths: description: Response content: application/json: - schema: *471 + schema: *474 examples: default: value: @@ -73796,9 +74043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 responses: '204': description: Response @@ -73820,9 +74067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 - *17 - *19 responses: @@ -73832,7 +74079,7 @@ paths: application/json: schema: type: array - items: &474 + items: &477 title: Deployment Status description: The status of a deployment. type: object @@ -73976,7 +74223,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -73996,9 +74243,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 requestBody: required: true content: @@ -74073,9 +74320,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *477 examples: - default: &475 + default: &478 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -74131,9 +74378,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 - name: status_id in: path required: true @@ -74144,9 +74391,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *477 examples: - default: *475 + default: *478 '404': *6 x-github: githubCloudOnly: false @@ -74171,8 +74418,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -74229,8 +74476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -74248,7 +74495,7 @@ paths: - 5 environments: type: array - items: &477 + items: &480 title: Environment description: Details of a deployment environment type: object @@ -74310,7 +74557,7 @@ paths: type: string examples: - wait_timer - wait_timer: &479 + wait_timer: &482 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -74352,11 +74599,11 @@ paths: items: type: object properties: - type: *476 + type: *479 reviewer: anyOf: - *4 - - *180 + - *183 required: - id - node_id @@ -74379,7 +74626,7 @@ paths: - id - node_id - type - deployment_branch_policy: &480 + deployment_branch_policy: &483 type: - object - 'null' @@ -74496,9 +74743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *315 - - *316 - - &478 + - *318 + - *319 + - &481 name: environment_name in: path required: true @@ -74511,9 +74758,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: &481 + default: &484 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -74597,9 +74844,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 requestBody: required: false content: @@ -74609,7 +74856,7 @@ paths: - object - 'null' properties: - wait_timer: *479 + wait_timer: *482 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -74628,14 +74875,14 @@ paths: items: type: object properties: - type: *476 + type: *479 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *480 + deployment_branch_policy: *483 additionalProperties: false examples: default: @@ -74655,9 +74902,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: *481 + default: *484 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -74681,9 +74928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 responses: '204': description: Default response @@ -74708,9 +74955,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 - *17 - *19 responses: @@ -74729,7 +74976,7 @@ paths: - 2 branch_policies: type: array - items: &482 + items: &485 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -74790,9 +75037,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 requestBody: required: true content: @@ -74840,9 +75087,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - example-wildcard: &483 + example-wildcard: &486 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -74884,10 +75131,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 - - &484 + - *318 + - *319 + - *481 + - &487 name: branch_policy_id in: path required: true @@ -74899,9 +75146,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74920,10 +75167,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 - - *484 + - *318 + - *319 + - *481 + - *487 requestBody: required: true content: @@ -74952,9 +75199,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74973,10 +75220,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 - - *484 + - *318 + - *319 + - *481 + - *487 responses: '204': description: Response @@ -75001,9 +75248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *478 - - *316 - - *315 + - *481 + - *319 + - *318 responses: '200': description: List of deployment protection rules @@ -75020,7 +75267,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &485 + items: &488 title: Deployment protection rule description: Deployment protection rule type: object @@ -75042,7 +75289,7 @@ paths: for the environment. examples: - true - app: &486 + app: &489 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -75145,9 +75392,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: - - *478 - - *316 - - *315 + - *481 + - *319 + - *318 requestBody: content: application/json: @@ -75168,9 +75415,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *485 + schema: *488 examples: - default: &487 + default: &490 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -75205,9 +75452,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: - - *478 - - *316 - - *315 + - *481 + - *319 + - *318 - *19 - *17 responses: @@ -75227,7 +75474,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *486 + items: *489 examples: default: value: @@ -75262,10 +75509,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *315 - - *316 - - *478 - - &488 + - *318 + - *319 + - *481 + - &491 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -75277,9 +75524,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *488 examples: - default: *487 + default: *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75300,10 +75547,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *478 - - *316 - - *315 - - *488 + - *481 + - *319 + - *318 + - *491 responses: '204': description: Response @@ -75329,9 +75576,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 - *17 - *19 responses: @@ -75349,11 +75596,11 @@ paths: type: integer secrets: type: array - items: *360 + items: *363 examples: - default: *361 + default: *364 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75376,17 +75623,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 responses: '200': description: Response content: application/json: - schema: *362 + schema: *365 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75408,18 +75655,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *315 - - *316 - - *478 - - *153 + - *318 + - *319 + - *481 + - *156 responses: '200': description: Response content: application/json: - schema: *360 + schema: *363 examples: - default: *489 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75441,10 +75688,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *315 - - *316 - - *478 - - *153 + - *318 + - *319 + - *481 + - *156 requestBody: required: true content: @@ -75475,7 +75722,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -75501,10 +75748,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *315 - - *316 - - *478 - - *153 + - *318 + - *319 + - *481 + - *156 responses: '204': description: Default response @@ -75529,10 +75776,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *315 - - *316 - - *478 - - *331 + - *318 + - *319 + - *481 + - *334 - *19 responses: '200': @@ -75549,11 +75796,11 @@ paths: type: integer variables: type: array - items: *364 + items: *367 examples: - default: *365 + default: *368 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75574,9 +75821,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 requestBody: required: true content: @@ -75603,7 +75850,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -75628,18 +75875,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *315 - - *316 - - *478 - - *156 + - *318 + - *319 + - *481 + - *159 responses: '200': description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: *490 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75660,10 +75907,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *315 - - *316 - - *156 - - *478 + - *318 + - *319 + - *159 + - *481 requestBody: required: true content: @@ -75705,10 +75952,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *315 - - *316 - - *156 - - *478 + - *318 + - *319 + - *159 + - *481 responses: '204': description: Response @@ -75730,8 +75977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -75741,7 +75988,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: 200-response: value: @@ -75799,8 +76046,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *315 - - *316 + - *318 + - *319 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -75822,7 +76069,7 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: default: value: @@ -75935,7 +76182,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *57 + Link: *59 '400': *14 x-github: githubCloudOnly: false @@ -75959,8 +76206,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -75993,9 +76240,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 '400': *14 '422': *15 '403': *27 @@ -76016,8 +76263,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -76068,7 +76315,7 @@ paths: schema: type: string '404': *6 - '409': *50 + '409': *52 '403': *27 '422': description: Validation failed @@ -76076,8 +76323,8 @@ paths: application/json: schema: oneOf: - - *114 - - *491 + - *116 + - *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76102,8 +76349,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *315 - - *316 + - *318 + - *319 - name: file_sha in: path required: true @@ -76155,7 +76402,7 @@ paths: '404': *6 '422': *15 '403': *27 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76203,8 +76450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -76313,7 +76560,7 @@ paths: description: Response content: application/json: - schema: &492 + schema: &495 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -76490,7 +76737,7 @@ paths: type: string '422': *15 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76540,15 +76787,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 responses: '200': description: Response content: application/json: - schema: *492 + schema: *495 examples: default: value: @@ -76579,7 +76826,7 @@ paths: payload: verified_at: '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76604,9 +76851,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *315 - - *316 - - &493 + - *318 + - *319 + - &496 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. @@ -76623,7 +76870,7 @@ paths: application/json: schema: type: array - items: &494 + items: &497 title: Git Reference description: Git references within a repository type: object @@ -76677,8 +76924,8 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *57 - '409': *50 + Link: *59 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76699,17 +76946,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *315 - - *316 - - *493 + - *318 + - *319 + - *496 responses: '200': description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: &495 + default: &498 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -76719,7 +76966,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76738,8 +76985,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -76768,16 +77015,16 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: *495 + default: *498 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76796,9 +77043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *315 - - *316 - - *493 + - *318 + - *319 + - *496 requestBody: required: true content: @@ -76827,11 +77074,11 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: *495 + default: *498 '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76847,16 +77094,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *315 - - *316 - - *493 + - *318 + - *319 + - *496 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76904,8 +77151,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -76972,7 +77219,7 @@ paths: description: Response content: application/json: - schema: &497 + schema: &500 title: Git Tag description: Metadata for a Git tag type: object @@ -77028,7 +77275,7 @@ paths: - sha - type - url - verification: *496 + verification: *499 required: - sha - url @@ -77038,7 +77285,7 @@ paths: - tag - message examples: - default: &498 + default: &501 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -77065,7 +77312,7 @@ paths: schema: type: string '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77111,8 +77358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *315 - - *316 + - *318 + - *319 - name: tag_sha in: path required: true @@ -77123,11 +77370,11 @@ paths: description: Response content: application/json: - schema: *497 + schema: *500 examples: - default: *498 + default: *501 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77149,8 +77396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -77224,7 +77471,7 @@ paths: description: Response content: application/json: - schema: &499 + schema: &502 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -77303,7 +77550,7 @@ paths: '422': *15 '404': *6 '403': *27 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77326,8 +77573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *315 - - *316 + - *318 + - *319 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -77350,7 +77597,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: default-response: summary: Default response @@ -77391,7 +77638,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77409,8 +77656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -77420,7 +77667,7 @@ paths: application/json: schema: type: array - items: &500 + items: &503 title: Webhook description: Webhooks for repositories. type: object @@ -77483,7 +77730,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &733 + last_response: &736 title: Hook Response type: object properties: @@ -77541,7 +77788,7 @@ paths: status: unused message: headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -77560,8 +77807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -77614,9 +77861,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *503 examples: - default: &501 + default: &504 value: type: Repository id: 12345678 @@ -77664,17 +77911,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '200': description: Response content: application/json: - schema: *500 + schema: *503 examples: - default: *501 + default: *504 '404': *6 x-github: githubCloudOnly: false @@ -77694,9 +77941,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 requestBody: required: true content: @@ -77741,9 +77988,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *503 examples: - default: *501 + default: *504 '422': *15 '404': *6 x-github: @@ -77764,9 +78011,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '204': description: Response @@ -77790,9 +78037,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '200': description: Response @@ -77819,9 +78066,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 requestBody: required: false content: @@ -77865,11 +78112,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 - *17 - - *195 + - *198 responses: '200': description: Response @@ -77877,9 +78124,9 @@ paths: application/json: schema: type: array - items: *196 + items: *199 examples: - default: *197 + default: *200 '400': *14 '422': *15 x-github: @@ -77898,18 +78145,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 - *16 responses: '200': description: Response content: application/json: - schema: *198 + schema: *201 examples: - default: *199 + default: *202 '400': *14 '422': *15 x-github: @@ -77928,9 +78175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 - *16 responses: '202': *37 @@ -77953,9 +78200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '204': description: Response @@ -77980,9 +78227,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '204': description: Response @@ -78005,8 +78252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response if immutable releases are enabled @@ -78054,11 +78301,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 - '409': *50 + '204': *179 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78075,11 +78322,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 - '409': *50 + '204': *179 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78133,14 +78380,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &502 + schema: &505 title: Import description: A repository import from an external source. type: object @@ -78247,7 +78494,7 @@ paths: - html_url - authors_url examples: - default: &505 + default: &508 value: vcs: subversion use_lfs: true @@ -78263,7 +78510,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': &503 + '503': &506 description: Unavailable due to service under maintenance. content: application/json: @@ -78292,8 +78539,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -78341,7 +78588,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *505 examples: default: value: @@ -78366,7 +78613,7 @@ paths: type: string '422': *15 '404': *6 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78394,8 +78641,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -78447,7 +78694,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *505 examples: example-1: summary: Example 1 @@ -78495,7 +78742,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': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78518,12 +78765,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78549,9 +78796,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *315 - - *316 - - &667 + - *318 + - *319 + - &670 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -78565,7 +78812,7 @@ paths: application/json: schema: type: array - items: &504 + items: &507 title: Porter Author description: Porter Author type: object @@ -78619,7 +78866,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': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78644,8 +78891,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *315 - - *316 + - *318 + - *319 - name: author_id in: path required: true @@ -78675,7 +78922,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: default: value: @@ -78688,7 +78935,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78712,8 +78959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -78754,7 +79001,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78782,8 +79029,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -78810,11 +79057,11 @@ paths: description: Response content: application/json: - schema: *502 + schema: *505 examples: - default: *505 + default: *508 '422': *15 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78837,8 +79084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -78846,8 +79093,8 @@ paths: application/json: schema: *20 examples: - default: *506 - '301': *319 + default: *509 + '301': *322 '404': *6 x-github: githubCloudOnly: false @@ -78867,8 +79114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -78876,12 +79123,12 @@ paths: application/json: schema: anyOf: - - *212 + - *215 - type: object properties: {} additionalProperties: false examples: - default: &508 + default: &511 value: limit: collaborators_only origin: repository @@ -78906,13 +79153,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *507 + schema: *510 examples: default: summary: Example request body @@ -78924,9 +79171,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *215 examples: - default: *508 + default: *511 '409': description: Response x-github: @@ -78948,8 +79195,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -78972,8 +79219,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -78983,9 +79230,9 @@ paths: application/json: schema: type: array - items: *509 + items: *512 examples: - default: &660 + default: &663 value: - id: 1 repository: @@ -79099,7 +79346,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79116,9 +79363,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *315 - - *316 - - *216 + - *318 + - *319 + - *219 requestBody: required: false content: @@ -79147,7 +79394,7 @@ paths: description: Response content: application/json: - schema: *509 + schema: *512 examples: default: value: @@ -79278,9 +79525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *315 - - *316 - - *216 + - *318 + - *319 + - *219 responses: '204': description: Response @@ -79311,8 +79558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *315 - - *316 + - *318 + - *319 - 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 @@ -79360,7 +79607,7 @@ paths: required: false schema: type: string - - *223 + - *226 - name: sort description: What to sort results by. in: query @@ -79372,8 +79619,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - *17 - *19 responses: @@ -79383,9 +79630,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: &518 + default: &521 value: - id: 1 node_id: MDU6SXNzdWUx @@ -79533,8 +79780,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '422': *15 '404': *6 x-github: @@ -79563,8 +79810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -79654,9 +79901,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: &515 + default: &518 value: id: 1 node_id: MDU6SXNzdWUx @@ -79811,9 +80058,9 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *106 + '503': *108 '404': *6 - '410': *510 + '410': *513 x-github: triggersNotification: true githubCloudOnly: false @@ -79841,9 +80088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *315 - - *316 - - *95 + - *318 + - *319 + - *97 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -79853,7 +80100,7 @@ paths: enum: - asc - desc - - *78 + - *80 - *17 - *19 responses: @@ -79863,9 +80110,9 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: &517 + default: &520 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -79896,7 +80143,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *57 + Link: *59 '422': *15 '404': *6 x-github: @@ -79923,17 +80170,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: &511 + default: &514 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -79988,9 +80235,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -80012,9 +80259,9 @@ paths: description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: *511 + default: *514 '422': *15 x-github: githubCloudOnly: false @@ -80032,9 +80279,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response @@ -80062,15 +80309,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: default: value: @@ -80126,7 +80373,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *510 + '410': *513 '422': *15 x-github: githubCloudOnly: false @@ -80143,17 +80390,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response '401': *23 '403': *27 '404': *6 - '410': *510 - '503': *106 + '410': *513 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80170,9 +80417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 - 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. @@ -80198,11 +80445,11 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -80221,9 +80468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -80255,16 +80502,16 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -80286,10 +80533,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *315 - - *316 - - *87 - - *513 + - *318 + - *319 + - *89 + - *516 responses: '204': description: Response @@ -80309,8 +80556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -80320,7 +80567,7 @@ paths: application/json: schema: type: array - items: &514 + items: &517 title: Issue Event description: Issue Event type: object @@ -80367,7 +80614,7 @@ paths: issue: anyOf: - type: 'null' - - *73 + - *75 label: title: Issue Event Label description: Issue Event Label @@ -80400,7 +80647,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *180 + requested_team: *183 dismissed_review: title: Issue Event Dismissed Review type: object @@ -80467,7 +80714,7 @@ paths: required: - from - to - author_association: *70 + author_association: *72 lock_reason: type: - string @@ -80642,7 +80889,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -80660,8 +80907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *315 - - *316 + - *318 + - *319 - name: event_id in: path required: true @@ -80672,7 +80919,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -80865,7 +81112,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *510 + '410': *513 '403': *27 x-github: githubCloudOnly: false @@ -80899,9 +81146,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *315 - - *316 - - &516 + - *318 + - *319 + - &519 name: issue_number description: The number that identifies the issue. in: path @@ -80913,11 +81160,11 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: default: summary: Issue - value: *515 + value: *518 pinned_comment: summary: Issue with pinned comment value: @@ -81116,9 +81363,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 '304': *35 x-github: githubCloudOnly: false @@ -81143,9 +81390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -81284,15 +81531,15 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 '422': *15 - '503': *106 + '503': *108 '403': *27 - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81310,9 +81557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -81338,9 +81585,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81356,9 +81603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: content: application/json: @@ -81383,9 +81630,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81407,9 +81654,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: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - name: assignee in: path required: true @@ -81449,10 +81696,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *315 - - *316 - - *516 - - *78 + - *318 + - *319 + - *519 + - *80 - *17 - *19 responses: @@ -81462,13 +81709,13 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *517 + default: *520 headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81497,9 +81744,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -81521,16 +81768,16 @@ paths: description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: *511 + default: *514 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *510 + '410': *513 '422': *15 '404': *6 x-github: @@ -81558,9 +81805,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -81570,14 +81817,14 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *518 + default: *521 headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81605,9 +81852,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -81629,17 +81876,17 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *319 + '301': *322 '403': *27 - '410': *510 + '410': *513 '422': *15 '404': *6 x-github: @@ -81670,9 +81917,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -81684,15 +81931,15 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 - '301': *319 + default: *518 + '301': *322 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *510 + '410': *513 x-github: triggersNotification: true githubCloudOnly: false @@ -81718,9 +81965,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -81730,14 +81977,14 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *518 + default: *521 headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81754,9 +82001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -81770,7 +82017,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &521 + - &524 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -81819,7 +82066,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &522 + - &525 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -81947,7 +82194,7 @@ paths: - performed_via_github_app - assignee - assigner - - &523 + - &526 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -81993,7 +82240,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &524 + - &527 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -82039,7 +82286,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &525 + - &528 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -82088,7 +82335,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &526 + - &529 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -82117,7 +82364,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *180 + requested_team: *183 requested_reviewer: *4 required: - review_requester @@ -82130,7 +82377,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &527 + - &530 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -82159,7 +82406,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *180 + requested_team: *183 requested_reviewer: *4 required: - review_requester @@ -82172,7 +82419,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &528 + - &531 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -82228,7 +82475,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &529 + - &532 title: Locked Issue Event description: Locked Issue Event type: object @@ -82273,7 +82520,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &530 + - &533 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -82334,7 +82581,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &531 + - &534 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -82395,7 +82642,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &532 + - &535 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -82456,7 +82703,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &533 + - &536 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -82548,8 +82795,8 @@ paths: name: label color: red headers: - Link: *57 - '410': *510 + Link: *59 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82566,9 +82813,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -82578,9 +82825,9 @@ paths: application/json: schema: type: array - items: *519 + items: *522 examples: - default: &630 + default: &633 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -82603,10 +82850,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82623,9 +82870,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -82635,9 +82882,9 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: &520 + default: &523 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82654,10 +82901,10 @@ paths: color: a2eeef default: false headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82673,9 +82920,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -82718,12 +82965,12 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 - '301': *319 + default: *523 + '301': *322 '404': *6 - '410': *510 + '410': *513 '422': *15 x-github: githubCloudOnly: false @@ -82740,9 +82987,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -82802,12 +83049,12 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 - '301': *319 + default: *523 + '301': *322 '404': *6 - '410': *510 + '410': *513 '422': *15 x-github: githubCloudOnly: false @@ -82824,15 +83071,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 responses: '204': description: Response - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82851,9 +83098,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - name: name in: path required: true @@ -82866,7 +83113,7 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: default: value: @@ -82877,9 +83124,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82899,9 +83146,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -82930,7 +83177,7 @@ paths: '204': description: Response '403': *27 - '410': *510 + '410': *513 '404': *6 '422': *15 x-github: @@ -82948,9 +83195,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 responses: '204': description: Response @@ -82980,20 +83227,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 responses: '200': description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 - '301': *319 + default: *518 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83010,9 +83257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - 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. @@ -83038,13 +83285,13 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83062,9 +83309,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -83096,16 +83343,16 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Response content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -83127,10 +83374,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *315 - - *316 + - *318 + - *319 + - *519 - *516 - - *513 responses: '204': description: Response @@ -83159,9 +83406,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -83183,9 +83430,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -83218,9 +83465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -83230,13 +83477,13 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *518 + default: *521 headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83264,9 +83511,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -83293,16 +83540,16 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *510 + '410': *513 '422': *15 '404': *6 x-github: @@ -83322,9 +83569,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -83355,13 +83602,13 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 '403': *27 '404': *6 '422': *7 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -83379,9 +83626,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -83396,9 +83643,6 @@ paths: description: Timeline Event type: object anyOf: - - *521 - - *522 - - *523 - *524 - *525 - *526 @@ -83409,6 +83653,9 @@ paths: - *531 - *532 - *533 + - *534 + - *535 + - *536 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -83456,16 +83703,16 @@ paths: issue_url: type: string format: uri - author_association: *70 + author_association: *72 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *71 + reactions: *73 pin: anyOf: - type: 'null' - - *534 + - *537 required: - event - actor @@ -83496,7 +83743,7 @@ paths: properties: type: type: string - issue: *73 + issue: *75 required: - event - created_at @@ -83718,7 +83965,7 @@ paths: type: string body_text: type: string - author_association: *70 + author_association: *72 required: - event - id @@ -83741,7 +83988,7 @@ paths: type: string comments: type: array - items: &553 + items: &556 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83849,7 +84096,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *70 + author_association: *72 _links: type: object properties: @@ -83944,7 +84191,7 @@ paths: enum: - line - file - reactions: *71 + reactions: *73 body_html: type: string examples: @@ -83982,7 +84229,7 @@ paths: type: string comments: type: array - items: *443 + items: *446 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -84255,9 +84502,9 @@ paths: type: User site_admin: true headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84274,8 +84521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -84285,7 +84532,7 @@ paths: application/json: schema: type: array - items: &535 + items: &538 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -84337,7 +84584,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84353,8 +84600,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -84390,9 +84637,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *538 examples: - default: &536 + default: &539 value: id: 1 key: ssh-rsa AAA... @@ -84426,9 +84673,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *315 - - *316 - - &537 + - *318 + - *319 + - &540 name: key_id description: The unique identifier of the key. in: path @@ -84440,9 +84687,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *538 examples: - default: *536 + default: *539 '404': *6 x-github: githubCloudOnly: false @@ -84460,9 +84707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *315 - - *316 - - *537 + - *318 + - *319 + - *540 responses: '204': description: Response @@ -84482,8 +84729,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -84493,11 +84740,11 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 + default: *523 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -84516,8 +84763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -84553,9 +84800,9 @@ paths: description: Response content: application/json: - schema: *72 + schema: *74 examples: - default: &538 + default: &541 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84587,8 +84834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *315 - - *316 + - *318 + - *319 - name: name in: path required: true @@ -84599,9 +84846,9 @@ paths: description: Response content: application/json: - schema: *72 + schema: *74 examples: - default: *538 + default: *541 '404': *6 x-github: githubCloudOnly: false @@ -84618,8 +84865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *315 - - *316 + - *318 + - *319 - name: name in: path required: true @@ -84658,7 +84905,7 @@ paths: description: Response content: application/json: - schema: *72 + schema: *74 examples: default: value: @@ -84684,8 +84931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *315 - - *316 + - *318 + - *319 - name: name in: path required: true @@ -84711,8 +84958,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -84751,9 +84998,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *315 - - *316 - - *418 + - *318 + - *319 + - *421 responses: '200': description: Response @@ -84819,7 +85066,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 required: - _links - git_url @@ -84900,8 +85147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -84966,8 +85213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85001,9 +85248,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *446 + schema: *449 examples: - default: *539 + default: *542 '204': description: Response when already merged '404': @@ -85028,8 +85275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *315 - - *316 + - *318 + - *319 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -85070,7 +85317,7 @@ paths: application/json: schema: type: array - items: *256 + items: *259 examples: default: value: @@ -85109,7 +85356,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -85126,8 +85373,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85167,9 +85414,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *259 examples: - default: &540 + default: &543 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -85228,9 +85475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *315 - - *316 - - &541 + - *318 + - *319 + - &544 name: milestone_number description: The number that identifies the milestone. in: path @@ -85242,9 +85489,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *259 examples: - default: *540 + default: *543 '404': *6 x-github: githubCloudOnly: false @@ -85261,9 +85508,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *315 - - *316 - - *541 + - *318 + - *319 + - *544 requestBody: required: false content: @@ -85301,9 +85548,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *259 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85319,9 +85566,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *315 - - *316 - - *541 + - *318 + - *319 + - *544 responses: '204': description: Response @@ -85342,9 +85589,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *315 - - *316 - - *541 + - *318 + - *319 + - *544 - *17 - *19 responses: @@ -85354,11 +85601,11 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 + default: *523 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85375,12 +85622,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *315 - - *316 - - *542 - - *543 - - *78 - - *544 + - *318 + - *319 + - *545 + - *546 + - *80 + - *547 - *17 - *19 responses: @@ -85390,11 +85637,11 @@ paths: application/json: schema: type: array - items: *98 + items: *100 examples: - default: *545 + default: *548 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -85416,8 +85663,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -85475,14 +85722,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &546 + schema: &549 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -85626,7 +85873,7 @@ paths: - custom_404 - public examples: - default: &547 + default: &550 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -85667,8 +85914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85723,11 +85970,11 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: - default: *547 + default: *550 '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85748,8 +85995,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85828,7 +86075,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85849,14 +86096,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response '422': *15 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85876,8 +86123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -85887,7 +86134,7 @@ paths: application/json: schema: type: array - items: &548 + items: &551 title: Page Build description: Page Build type: object @@ -85960,7 +86207,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85979,8 +86226,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *315 - - *316 + - *318 + - *319 responses: '201': description: Response @@ -86027,16 +86274,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *548 + schema: *551 examples: - default: &549 + default: &552 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -86084,8 +86331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *315 - - *316 + - *318 + - *319 - name: build_id in: path required: true @@ -86096,9 +86343,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *551 examples: - default: *549 + default: *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86118,8 +86365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -86227,9 +86474,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *315 - - *316 - - &550 + - *318 + - *319 + - &553 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -86287,11 +86534,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *315 - - *316 - - *550 + - *318 + - *319 + - *553 responses: - '204': *176 + '204': *179 '404': *6 x-github: githubCloudOnly: false @@ -86316,8 +86563,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -86585,7 +86832,7 @@ paths: description: Empty response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -86612,8 +86859,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Private vulnerability reporting status @@ -86650,10 +86897,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 + '204': *179 '422': *14 x-github: githubCloudOnly: false @@ -86672,10 +86919,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 + '204': *179 '422': *14 x-github: githubCloudOnly: false @@ -86695,8 +86942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -86704,7 +86951,7 @@ paths: application/json: schema: type: array - items: *270 + items: *273 examples: default: value: @@ -86735,8 +86982,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -86748,7 +86995,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *270 + items: *273 required: - properties examples: @@ -86798,8 +87045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *315 - - *316 + - *318 + - *319 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -86859,11 +87106,11 @@ paths: application/json: schema: type: array - items: *450 + items: *453 examples: - default: *551 + default: *554 headers: - Link: *57 + Link: *59 '304': *35 '422': *15 x-github: @@ -86893,8 +87140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -86961,7 +87208,7 @@ paths: description: Response content: application/json: - schema: &555 + schema: &558 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -87090,7 +87337,7 @@ paths: milestone: anyOf: - type: 'null' - - *256 + - *259 active_lock_reason: type: - string @@ -87139,7 +87386,7 @@ paths: items: *4 requested_teams: type: array - items: *235 + items: *238 head: type: object properties: @@ -87147,7 +87394,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: *4 @@ -87164,7 +87411,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: *4 @@ -87177,14 +87424,14 @@ paths: _links: type: object properties: - comments: *257 - commits: *257 - statuses: *257 - html: *257 - issue: *257 - review_comments: *257 - review_comment: *257 - self: *257 + comments: *260 + commits: *260 + statuses: *260 + html: *260 + issue: *260 + review_comments: *260 + review_comment: *260 + self: *260 required: - comments - commits @@ -87194,8 +87441,8 @@ paths: - review_comments - review_comment - self - author_association: *70 - auto_merge: *552 + author_association: *72 + auto_merge: *555 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -87297,7 +87544,7 @@ paths: - merged_by - review_comments examples: - default: &556 + default: &559 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -87824,8 +88071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - name: sort in: query required: false @@ -87844,7 +88091,7 @@ paths: enum: - asc - desc - - *78 + - *80 - *17 - *19 responses: @@ -87854,9 +88101,9 @@ paths: application/json: schema: type: array - items: *553 + items: *556 examples: - default: &558 + default: &561 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87908,7 +88155,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87933,17 +88180,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *553 + schema: *556 examples: - default: &554 + default: &557 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -88018,9 +88265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -88042,9 +88289,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: - default: *554 + default: *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88060,9 +88307,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response @@ -88083,9 +88330,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 - 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. @@ -88111,11 +88358,11 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -88134,9 +88381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -88168,16 +88415,16 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -88199,10 +88446,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *315 - - *316 - - *87 - - *513 + - *318 + - *319 + - *89 + - *516 responses: '204': description: Response @@ -88245,9 +88492,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *315 - - *316 - - &557 + - *318 + - *319 + - &560 name: pull_number description: The number that identifies the pull request. in: path @@ -88260,9 +88507,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *555 + schema: *558 examples: - default: *556 + default: *559 '304': *35 '404': *6 '406': @@ -88270,8 +88517,8 @@ paths: content: application/json: schema: *3 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88297,9 +88544,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -88341,9 +88588,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *558 examples: - default: *556 + default: *559 '422': *15 '403': *27 x-github: @@ -88365,9 +88612,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: true content: @@ -88428,21 +88675,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -88468,10 +88715,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *315 - - *316 - - *557 - - *95 + - *318 + - *319 + - *560 + - *97 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -88481,7 +88728,7 @@ paths: enum: - asc - desc - - *78 + - *80 - *17 - *19 responses: @@ -88491,11 +88738,11 @@ paths: application/json: schema: type: array - items: *553 + items: *556 examples: - default: *558 + default: *561 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88526,9 +88773,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: true content: @@ -88634,7 +88881,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: example-for-a-multi-line-comment: value: @@ -88722,10 +88969,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *315 - - *316 - - *557 - - *87 + - *318 + - *319 + - *560 + - *89 requestBody: required: true content: @@ -88747,7 +88994,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: default: value: @@ -88833,9 +89080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 - *17 - *19 responses: @@ -88845,11 +89092,11 @@ paths: application/json: schema: type: array - items: *446 + items: *449 examples: - default: *559 + default: *562 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88877,9 +89124,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 - *17 - *19 responses: @@ -88889,7 +89136,7 @@ paths: application/json: schema: type: array - items: *457 + items: *460 examples: default: value: @@ -88905,10 +89152,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *57 + Link: *59 '422': *15 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88927,9 +89174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 responses: '204': description: Response if pull request has been merged @@ -88952,9 +89199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -89066,9 +89313,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 responses: '200': description: Response @@ -89084,7 +89331,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *183 required: - users - teams @@ -89125,7 +89372,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89143,9 +89390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -89182,7 +89429,7 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: default: value: @@ -89718,9 +89965,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: true content: @@ -89754,7 +90001,7 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: default: value: @@ -90259,9 +90506,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 - *17 - *19 responses: @@ -90271,7 +90518,7 @@ paths: application/json: schema: type: array - items: &560 + items: &563 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -90345,7 +90592,7 @@ paths: type: string body_text: type: string - author_association: *70 + author_association: *72 required: - id - node_id @@ -90394,7 +90641,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90427,9 +90674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -90519,9 +90766,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: &562 + default: &565 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90584,10 +90831,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - &561 + - *318 + - *319 + - *560 + - &564 name: review_id description: The unique identifier of the review. in: path @@ -90599,9 +90846,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: &563 + default: &566 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90660,10 +90907,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 requestBody: required: true content: @@ -90686,7 +90933,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: default: value: @@ -90748,18 +90995,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 responses: '200': description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: *562 + default: *565 '422': *7 '404': *6 x-github: @@ -90786,10 +91033,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 - *17 - *19 responses: @@ -90883,13 +91130,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *70 + author_association: *72 _links: type: object properties: - self: *257 - html: *257 - pull_request: *257 + self: *260 + html: *260 + pull_request: *260 required: - self - html @@ -90898,7 +91145,7 @@ paths: type: string body_html: type: string - reactions: *71 + reactions: *73 side: description: The side of the first line of the range for a multi-line comment. @@ -91018,7 +91265,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -91047,10 +91294,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 requestBody: required: true content: @@ -91079,7 +91326,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: default: value: @@ -91142,10 +91389,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 requestBody: required: true content: @@ -91180,9 +91427,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: *563 + default: *566 '404': *6 '422': *7 '403': *27 @@ -91204,9 +91451,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -91270,8 +91517,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *315 - - *316 + - *318 + - *319 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -91284,9 +91531,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *567 examples: - default: &565 + default: &568 value: type: file encoding: base64 @@ -91328,8 +91575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *315 - - *316 + - *318 + - *319 - name: dir description: The alternate path to look for a README file in: path @@ -91349,9 +91596,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *567 examples: - default: *565 + default: *568 '404': *6 '422': *15 x-github: @@ -91373,8 +91620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -91384,7 +91631,7 @@ paths: application/json: schema: type: array - items: *566 + items: *569 examples: default: value: @@ -91458,7 +91705,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -91478,8 +91725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -91555,9 +91802,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: &570 + default: &573 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -91662,9 +91909,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *315 - - *316 - - &568 + - *318 + - *319 + - &571 name: asset_id description: The unique identifier of the asset. in: path @@ -91676,9 +91923,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: - default: &569 + default: &572 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 @@ -91713,7 +91960,7 @@ paths: type: User site_admin: false '404': *6 - '302': *459 + '302': *462 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91729,9 +91976,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *315 - - *316 - - *568 + - *318 + - *319 + - *571 requestBody: required: false content: @@ -91760,9 +92007,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: - default: *569 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91778,9 +92025,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *315 - - *316 - - *568 + - *318 + - *319 + - *571 responses: '204': description: Response @@ -91804,8 +92051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -91891,16 +92138,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *570 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91917,8 +92164,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *315 - - *316 + - *318 + - *319 - name: tag description: tag parameter in: path @@ -91931,9 +92178,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *570 + default: *573 '404': *6 x-github: githubCloudOnly: false @@ -91955,9 +92202,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *315 - - *316 - - &571 + - *318 + - *319 + - &574 name: release_id description: The unique identifier of the release. in: path @@ -91971,9 +92218,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: *566 + schema: *569 examples: - default: *570 + default: *573 '401': description: Unauthorized x-github: @@ -91991,9 +92238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 requestBody: required: false content: @@ -92057,9 +92304,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *570 + default: *573 '404': description: Not Found if the discussion category name is invalid content: @@ -92080,9 +92327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 responses: '204': description: Response @@ -92102,9 +92349,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 - *17 - *19 responses: @@ -92114,7 +92361,7 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: default: value: @@ -92151,7 +92398,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92195,9 +92442,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: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 - name: name in: query required: true @@ -92223,7 +92470,7 @@ paths: description: Response for successful upload content: application/json: - schema: *567 + schema: *570 examples: response-for-successful-upload: value: @@ -92278,9 +92525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 - 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. @@ -92304,11 +92551,11 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -92327,9 +92574,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 requestBody: required: true content: @@ -92359,16 +92606,16 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -92390,10 +92637,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *315 - - *316 - - *571 - - *513 + - *318 + - *319 + - *574 + - *516 responses: '204': description: Response @@ -92417,9 +92664,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 - *17 - *19 responses: @@ -92435,8 +92682,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *277 - - &572 + - *280 + - &575 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -92455,69 +92702,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *278 - - *572 - - allOf: - - *279 - - *572 - - allOf: - - *280 - - *572 - - allOf: - - *573 - - *572 - allOf: - *281 - - *572 + - *575 - allOf: - *282 - - *572 + - *575 - allOf: - *283 - - *572 + - *575 + - allOf: + - *576 + - *575 - allOf: - *284 - - *572 + - *575 - allOf: - *285 - - *572 + - *575 - allOf: - *286 - - *572 + - *575 - allOf: - *287 - - *572 + - *575 - allOf: - *288 - - *572 + - *575 - allOf: - *289 - - *572 + - *575 - allOf: - *290 - - *572 + - *575 - allOf: - *291 - - *572 + - *575 - allOf: - *292 - - *572 + - *575 - allOf: - *293 - - *572 + - *575 - allOf: - *294 - - *572 + - *575 - allOf: - *295 - - *572 + - *575 - allOf: - *296 - - *572 + - *575 - allOf: - *297 - - *572 + - *575 + - allOf: + - *298 + - *575 + - allOf: + - *299 + - *575 + - allOf: + - *300 + - *575 examples: default: value: @@ -92556,8 +92803,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - name: includes_parents @@ -92568,7 +92815,7 @@ paths: schema: type: boolean default: true - - *574 + - *577 responses: '200': description: Response @@ -92576,7 +92823,7 @@ paths: application/json: schema: type: array - items: *298 + items: *301 examples: default: value: @@ -92607,7 +92854,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *107 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -92623,8 +92870,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 requestBody: description: Request body required: true @@ -92644,16 +92891,16 @@ paths: - tag - push default: branch - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *272 + items: *278 + conditions: *275 rules: type: array description: An array of rules within the ruleset. - items: *575 + items: *578 required: - name - enforcement @@ -92684,9 +92931,9 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: &585 + default: &588 value: id: 42 name: super cool ruleset @@ -92720,7 +92967,7 @@ paths: updated_at: '2023-08-23T16:29:47Z' '404': *6 '422': *15 - '500': *105 + '500': *107 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -92734,12 +92981,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *315 - - *316 - - *576 - - *577 - - *578 + - *318 + - *319 - *579 + - *580 + - *581 + - *582 - *17 - *19 responses: @@ -92747,11 +92994,11 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: *581 + default: *584 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92770,19 +93017,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *315 - - *316 - - *582 + - *318 + - *319 + - *585 responses: '200': description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92808,8 +93055,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92829,11 +93076,11 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *585 + default: *588 '404': *6 - '500': *105 + '500': *107 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -92849,8 +93096,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92875,16 +93122,16 @@ paths: - branch - tag - push - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *272 + items: *278 + conditions: *275 rules: description: An array of rules within the ruleset. type: array - items: *575 + items: *578 examples: default: value: @@ -92912,12 +93159,12 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *585 + default: *588 '404': *6 '422': *15 - '500': *105 + '500': *107 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -92933,8 +93180,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92945,7 +93192,7 @@ paths: '204': description: Response '404': *6 - '500': *105 + '500': *107 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -92957,8 +93204,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - name: ruleset_id @@ -92974,11 +93221,11 @@ paths: application/json: schema: type: array - items: *301 + items: *304 examples: - default: *586 + default: *589 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92995,8 +93242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -93014,7 +93261,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -93047,7 +93294,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93069,22 +93316,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *315 - - *316 - - *588 - - *589 - - *590 + - *318 + - *319 - *591 - *592 - - *51 - - *19 - - *17 - *593 - *594 - *595 + - *53 + - *19 + - *17 - *596 - *597 - *598 + - *599 + - *600 + - *601 responses: '200': description: Response @@ -93092,24 +93339,24 @@ paths: application/json: schema: type: array - items: &602 + items: &605 type: object properties: - number: *163 - created_at: *164 + number: *166 + created_at: *167 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *168 + url: *169 + html_url: *170 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *599 - resolution: *600 + state: *602 + resolution: *603 resolved_at: type: - string @@ -93203,7 +93450,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *601 + - *604 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -93326,7 +93573,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93348,16 +93595,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *315 - - *316 - - *412 - - *598 + - *318 + - *319 + - *415 + - *601 responses: '200': description: Response content: application/json: - schema: *602 + schema: *605 examples: default: value: @@ -93388,7 +93635,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93411,9 +93658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 requestBody: required: true content: @@ -93421,8 +93668,8 @@ paths: schema: type: object properties: - state: *599 - resolution: *600 + state: *602 + resolution: *603 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -93458,7 +93705,7 @@ paths: description: Response content: application/json: - schema: *602 + schema: *605 examples: default: value: @@ -93531,7 +93778,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -93553,9 +93800,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 - *19 - *17 responses: @@ -93566,7 +93813,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &753 + items: &756 type: object properties: type: @@ -93593,9 +93840,6 @@ paths: - commit details: oneOf: - - *603 - - *604 - - *605 - *606 - *607 - *608 @@ -93606,6 +93850,9 @@ paths: - *613 - *614 - *615 + - *616 + - *617 + - *618 examples: default: value: @@ -93665,11 +93912,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *57 + Link: *59 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93691,8 +93938,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -93700,14 +93947,14 @@ paths: schema: type: object properties: - reason: &617 + reason: &620 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *616 + placeholder_id: *619 required: - reason - placeholder_id @@ -93724,7 +93971,7 @@ paths: schema: type: object properties: - reason: *617 + reason: *620 expire_at: type: - string @@ -93748,7 +93995,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -93771,13 +94018,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: - - *315 - - *316 + - *318 + - *319 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *106 + '503': *108 '200': description: Response content: @@ -93787,7 +94034,7 @@ paths: properties: incremental_scans: type: array - items: &618 + items: &621 description: Information on a single scan performed by secret scanning on the repository type: object @@ -93815,15 +94062,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *618 + items: *621 backfill_scans: type: array - items: *618 + items: *621 custom_pattern_backfill_scans: type: array items: allOf: - - *618 + - *621 - type: object properties: pattern_name: @@ -93893,9 +94140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *315 - - *316 - - *51 + - *318 + - *319 + - *53 - name: sort description: The property to sort the results by. in: query @@ -93907,8 +94154,8 @@ paths: - updated - published default: created - - *43 - - *44 + - *45 + - *46 - 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)." @@ -93938,9 +94185,9 @@ paths: application/json: schema: type: array - items: *619 + items: *622 examples: - default: *620 + default: *623 '400': *14 '404': *6 x-github: @@ -93963,8 +94210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -94044,7 +94291,7 @@ paths: login: type: string description: The username of the user credited. - type: *304 + type: *307 required: - login - type @@ -94134,9 +94381,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *622 examples: - default: &622 + default: &625 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -94369,8 +94616,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -94483,7 +94730,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *622 examples: default: value: @@ -94630,17 +94877,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 responses: '200': description: Response content: application/json: - schema: *619 + schema: *622 examples: - default: *622 + default: *625 '403': *27 '404': *6 x-github: @@ -94664,9 +94911,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 requestBody: required: true content: @@ -94746,7 +94993,7 @@ paths: login: type: string description: The username of the user credited. - type: *304 + type: *307 required: - login - type @@ -94837,17 +95084,17 @@ paths: description: Response content: application/json: - schema: *619 + schema: *622 examples: - default: *622 - add_credit: *622 + default: *625 + add_credit: *625 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *114 + schema: *116 examples: invalid_state_transition: value: @@ -94878,9 +95125,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: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 responses: '202': *37 '400': *14 @@ -94907,17 +95154,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 responses: '202': description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 '400': *14 '422': *15 '403': *27 @@ -94943,8 +95190,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -95018,7 +95265,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -95040,8 +95287,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -95050,7 +95297,7 @@ paths: application/json: schema: type: array - items: &623 + items: &626 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -95063,7 +95310,7 @@ paths: - 1124 - -435 '202': *37 - '204': *176 + '204': *179 '422': description: Repository contains more than 10,000 commits x-github: @@ -95083,8 +95330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -95135,7 +95382,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95162,8 +95409,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -95235,7 +95482,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95257,8 +95504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -95412,8 +95659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -95423,7 +95670,7 @@ paths: application/json: schema: type: array - items: *623 + items: *626 examples: default: value: @@ -95436,7 +95683,7 @@ paths: - - 0 - 2 - 21 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95456,8 +95703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *315 - - *316 + - *318 + - *319 - name: sha in: path required: true @@ -95513,7 +95760,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *627 examples: default: value: @@ -95567,8 +95814,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -95580,9 +95827,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95600,14 +95847,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &625 + schema: &628 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -95680,8 +95927,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -95707,7 +95954,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *628 examples: default: value: @@ -95734,8 +95981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -95755,8 +96002,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -95815,7 +96062,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95838,8 +96085,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *315 - - *316 + - *318 + - *319 - name: ref in: path required: true @@ -95875,8 +96122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -95886,11 +96133,11 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -95908,8 +96155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *315 - - *316 + - *318 + - *319 - *19 - *17 responses: @@ -95917,7 +96164,7 @@ paths: description: Response content: application/json: - schema: &626 + schema: &629 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -95929,7 +96176,7 @@ paths: required: - names examples: - default: &627 + default: &630 value: names: - octocat @@ -95952,8 +96199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -95984,9 +96231,9 @@ paths: description: Response content: application/json: - schema: *626 + schema: *629 examples: - default: *627 + default: *630 '404': *6 '422': *7 x-github: @@ -96007,9 +96254,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *315 - - *316 - - &628 + - *318 + - *319 + - &631 name: per description: The time frame to display results for. in: query @@ -96040,7 +96287,7 @@ paths: - 128 clones: type: array - items: &629 + items: &632 title: Traffic type: object properties: @@ -96127,8 +96374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -96222,8 +96469,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -96286,9 +96533,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *315 - - *316 - - *628 + - *318 + - *319 + - *631 responses: '200': description: Response @@ -96309,7 +96556,7 @@ paths: - 3782 views: type: array - items: *629 + items: *632 required: - uniques - count @@ -96386,8 +96633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -96423,7 +96670,7 @@ paths: description: Response content: application/json: - schema: *145 + schema: *148 examples: default: value: @@ -96661,8 +96908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -96685,8 +96932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -96708,8 +96955,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -96735,8 +96982,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *315 - - *316 + - *318 + - *319 - name: ref in: path required: true @@ -96828,9 +97075,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -96871,7 +97118,7 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: default: value: @@ -96977,8 +97224,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *134 - - *516 + - *137 + - *519 requestBody: required: true content: @@ -97044,14 +97291,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *519 + items: *522 examples: - default: *630 + default: *633 '400': *14 '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -97082,8 +97329,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *134 - - *516 + - *137 + - *519 requestBody: required: true content: @@ -97150,14 +97397,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *519 + items: *522 examples: - default: *630 + default: *633 '400': *14 '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -97183,16 +97430,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: - - *134 - - *516 - - *219 + - *137 + - *519 + - *222 responses: '204': description: Issue field value deleted successfully '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -97306,7 +97553,7 @@ paths: html_url: type: string format: uri - repository: *145 + repository: *148 score: type: number file_size: @@ -97325,7 +97572,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &631 + text_matches: &634 title: Search Result Text Matches type: array items: @@ -97440,7 +97687,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *106 + '503': *108 '422': *15 '403': *27 x-github: @@ -97488,7 +97735,7 @@ paths: enum: - author-date - committer-date - - &632 + - &635 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 @@ -97557,7 +97804,7 @@ paths: committer: anyOf: - type: 'null' - - *380 + - *383 comment_count: type: integer message: @@ -97576,7 +97823,7 @@ paths: url: type: string format: uri - verification: *496 + verification: *499 required: - author - committer @@ -97591,7 +97838,7 @@ paths: committer: anyOf: - type: 'null' - - *380 + - *383 parents: type: array items: @@ -97603,12 +97850,12 @@ paths: type: string sha: type: string - repository: *145 + repository: *148 score: type: number node_id: type: string - text_matches: *631 + text_matches: *634 required: - sha - node_id @@ -97800,7 +98047,7 @@ paths: - interactions - created - updated - - *632 + - *635 - *17 - *19 - name: advanced_search @@ -97897,11 +98144,11 @@ paths: type: - string - 'null' - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: type: string state_reason: @@ -97915,7 +98162,7 @@ paths: milestone: anyOf: - type: 'null' - - *256 + - *259 comments: type: integer created_at: @@ -97929,7 +98176,7 @@ paths: - string - 'null' format: date-time - text_matches: *631 + text_matches: *634 pull_request: type: object properties: @@ -97967,10 +98214,10 @@ paths: type: string score: type: number - author_association: *70 + author_association: *72 draft: type: boolean - repository: *69 + repository: *71 body_html: type: string body_text: @@ -97978,7 +98225,7 @@ paths: timeline_url: type: string format: uri - type: *220 + type: *223 performed_via_github_app: anyOf: - type: 'null' @@ -97986,8 +98233,8 @@ paths: pinned_comment: anyOf: - type: 'null' - - *74 - reactions: *71 + - *76 + reactions: *73 required: - assignee - closed_at @@ -98103,7 +98350,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *106 + '503': *108 '422': *15 '304': *35 '403': *27 @@ -98156,7 +98403,7 @@ paths: enum: - created - updated - - *632 + - *635 - *17 - *19 responses: @@ -98201,7 +98448,7 @@ paths: - 'null' score: type: number - text_matches: *631 + text_matches: *634 required: - id - node_id @@ -98286,7 +98533,7 @@ paths: - forks - help-wanted-issues - updated - - *632 + - *635 - *17 - *19 responses: @@ -98516,7 +98763,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 permissions: type: object properties: @@ -98534,7 +98781,7 @@ paths: - admin - pull - push - text_matches: *631 + text_matches: *634 temp_clone_token: type: string allow_merge_commit: @@ -98737,7 +98984,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *106 + '503': *108 '422': *15 '304': *35 x-github: @@ -98842,7 +99089,7 @@ paths: - string - 'null' format: uri - text_matches: *631 + text_matches: *634 related: type: - array @@ -99035,7 +99282,7 @@ paths: - followers - repositories - joined - - *632 + - *635 - *17 - *19 responses: @@ -99145,7 +99392,7 @@ paths: type: - boolean - 'null' - text_matches: *631 + text_matches: *634 blog: type: - string @@ -99207,7 +99454,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *106 + '503': *108 '422': *15 x-github: githubCloudOnly: false @@ -99227,7 +99474,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &635 + - &638 name: team_id description: The unique identifier of the team. in: path @@ -99239,9 +99486,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 x-github: githubCloudOnly: false @@ -99268,7 +99515,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *635 + - *638 requestBody: required: true content: @@ -99332,16 +99579,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '201': description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 '422': *15 '403': *27 @@ -99369,7 +99616,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *635 + - *638 responses: '204': description: Response @@ -99398,7 +99645,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *635 + - *638 - *17 - *19 responses: @@ -99408,11 +99655,11 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99436,7 +99683,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *635 + - *638 - name: role description: Filters members returned by their role in the team. in: query @@ -99459,9 +99706,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -99487,8 +99734,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: if user is a member @@ -99524,8 +99771,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: Response @@ -99564,8 +99811,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: Response @@ -99601,16 +99848,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '200': description: Response content: application/json: - schema: *314 + schema: *317 examples: - response-if-user-is-a-team-maintainer: *636 + response-if-user-is-a-team-maintainer: *639 '404': *6 x-github: githubCloudOnly: false @@ -99643,8 +99890,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *635 - - *61 + - *638 + - *63 requestBody: required: false content: @@ -99669,9 +99916,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - response-if-users-membership-with-team-is-now-pending: *637 + response-if-users-membership-with-team-is-now-pending: *640 '403': description: Forbidden if team synchronization is set up '422': @@ -99705,8 +99952,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: Response @@ -99733,7 +99980,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *635 + - *638 - *17 - *19 responses: @@ -99743,11 +99990,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -99775,15 +100022,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *635 - - *315 - - *316 + - *638 + - *318 + - *319 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *638 + schema: *641 examples: alternative-response-with-extra-repository-information: value: @@ -99934,9 +100181,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *635 - - *315 - - *316 + - *638 + - *318 + - *319 requestBody: required: false content: @@ -99986,9 +100233,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *635 - - *315 - - *316 + - *638 + - *318 + - *319 responses: '204': description: Response @@ -100013,7 +100260,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *635 + - *638 - *17 - *19 responses: @@ -100023,11 +100270,11 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - response-if-child-teams-exist: *639 + response-if-child-teams-exist: *642 headers: - Link: *57 + Link: *59 '404': *6 '403': *27 '422': *15 @@ -100058,7 +100305,7 @@ paths: application/json: schema: oneOf: - - &641 + - &644 title: Private User description: Private User type: object @@ -100308,7 +100555,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *640 + - *643 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -100468,7 +100715,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *644 examples: default: value: @@ -100547,7 +100794,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '304': *35 '404': *6 '403': *27 @@ -100570,7 +100817,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: - - *61 + - *63 responses: '204': description: If the user is blocked @@ -100598,7 +100845,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -100622,7 +100869,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -100671,11 +100918,11 @@ paths: type: integer codespaces: type: array - items: *225 + items: *228 examples: - default: *226 + default: *229 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -100812,21 +101059,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100866,7 +101113,7 @@ paths: type: integer secrets: type: array - items: &642 + items: &645 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -100908,9 +101155,9 @@ paths: - visibility - selected_repositories_url examples: - default: *437 + default: *440 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100980,13 +101227,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *153 + - *156 responses: '200': description: Response content: application/json: - schema: *642 + schema: *645 examples: default: value: @@ -101016,7 +101263,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *153 + - *156 requestBody: required: true content: @@ -101061,7 +101308,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -101089,7 +101336,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *153 + - *156 responses: '204': description: Response @@ -101114,7 +101361,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *153 + - *156 responses: '200': description: Response @@ -101130,13 +101377,13 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *643 + default: *646 '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101157,7 +101404,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *153 + - *156 requestBody: required: true content: @@ -101189,7 +101436,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101211,7 +101458,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *153 + - *156 - name: repository_id in: path required: true @@ -101223,7 +101470,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101244,7 +101491,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *153 + - *156 - name: repository_id in: path required: true @@ -101256,7 +101503,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101276,17 +101523,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -101310,7 +101557,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 requestBody: required: false content: @@ -101340,9 +101587,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '401': *23 '403': *27 '404': *6 @@ -101364,11 +101611,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '202': *37 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -101393,13 +101640,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '202': description: Response content: application/json: - schema: &644 + schema: &647 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -101452,7 +101699,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &645 + default: &648 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -101460,7 +101707,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -101484,7 +101731,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *227 + - *230 - name: export_id in: path required: true @@ -101497,9 +101744,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *647 examples: - default: *645 + default: *648 '404': *6 x-github: githubCloudOnly: false @@ -101520,7 +101767,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *227 + - *230 responses: '200': description: Response @@ -101536,11 +101783,11 @@ paths: type: integer machines: type: array - items: *436 + items: *439 examples: - default: *646 + default: *649 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -101567,7 +101814,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *227 + - *230 requestBody: required: true content: @@ -101623,11 +101870,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *318 + repository: *321 machine: anyOf: - type: 'null' - - *436 + - *439 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -102424,17 +102671,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '304': *35 - '500': *105 + '500': *107 '400': *14 '401': *23 '402': @@ -102444,7 +102691,7 @@ paths: schema: *3 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102464,16 +102711,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 - '500': *105 + default: *438 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -102502,9 +102749,9 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: &657 + default: &660 value: - id: 197 name: hello_docker @@ -102605,7 +102852,7 @@ paths: application/json: schema: type: array - items: &647 + items: &650 title: Email description: Email type: object @@ -102675,16 +102922,16 @@ paths: application/json: schema: type: array - items: *647 + items: *650 examples: - default: &659 + default: &662 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -102754,7 +103001,7 @@ paths: application/json: schema: type: array - items: *647 + items: *650 examples: default: value: @@ -102866,9 +103113,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -102899,9 +103146,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -102921,7 +103168,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: - - *61 + - *63 responses: '204': description: if the person is followed by the authenticated user @@ -102951,7 +103198,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -102976,7 +103223,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -103012,7 +103259,7 @@ paths: application/json: schema: type: array - items: &648 + items: &651 title: GPG Key description: A unique encryption key type: object @@ -103157,7 +103404,7 @@ paths: - subkeys - revoked examples: - default: &675 + default: &678 value: - id: 3 name: Octocat's GPG Key @@ -103189,7 +103436,7 @@ paths: revoked: false raw_key: string headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -103242,9 +103489,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *651 examples: - default: &649 + default: &652 value: id: 3 name: Octocat's GPG Key @@ -103301,7 +103548,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &650 + - &653 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -103313,9 +103560,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *651 examples: - default: *649 + default: *652 '404': *6 '304': *35 '403': *27 @@ -103338,7 +103585,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *650 + - *653 responses: '204': description: Response @@ -103481,7 +103728,7 @@ paths: suspended_at: suspended_by: headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -103529,11 +103776,11 @@ paths: type: array items: allOf: - - *69 + - *71 examples: - default: *137 + default: *140 headers: - Link: *57 + Link: *59 '404': *6 '403': *27 '304': *35 @@ -103556,7 +103803,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *134 + - *137 responses: '204': description: Response @@ -103582,7 +103829,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *134 + - *137 responses: '204': description: Response @@ -103616,12 +103863,12 @@ paths: application/json: schema: anyOf: - - *212 + - *215 - type: object properties: {} additionalProperties: false examples: - default: *213 + default: *216 '204': description: Response when there are no restrictions x-github: @@ -103645,7 +103892,7 @@ paths: required: true content: application/json: - schema: *507 + schema: *510 examples: default: value: @@ -103656,7 +103903,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *215 examples: default: value: @@ -103737,7 +103984,7 @@ paths: - closed - all default: open - - *223 + - *226 - name: sort description: What to sort results by. in: query @@ -103749,8 +103996,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - *17 - *19 responses: @@ -103760,11 +104007,11 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *224 + default: *227 headers: - Link: *57 + Link: *59 '404': *6 '304': *35 x-github: @@ -103795,7 +104042,7 @@ paths: application/json: schema: type: array - items: &651 + items: &654 title: Key description: Key type: object @@ -103847,7 +104094,7 @@ paths: verified: false read_only: false headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -103898,9 +104145,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *654 examples: - default: &652 + default: &655 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103933,15 +104180,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *537 + - *540 responses: '200': description: Response content: application/json: - schema: *651 + schema: *654 examples: - default: *652 + default: *655 '404': *6 '304': *35 '403': *27 @@ -103964,7 +104211,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *537 + - *540 responses: '204': description: Response @@ -103997,7 +104244,7 @@ paths: application/json: schema: type: array - items: &653 + items: &656 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -104065,7 +104312,7 @@ paths: - id - type - login - plan: *89 + plan: *91 required: - billing_cycle - next_billing_date @@ -104076,7 +104323,7 @@ paths: - account - plan examples: - default: &654 + default: &657 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -104109,7 +104356,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *57 + Link: *59 '304': *35 '401': *23 '404': *6 @@ -104138,11 +104385,11 @@ paths: application/json: schema: type: array - items: *653 + items: *656 examples: - default: *654 + default: *657 headers: - Link: *57 + Link: *59 '304': *35 '401': *23 x-github: @@ -104180,7 +104427,7 @@ paths: application/json: schema: type: array - items: *229 + items: *232 examples: default: value: @@ -104263,7 +104510,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -104288,13 +104535,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *229 + schema: *232 examples: default: value: @@ -104356,7 +104603,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *65 + - *67 requestBody: required: true content: @@ -104381,7 +104628,7 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: default: value: @@ -104453,7 +104700,7 @@ paths: application/json: schema: type: array - items: *231 + items: *234 examples: default: value: @@ -104606,7 +104853,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -104715,7 +104962,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -104895,7 +105142,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *232 + - *235 - name: exclude in: query required: false @@ -104908,7 +105155,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -105102,7 +105349,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *232 + - *235 responses: '302': description: Response @@ -105128,7 +105375,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *232 + - *235 responses: '204': description: Response @@ -105157,8 +105404,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *232 - - *655 + - *235 + - *658 responses: '204': description: Response @@ -105182,7 +105429,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *232 + - *235 - *17 - *19 responses: @@ -105192,11 +105439,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -105229,11 +105476,11 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: *102 + default: *104 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -105273,7 +105520,7 @@ paths: - docker - nuget - container - - *656 + - *659 - *19 - *17 responses: @@ -105283,10 +105530,10 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *657 - '400': *658 + default: *660 + '400': *661 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105306,16 +105553,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *239 - - *240 + - *242 + - *243 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: &676 + default: &679 value: id: 40201 name: octo-name @@ -105428,8 +105675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *239 - - *240 + - *242 + - *243 responses: '204': description: Response @@ -105459,8 +105706,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *239 - - *240 + - *242 + - *243 - name: token description: package token schema: @@ -105492,8 +105739,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: - - *239 - - *240 + - *242 + - *243 - *19 - *17 - name: state @@ -105513,7 +105760,7 @@ paths: application/json: schema: type: array - items: *241 + items: *244 examples: default: value: @@ -105562,15 +105809,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *239 - - *240 - *242 + - *243 + - *245 responses: '200': description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -105606,9 +105853,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *239 - - *240 - *242 + - *243 + - *245 responses: '204': description: Response @@ -105638,9 +105885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *239 - - *240 - *242 + - *243 + - *245 responses: '204': description: Response @@ -105677,11 +105924,11 @@ paths: application/json: schema: type: array - items: *647 + items: *650 examples: - default: *659 + default: *662 headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -105790,9 +106037,9 @@ paths: application/json: schema: type: array - items: *69 + items: *71 examples: - default: &666 + default: &669 summary: Default response value: - id: 1296269 @@ -105913,7 +106160,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *57 + Link: *59 '422': *15 '304': *35 '403': *27 @@ -106110,9 +106357,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -106150,11 +106397,11 @@ paths: application/json: schema: type: array - items: *509 + items: *512 examples: - default: *660 + default: *663 headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -106175,12 +106422,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *216 + - *219 responses: '204': description: Response '403': *27 - '409': *50 + '409': *52 '404': *6 '304': *35 x-github: @@ -106198,11 +106445,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *216 + - *219 responses: '204': description: Response - '409': *50 + '409': *52 '304': *35 '404': *6 '403': *27 @@ -106231,7 +106478,7 @@ paths: application/json: schema: type: array - items: &661 + items: &664 title: Social account description: Social media account type: object @@ -106248,12 +106495,12 @@ paths: - provider - url examples: - default: &662 + default: &665 value: - provider: twitter url: https://twitter.com/github headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -106311,9 +106558,9 @@ paths: application/json: schema: type: array - items: *661 + items: *664 examples: - default: *662 + default: *665 '422': *15 '304': *35 '404': *6 @@ -106401,7 +106648,7 @@ paths: application/json: schema: type: array - items: &663 + items: &666 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -106421,7 +106668,7 @@ paths: - title - created_at examples: - default: &694 + default: &697 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -106432,7 +106679,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -106486,9 +106733,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *666 examples: - default: &664 + default: &667 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -106518,7 +106765,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: - - &665 + - &668 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -106530,9 +106777,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *666 examples: - default: *664 + default: *667 '404': *6 '304': *35 '403': *27 @@ -106555,7 +106802,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: - - *665 + - *668 responses: '204': description: Response @@ -106584,7 +106831,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &695 + - &698 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 @@ -106597,7 +106844,7 @@ paths: - created - updated default: created - - *51 + - *53 - *17 - *19 responses: @@ -106607,13 +106854,13 @@ paths: application/json: schema: type: array - items: *69 + items: *71 examples: - default-response: *666 + default-response: *669 application/vnd.github.v3.star+json: schema: type: array - items: &696 + items: &699 title: Starred Repository description: Starred Repository type: object @@ -106621,7 +106868,7 @@ paths: starred_at: type: string format: date-time - repo: *69 + repo: *71 required: - starred_at - repo @@ -106749,7 +106996,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -106769,8 +107016,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: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response if this repository is starred by you @@ -106798,8 +107045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -106823,8 +107070,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -106857,11 +107104,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -106896,7 +107143,7 @@ paths: application/json: schema: type: array - items: *311 + items: *314 examples: default: value: @@ -106947,7 +107194,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -106974,7 +107221,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *91 + - *93 responses: '200': description: Response @@ -106982,10 +107229,10 @@ paths: application/json: schema: oneOf: - - *641 - - *640 + - *644 + - *643 examples: - default-response: &670 + default-response: &673 summary: Default response value: login: octocat @@ -107020,7 +107267,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &671 + response-with-git-hub-plan-information: &674 summary: Response with GitHub plan information value: login: octocat @@ -107077,14 +107324,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &668 + - &671 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *255 + - *258 requestBody: required: true description: Details of the draft item to create in the project. @@ -107118,9 +107365,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: - draft_issue: *261 + draft_issue: *264 '304': *35 '403': *27 '401': *23 @@ -107143,7 +107390,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *667 + - *670 - *17 responses: '200': @@ -107154,7 +107401,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: Link: example: ; rel="next" @@ -107178,8 +107425,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *668 - - *255 + - *671 + - *258 requestBody: required: true content: @@ -107253,17 +107500,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *669 + schema: *672 examples: table_view: summary: Response for creating a table view - value: *265 + value: *268 board_view: summary: Response for creating a board view with filter - value: *265 + value: *268 roadmap_view: summary: Response for creating a roadmap view - value: *265 + value: *268 '304': *35 '403': *27 '401': *23 @@ -107297,7 +107544,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *61 + - *63 responses: '200': description: Response @@ -107305,11 +107552,11 @@ paths: application/json: schema: oneOf: - - *641 - - *640 + - *644 + - *643 examples: - default-response: *670 - response-with-git-hub-plan-information: *671 + default-response: *673 + response-with-git-hub-plan-information: *674 '404': *6 x-github: githubCloudOnly: false @@ -107333,9 +107580,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *43 - - *44 - - *61 + - *45 + - *46 + - *63 requestBody: required: true content: @@ -107359,8 +107606,8 @@ paths: required: - subject_digests examples: - default: *672 - withPredicateType: *673 + default: *675 + withPredicateType: *676 responses: '200': description: Response @@ -107414,7 +107661,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *674 + default: *677 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107432,7 +107679,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *61 + - *63 requestBody: required: true content: @@ -107497,7 +107744,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *61 + - *63 - name: subject_digest description: Subject Digest in: path @@ -107528,7 +107775,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *61 + - *63 - name: attestation_id description: Attestation ID in: path @@ -107564,9 +107811,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations parameters: - *17 - - *43 - - *44 - - *61 + - *45 + - *46 + - *63 - name: subject_digest description: Subject Digest in: path @@ -107619,12 +107866,12 @@ paths: initiator: type: string examples: - default: *376 + default: *379 '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -107650,7 +107897,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: - - *61 + - *63 responses: '200': description: Response @@ -107658,9 +107905,9 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *657 + default: *660 '403': *27 '401': *23 x-github: @@ -107683,7 +107930,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107693,7 +107940,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -107755,8 +108002,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *61 - - *65 + - *63 + - *67 - *17 - *19 responses: @@ -107766,7 +108013,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -107843,7 +108090,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107853,7 +108100,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -107911,7 +108158,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107923,9 +108170,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107942,7 +108189,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107954,9 +108201,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107973,7 +108220,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *61 + - *63 - name: target_user in: path required: true @@ -108000,8 +108247,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *61 - - *78 + - *63 + - *80 - *17 - *19 responses: @@ -108011,11 +108258,11 @@ paths: application/json: schema: type: array - items: *79 + items: *81 examples: - default: *80 + default: *82 headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -108034,7 +108281,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -108044,11 +108291,11 @@ paths: application/json: schema: type: array - items: *648 + items: *651 examples: - default: *675 + default: *678 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108070,7 +108317,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *61 + - *63 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -108142,7 +108389,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *61 + - *63 responses: '200': description: Response @@ -108150,7 +108397,7 @@ paths: application/json: schema: *20 examples: - default: *506 + default: *509 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108168,7 +108415,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -108204,7 +108451,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108224,7 +108471,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -108234,11 +108481,11 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: *102 + default: *104 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108275,8 +108522,8 @@ paths: - docker - nuget - container - - *656 - - *61 + - *659 + - *63 - *19 - *17 responses: @@ -108286,12 +108533,12 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *657 + default: *660 '403': *27 '401': *23 - '400': *658 + '400': *661 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108311,17 +108558,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *676 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108342,9 +108589,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 responses: '204': description: Response @@ -108376,9 +108623,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 - name: token description: package token schema: @@ -108410,9 +108657,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: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 responses: '200': description: Response @@ -108420,7 +108667,7 @@ paths: application/json: schema: type: array - items: *241 + items: *244 examples: default: value: @@ -108478,16 +108725,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *239 - - *240 - *242 - - *61 + - *243 + - *245 + - *63 responses: '200': description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -108522,10 +108769,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *239 - - *240 - - *61 - *242 + - *243 + - *63 + - *245 responses: '204': description: Response @@ -108557,10 +108804,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *239 - - *240 - - *61 - *242 + - *243 + - *63 + - *245 responses: '204': description: Response @@ -108584,15 +108831,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *61 + - *63 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -108601,11 +108848,11 @@ paths: application/json: schema: type: array - items: *253 + items: *256 examples: - default: *254 + default: *257 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108625,18 +108872,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *255 - - *61 + - *258 + - *63 responses: '200': description: Response content: application/json: - schema: *253 + schema: *256 examples: - default: *254 + default: *257 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108656,11 +108903,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *255 - - *61 + - *258 + - *63 - *17 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -108668,11 +108915,11 @@ paths: application/json: schema: type: array - items: *258 + items: *261 examples: - default: *677 + default: *680 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108691,8 +108938,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *61 - - *255 + - *63 + - *258 requestBody: required: true content: @@ -108730,7 +108977,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *678 + items: *681 required: - name - data_type @@ -108746,7 +108993,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *679 + iteration_configuration: *682 required: - name - data_type @@ -108768,20 +109015,20 @@ paths: value: name: Due date data_type: date - single_select_field: *680 - iteration_field: *681 + single_select_field: *683 + iteration_field: *684 responses: '201': description: Response content: application/json: - schema: *258 + schema: *261 examples: - text_field: *682 - number_field: *683 - date_field: *684 - single_select_field: *685 - iteration_field: *686 + text_field: *685 + number_field: *686 + date_field: *687 + single_select_field: *688 + iteration_field: *689 '304': *35 '403': *27 '401': *23 @@ -108802,19 +109049,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *255 - - *687 - - *61 + - *258 + - *690 + - *63 responses: '200': description: Response content: application/json: - schema: *258 + schema: *261 examples: - default: *688 + default: *691 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108835,10 +109082,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *255 - - *61 - - *43 - - *44 + - *258 + - *63 + - *45 + - *46 - *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) @@ -108868,11 +109115,11 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108891,8 +109138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *61 - - *255 + - *63 + - *258 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -108962,22 +109209,22 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *261 + value: *264 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *261 + value: *264 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *261 + value: *264 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *261 + value: *264 '304': *35 '403': *27 '401': *23 @@ -108997,9 +109244,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *255 - - *61 - - *264 + - *258 + - *63 + - *267 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -109019,11 +109266,11 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -109042,9 +109289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *255 - - *61 - - *264 + - *258 + - *63 + - *267 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -109117,13 +109364,13 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - text_field: *263 - number_field: *263 - date_field: *263 - single_select_field: *263 - iteration_field: *263 + text_field: *266 + number_field: *266 + date_field: *266 + single_select_field: *266 + iteration_field: *266 '401': *23 '403': *27 '404': *6 @@ -109143,9 +109390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *255 - - *61 - - *264 + - *258 + - *63 + - *267 responses: '204': description: Response @@ -109167,9 +109414,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *255 - - *61 - - *689 + - *258 + - *63 + - *692 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -109185,8 +109432,8 @@ paths: maxItems: 50 items: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -109195,11 +109442,11 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -109225,7 +109472,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -109235,7 +109482,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -109300,7 +109547,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -109310,7 +109557,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -109373,7 +109620,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *61 + - *63 - name: type description: Limit results to repositories of the specified type. in: query @@ -109416,11 +109663,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109440,12 +109687,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *61 - - *108 + - *63 - *110 - - *109 - - *690 + - *112 - *111 + - *693 + - *113 responses: '200': description: Response when getting a billing premium request usage report @@ -109552,8 +109799,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109573,10 +109820,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *61 - - *108 - - *691 - - *109 + - *63 + - *110 + - *694 + - *111 responses: '200': description: Response when getting a billing usage report @@ -109646,8 +109893,8 @@ paths: repositoryName: user/example '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109670,13 +109917,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *61 - - *108 + - *63 - *110 - - *109 - - *692 + - *112 - *111 - - *693 + - *695 + - *113 + - *696 responses: '200': description: Response when getting a billing usage summary @@ -109781,8 +110028,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109800,7 +110047,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -109810,11 +110057,11 @@ paths: application/json: schema: type: array - items: *661 + items: *664 examples: - default: *662 + default: *665 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109832,7 +110079,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -109842,11 +110089,11 @@ paths: application/json: schema: type: array - items: *663 + items: *666 examples: - default: *694 + default: *697 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109868,9 +110115,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *61 - - *695 - - *51 + - *63 + - *698 + - *53 - *17 - *19 responses: @@ -109881,13 +110128,13 @@ paths: schema: anyOf: - type: array - items: *696 + items: *699 - type: array - items: *69 + items: *71 examples: - default-response: *666 + default-response: *669 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109904,7 +110151,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -109914,11 +110161,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110045,7 +110292,7 @@ webhooks: type: string enum: - disabled - enterprise: &697 + enterprise: &700 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -110114,7 +110361,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &698 + installation: &701 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -110135,7 +110382,7 @@ webhooks: required: - id - node_id - organization: &699 + organization: &702 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -110208,7 +110455,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &700 + repository: &703 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -110237,7 +110484,7 @@ webhooks: license: anyOf: - type: 'null' - - *75 + - *77 organization: anyOf: - type: 'null' @@ -111140,10 +111387,10 @@ webhooks: type: string enum: - enabled - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -111219,11 +111466,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - rule: &701 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + rule: &704 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) @@ -111446,11 +111693,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - rule: *701 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + rule: *704 sender: *4 required: - action @@ -111638,11 +111885,11 @@ webhooks: - everyone required: - from - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - rule: *701 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + rule: *704 sender: *4 required: - action @@ -111726,7 +111973,7 @@ webhooks: type: string enum: - completed - check_run: &703 + check_run: &706 title: CheckRun description: A check performed on the code of a given code change type: object @@ -111791,8 +112038,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *76 - repository: *145 + items: *78 + repository: *148 status: type: string enum: @@ -111836,7 +112083,7 @@ webhooks: - examples: - neutral - deployment: *702 + deployment: *705 details_url: type: string examples: @@ -111896,7 +112143,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *76 + items: *78 started_at: type: string format: date-time @@ -111934,10 +112181,10 @@ webhooks: - output - app - pull_requests - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 sender: *4 required: - check_run @@ -112328,11 +112575,11 @@ webhooks: type: string enum: - created - check_run: *703 - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + check_run: *706 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 sender: *4 required: - check_run @@ -112726,11 +112973,11 @@ webhooks: type: string enum: - requested_action - check_run: *703 - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + check_run: *706 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 requested_action: description: The action requested by the user. type: object @@ -113133,11 +113380,11 @@ webhooks: type: string enum: - rerequested - check_run: *703 - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + check_run: *706 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 sender: *4 required: - check_run @@ -114122,10 +114369,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -114829,10 +115076,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -115530,10 +115777,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -115702,7 +115949,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -115854,20 +116101,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &704 + commit_oid: &707 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: *697 - installation: *698 - organization: *699 - ref: &705 + enterprise: *700 + installation: *701 + organization: *702 + ref: &708 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: *700 + repository: *703 sender: *4 required: - action @@ -116034,7 +116281,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -116275,12 +116522,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -116378,7 +116625,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116563,12 +116810,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -116737,7 +116984,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -116914,12 +117161,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -117020,7 +117267,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117209,9 +117456,9 @@ webhooks: type: - string - 'null' - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -117219,7 +117466,7 @@ webhooks: type: - string - 'null' - repository: *700 + repository: *703 sender: *4 required: - action @@ -117318,7 +117565,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117465,12 +117712,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -117639,7 +117886,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -117791,10 +118038,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -118054,10 +118301,10 @@ webhooks: - updated_at - author_association - body - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -118138,18 +118385,18 @@ webhooks: type: - string - 'null' - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *699 - pusher_type: &706 + organization: *702 + pusher_type: &709 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &707 + ref: &710 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -118159,7 +118406,7 @@ webhooks: enum: - tag - branch - repository: *700 + repository: *703 sender: *4 required: - ref @@ -118241,10 +118488,10 @@ webhooks: type: string enum: - created - definition: *266 - enterprise: *697 - installation: *698 - organization: *699 + definition: *269 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -118329,9 +118576,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -118408,10 +118655,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *266 - enterprise: *697 - installation: *698 - organization: *699 + definition: *269 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -118488,10 +118735,10 @@ webhooks: type: string enum: - updated - definition: *266 - enterprise: *697 - installation: *698 - organization: *699 + definition: *269 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -118568,19 +118815,19 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - repository: *700 - organization: *699 + enterprise: *700 + installation: *701 + repository: *703 + organization: *702 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *270 + items: *273 old_property_values: type: array description: The old custom property values for the repository. - items: *270 + items: *273 required: - action - repository @@ -118656,18 +118903,18 @@ webhooks: title: delete event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - pusher_type: *706 - ref: *707 + enterprise: *700 + installation: *701 + organization: *702 + pusher_type: *709 + ref: *710 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *700 + repository: *703 sender: *4 required: - ref @@ -118747,11 +118994,11 @@ webhooks: type: string enum: - assignees_changed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -118831,11 +119078,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -118916,11 +119163,11 @@ webhooks: type: string enum: - auto_reopened - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119001,11 +119248,11 @@ webhooks: type: string enum: - created - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119084,11 +119331,11 @@ webhooks: type: string enum: - dismissed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119167,11 +119414,11 @@ webhooks: type: string enum: - fixed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119251,11 +119498,11 @@ webhooks: type: string enum: - reintroduced - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119334,11 +119581,11 @@ webhooks: type: string enum: - reopened - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119415,9 +119662,9 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - key: &708 + enterprise: *700 + installation: *701 + key: &711 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -119455,8 +119702,8 @@ webhooks: - verified - created_at - read_only - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -119533,11 +119780,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - key: *708 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + key: *711 + organization: *702 + repository: *703 sender: *4 required: - action @@ -120104,12 +120351,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: &712 + workflow: &715 title: Workflow type: - object @@ -120860,13 +121107,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *471 + - *474 pull_requests: type: array - items: *555 - repository: *700 - organization: *699 - installation: *698 + items: *558 + repository: *703 + organization: *702 + installation: *701 sender: *4 responses: '200': @@ -120937,7 +121184,7 @@ webhooks: type: string enum: - approved - approver: &709 + approver: &712 type: object properties: avatar_url: @@ -120980,11 +121227,11 @@ webhooks: type: string comment: type: string - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - reviewers: &710 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + reviewers: &713 type: array items: type: object @@ -121065,7 +121312,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &711 + workflow_job_run: &714 type: object properties: conclusion: @@ -121811,18 +122058,18 @@ webhooks: type: string enum: - rejected - approver: *709 + approver: *712 comment: type: string - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - reviewers: *710 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + reviewers: *713 sender: *4 since: type: string - workflow_job_run: *711 + workflow_job_run: *714 workflow_job_runs: type: array items: @@ -122539,13 +122786,13 @@ webhooks: type: string enum: - requested - enterprise: *697 + enterprise: *700 environment: type: string - installation: *698 - organization: *699 - repository: *700 - requestor: &717 + installation: *701 + organization: *702 + repository: *703 + requestor: &720 title: User type: - object @@ -124478,12 +124725,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Deployment Workflow Run type: @@ -125174,7 +125421,7 @@ webhooks: type: string enum: - answered - answer: &715 + answer: &718 type: object properties: author_association: @@ -125334,11 +125581,11 @@ webhooks: - created_at - updated_at - body - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125465,11 +125712,11 @@ webhooks: - from required: - category - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125552,11 +125799,11 @@ webhooks: type: string enum: - closed - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125638,7 +125885,7 @@ webhooks: type: string enum: - created - comment: &714 + comment: &717 type: object properties: author_association: @@ -125798,11 +126045,11 @@ webhooks: - updated_at - body - reactions - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125885,12 +126132,12 @@ webhooks: type: string enum: - deleted - comment: *714 - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + comment: *717 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125985,12 +126232,12 @@ webhooks: - from required: - body - comment: *714 - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + comment: *717 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126074,11 +126321,11 @@ webhooks: type: string enum: - created - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126160,11 +126407,11 @@ webhooks: type: string enum: - deleted - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126264,11 +126511,11 @@ webhooks: type: string required: - from - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126350,10 +126597,10 @@ webhooks: type: string enum: - labeled - discussion: *713 - enterprise: *697 - installation: *698 - label: &716 + discussion: *716 + enterprise: *700 + installation: *701 + label: &719 title: Label type: object properties: @@ -126386,8 +126633,8 @@ webhooks: - color - default - description - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126470,11 +126717,11 @@ webhooks: type: string enum: - locked - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126556,11 +126803,11 @@ webhooks: type: string enum: - pinned - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126642,11 +126889,11 @@ webhooks: type: string enum: - reopened - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126731,16 +126978,16 @@ webhooks: changes: type: object properties: - new_discussion: *713 - new_repository: *700 + new_discussion: *716 + new_repository: *703 required: - new_discussion - new_repository - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126823,10 +127070,10 @@ webhooks: type: string enum: - unanswered - discussion: *713 - old_answer: *715 - organization: *699 - repository: *700 + discussion: *716 + old_answer: *718 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126908,12 +127155,12 @@ webhooks: type: string enum: - unlabeled - discussion: *713 - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126996,11 +127243,11 @@ webhooks: type: string enum: - unlocked - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127082,11 +127329,11 @@ webhooks: type: string enum: - unpinned - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127159,7 +127406,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *697 + enterprise: *700 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -127837,9 +128084,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *698 - organization: *699 - repository: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - forkee @@ -127985,9 +128232,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pages: description: The pages that were updated. type: array @@ -128025,7 +128272,7 @@ webhooks: - action - sha - html_url - repository: *700 + repository: *703 sender: *4 required: - pages @@ -128101,10 +128348,10 @@ webhooks: type: string enum: - created - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: &718 + organization: *702 + repositories: &721 description: An array of repository objects that the installation can access. type: array @@ -128130,8 +128377,8 @@ webhooks: - name - full_name - private - repository: *700 - requester: *717 + repository: *703 + requester: *720 sender: *4 required: - action @@ -128206,11 +128453,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -128287,11 +128534,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -128368,10 +128615,10 @@ webhooks: type: string enum: - added - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories_added: &719 + organization: *702 + repositories_added: &722 description: An array of repository objects, which were added to the installation. type: array @@ -128417,15 +128664,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *700 - repository_selection: &720 + repository: *703 + repository_selection: &723 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *717 + requester: *720 sender: *4 required: - action @@ -128504,10 +128751,10 @@ webhooks: type: string enum: - removed - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories_added: *719 + organization: *702 + repositories_added: *722 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -128534,9 +128781,9 @@ webhooks: - name - full_name - private - repository: *700 - repository_selection: *720 - requester: *717 + repository: *703 + repository_selection: *723 + requester: *720 sender: *4 required: - action @@ -128615,11 +128862,11 @@ webhooks: type: string enum: - suspend - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -128801,10 +129048,10 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 target_type: type: string @@ -128883,11 +129130,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -129053,7 +129300,7 @@ webhooks: pin: anyOf: - type: 'null' - - *534 + - *537 user: title: User type: @@ -129139,8 +129386,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129952,8 +130199,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129970,7 +130217,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -130314,8 +130561,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -130395,7 +130642,7 @@ webhooks: type: string enum: - deleted - comment: &721 + comment: &724 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -130552,7 +130799,7 @@ webhooks: pin: anyOf: - type: 'null' - - *534 + - *537 required: - url - html_url @@ -130566,8 +130813,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131375,8 +131622,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131393,7 +131640,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -131739,8 +131986,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -131820,7 +132067,7 @@ webhooks: type: string enum: - edited - changes: &745 + changes: &748 description: The changes to the comment. type: object properties: @@ -131832,9 +132079,9 @@ webhooks: type: string required: - from - comment: *721 - enterprise: *697 - installation: *698 + comment: *724 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132645,8 +132892,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132663,7 +132910,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -133007,8 +133254,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -133089,9 +133336,9 @@ webhooks: type: string enum: - pinned - comment: *721 - enterprise: *697 - installation: *698 + comment: *724 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133904,8 +134151,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133922,7 +134169,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -134268,8 +134515,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -134349,9 +134596,9 @@ webhooks: type: string enum: - unpinned - comment: *721 - enterprise: *697 - installation: *698 + comment: *724 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -135164,8 +135411,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135182,7 +135429,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -135528,8 +135775,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135612,15 +135859,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 + blocked_issue: *75 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - blocking_issue_repo: *69 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + blocking_issue_repo: *71 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135703,15 +135950,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 + blocked_issue: *75 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - blocking_issue_repo: *69 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + blocking_issue_repo: *71 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135793,15 +136040,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 - blocked_issue_repo: *69 + blocked_issue: *75 + blocked_issue_repo: *71 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135884,15 +136131,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 - blocked_issue_repo: *69 + blocked_issue: *75 + blocked_issue_repo: *71 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135972,10 +136219,10 @@ webhooks: type: string enum: - assigned - assignee: *717 - enterprise: *697 - installation: *698 - issue: &724 + assignee: *720 + enterprise: *700 + installation: *701 + issue: &727 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136785,12 +137032,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136807,7 +137054,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -136910,8 +137157,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -136991,8 +137238,8 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -137807,12 +138054,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137829,7 +138076,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -138075,8 +138322,8 @@ webhooks: required: - state - closed_at - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -138155,8 +138402,8 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138962,12 +139209,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138984,7 +139231,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -139086,8 +139333,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -139166,8 +139413,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139996,12 +140243,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140018,7 +140265,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -140099,7 +140346,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &722 + milestone: &725 title: Milestone description: A collection of related issues and pull requests. type: object @@ -140242,8 +140489,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -140342,8 +140589,8 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141153,12 +141400,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141172,7 +141419,7 @@ webhooks: timeline_url: type: string format: uri - type: *220 + type: *223 title: description: Title of the issue type: string @@ -141278,9 +141525,9 @@ webhooks: - active_lock_reason - body - reactions - label: *716 - organization: *699 - repository: *700 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -141360,8 +141607,8 @@ webhooks: type: string enum: - labeled - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142170,12 +142417,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142189,7 +142436,7 @@ webhooks: timeline_url: type: string format: uri - type: *220 + type: *223 title: description: Title of the issue type: string @@ -142295,9 +142542,9 @@ webhooks: - active_lock_reason - body - reactions - label: *716 - organization: *699 - repository: *700 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -142377,8 +142624,8 @@ webhooks: type: string enum: - locked - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143212,12 +143459,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143231,7 +143478,7 @@ webhooks: timeline_url: type: string format: uri - type: *220 + type: *223 title: description: Title of the issue type: string @@ -143314,8 +143561,8 @@ webhooks: format: uri user_view_type: type: string - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -143394,8 +143641,8 @@ webhooks: type: string enum: - milestoned - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144223,12 +144470,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144245,7 +144492,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -144325,9 +144572,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *722 - organization: *699 - repository: *700 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -145214,11 +145461,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145245,7 +145492,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 + - *76 user: title: User type: @@ -145318,7 +145565,7 @@ webhooks: required: - login - id - type: *220 + type: *223 required: - id - number @@ -145814,8 +146061,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146622,11 +146869,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146643,7 +146890,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -146654,7 +146901,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 + - *76 user: title: User type: @@ -146749,8 +146996,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -146830,9 +147077,9 @@ webhooks: type: string enum: - pinned - enterprise: *697 - installation: *698 - issue: &723 + enterprise: *700 + installation: *701 + issue: &726 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -147636,12 +147883,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147658,7 +147905,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -147760,8 +148007,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -147840,8 +148087,8 @@ webhooks: type: string enum: - reopened - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148673,12 +148920,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148775,9 +149022,9 @@ webhooks: format: uri user_view_type: type: string - type: *220 - organization: *699 - repository: *700 + type: *223 + organization: *702 + repository: *703 sender: *4 required: - action @@ -149664,12 +149911,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149686,7 +149933,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -150283,11 +150530,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *697 - installation: *698 - issue: *723 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *726 + organization: *702 + repository: *703 sender: *4 required: - action @@ -150367,12 +150614,12 @@ webhooks: type: string enum: - typed - enterprise: *697 - installation: *698 - issue: *724 - type: *220 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + type: *223 + organization: *702 + repository: *703 sender: *4 required: - action @@ -150453,7 +150700,7 @@ webhooks: type: string enum: - unassigned - assignee: &748 + assignee: &751 title: User type: - object @@ -150525,11 +150772,11 @@ webhooks: required: - login - id - enterprise: *697 - installation: *698 - issue: *724 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + organization: *702 + repository: *703 sender: *4 required: - action @@ -150608,12 +150855,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *697 - installation: *698 - issue: *724 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -150693,8 +150940,8 @@ webhooks: type: string enum: - unlocked - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151526,12 +151773,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151548,7 +151795,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -151628,8 +151875,8 @@ webhooks: format: uri user_view_type: type: string - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151709,11 +151956,11 @@ webhooks: type: string enum: - unpinned - enterprise: *697 - installation: *698 - issue: *723 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *726 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151792,12 +152039,12 @@ webhooks: type: string enum: - untyped - enterprise: *697 - installation: *698 - issue: *724 - type: *220 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + type: *223 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151877,11 +152124,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151959,11 +152206,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -152073,11 +152320,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -152159,9 +152406,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: &725 + enterprise: *700 + installation: *701 + marketplace_purchase: &728 title: Marketplace Purchase type: object required: @@ -152249,8 +152496,8 @@ webhooks: type: integer unit_count: type: integer - organization: *699 - previous_marketplace_purchase: &726 + organization: *702 + previous_marketplace_purchase: &729 title: Marketplace Purchase type: object properties: @@ -152334,7 +152581,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *700 + repository: *703 sender: *4 required: - action @@ -152414,10 +152661,10 @@ webhooks: - changed effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: *725 - organization: *699 + enterprise: *700 + installation: *701 + marketplace_purchase: *728 + organization: *702 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152505,7 +152752,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *700 + repository: *703 sender: *4 required: - action @@ -152587,10 +152834,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: *725 - organization: *699 + enterprise: *700 + installation: *701 + marketplace_purchase: *728 + organization: *702 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152676,7 +152923,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *700 + repository: *703 sender: *4 required: - action @@ -152757,8 +153004,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 marketplace_purchase: title: Marketplace Purchase type: object @@ -152844,9 +153091,9 @@ webhooks: type: integer unit_count: type: integer - organization: *699 - previous_marketplace_purchase: *726 - repository: *700 + organization: *702 + previous_marketplace_purchase: *729 + repository: *703 sender: *4 required: - action @@ -152926,12 +153173,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: *725 - organization: *699 - previous_marketplace_purchase: *726 - repository: *700 + enterprise: *700 + installation: *701 + marketplace_purchase: *728 + organization: *702 + previous_marketplace_purchase: *729 + repository: *703 sender: *4 required: - action @@ -153033,11 +153280,11 @@ webhooks: type: string required: - to - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 sender: *4 required: - action @@ -153139,11 +153386,11 @@ webhooks: type: - string - 'null' - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 sender: *4 required: - action @@ -153222,11 +153469,11 @@ webhooks: type: string enum: - removed - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 sender: *4 required: - action @@ -153304,11 +153551,11 @@ webhooks: type: string enum: - added - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153386,7 +153633,7 @@ webhooks: required: - login - id - team: &727 + team: &730 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -153616,11 +153863,11 @@ webhooks: type: string enum: - removed - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153699,7 +153946,7 @@ webhooks: required: - login - id - team: *727 + team: *730 required: - action - scope @@ -153781,8 +154028,8 @@ webhooks: type: string enum: - checks_requested - installation: *698 - merge_group: &728 + installation: *701 + merge_group: &731 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -153801,15 +154048,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *396 + head_commit: *399 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -153895,10 +154142,10 @@ webhooks: - merged - invalidated - dequeued - installation: *698 - merge_group: *728 - organization: *699 - repository: *700 + installation: *701 + merge_group: *731 + organization: *702 + repository: *703 sender: *4 required: - action @@ -153971,7 +154218,7 @@ webhooks: type: string enum: - deleted - enterprise: *697 + enterprise: *700 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -154080,12 +154327,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *698 - organization: *699 + installation: *701 + organization: *702 repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -154165,11 +154412,11 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 - milestone: *722 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154248,9 +154495,9 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - milestone: &729 + enterprise: *700 + installation: *701 + milestone: &732 title: Milestone description: A collection of related issues and pull requests. type: object @@ -154392,8 +154639,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154472,11 +154719,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - milestone: *722 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154586,11 +154833,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - milestone: *722 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154670,11 +154917,11 @@ webhooks: type: string enum: - opened - enterprise: *697 - installation: *698 - milestone: *729 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *732 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154753,11 +155000,11 @@ webhooks: type: string enum: - blocked - blocked_user: *717 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + blocked_user: *720 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154836,11 +155083,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *717 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + blocked_user: *720 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154919,9 +155166,9 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - membership: &730 + enterprise: *700 + installation: *701 + membership: &733 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -155031,8 +155278,8 @@ webhooks: - role - organization_url - user - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155110,11 +155357,11 @@ webhooks: type: string enum: - member_added - enterprise: *697 - installation: *698 - membership: *730 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + membership: *733 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155193,8 +155440,8 @@ webhooks: type: string enum: - member_invited - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -155316,10 +155563,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 - user: *717 + user: *720 required: - action - invitation @@ -155397,11 +155644,11 @@ webhooks: type: string enum: - member_removed - enterprise: *697 - installation: *698 - membership: *730 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + membership: *733 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155488,11 +155735,11 @@ webhooks: properties: from: type: string - enterprise: *697 - installation: *698 - membership: *730 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + membership: *733 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155569,9 +155816,9 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 package: description: Information about the package. type: object @@ -156094,7 +156341,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &731 + items: &734 title: Ruby Gems metadata type: object properties: @@ -156191,7 +156438,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -156267,9 +156514,9 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 package: description: Information about the package. type: object @@ -156631,7 +156878,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *731 + items: *734 source_url: type: string format: uri @@ -156702,7 +156949,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -156882,12 +157129,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *697 + enterprise: *700 id: type: integer - installation: *698 - organization: *699 - repository: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - id @@ -156964,7 +157211,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &732 + personal_access_token_request: &735 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -157114,10 +157361,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *697 - organization: *699 + enterprise: *700 + organization: *702 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -157194,11 +157441,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *732 - enterprise: *697 - organization: *699 + personal_access_token_request: *735 + enterprise: *700 + organization: *702 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -157274,11 +157521,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *732 - enterprise: *697 - organization: *699 + personal_access_token_request: *735 + enterprise: *700 + organization: *702 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -157353,11 +157600,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *732 - organization: *699 - enterprise: *697 + personal_access_token_request: *735 + organization: *702 + enterprise: *700 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -157462,7 +157709,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *733 + last_response: *736 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -157494,8 +157741,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 zen: description: Random string of GitHub zen. @@ -157740,10 +157987,10 @@ webhooks: - from required: - note - enterprise: *697 - installation: *698 - organization: *699 - project_card: &734 + enterprise: *700 + installation: *701 + organization: *702 + project_card: &737 title: Project Card type: object properties: @@ -157866,7 +158113,7 @@ webhooks: - creator - created_at - updated_at - repository: *700 + repository: *703 sender: *4 required: - action @@ -157947,11 +158194,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - project_card: *734 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_card: *737 + repository: *703 sender: *4 required: - action @@ -158031,9 +158278,9 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 project_card: title: Project Card type: object @@ -158163,7 +158410,7 @@ webhooks: repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -158257,11 +158504,11 @@ webhooks: - from required: - note - enterprise: *697 - installation: *698 - organization: *699 - project_card: *734 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_card: *737 + repository: *703 sender: *4 required: - action @@ -158355,9 +158602,9 @@ webhooks: - from required: - column_id - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 project_card: allOf: - title: Project Card @@ -158554,7 +158801,7 @@ webhooks: type: string required: - after_id - repository: *700 + repository: *703 sender: *4 required: - action @@ -158634,10 +158881,10 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 - organization: *699 - project: &736 + enterprise: *700 + installation: *701 + organization: *702 + project: &739 title: Project type: object properties: @@ -158764,7 +159011,7 @@ webhooks: - creator - created_at - updated_at - repository: *700 + repository: *703 sender: *4 required: - action @@ -158844,10 +159091,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - project_column: &735 + enterprise: *700 + installation: *701 + organization: *702 + project_column: &738 title: Project Column type: object properties: @@ -158887,7 +159134,7 @@ webhooks: - name - created_at - updated_at - repository: *700 + repository: *703 sender: *4 required: - action @@ -158966,14 +159213,14 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - project_column: *735 + enterprise: *700 + installation: *701 + organization: *702 + project_column: *738 repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -159062,11 +159309,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - project_column: *735 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_column: *738 + repository: *703 sender: *4 required: - action @@ -159146,11 +159393,11 @@ webhooks: type: string enum: - moved - enterprise: *697 - installation: *698 - organization: *699 - project_column: *735 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_column: *738 + repository: *703 sender: *4 required: - action @@ -159230,11 +159477,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - project: *736 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 + repository: *703 sender: *4 required: - action @@ -159314,14 +159561,14 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - project: *736 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -159422,11 +159669,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - project: *736 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 + repository: *703 sender: *4 required: - action @@ -159505,11 +159752,11 @@ webhooks: type: string enum: - reopened - enterprise: *697 - installation: *698 - organization: *699 - project: *736 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 + repository: *703 sender: *4 required: - action @@ -159590,9 +159837,9 @@ webhooks: type: string enum: - closed - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -159673,9 +159920,9 @@ webhooks: type: string enum: - created - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -159756,9 +160003,9 @@ webhooks: type: string enum: - deleted - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -159879,9 +160126,9 @@ webhooks: type: string to: type: string - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -159964,7 +160211,7 @@ webhooks: type: string enum: - archived - changes: &740 + changes: &743 type: object properties: archived_at: @@ -159980,9 +160227,9 @@ webhooks: - string - 'null' format: date-time - installation: *698 - organization: *699 - projects_v2_item: &737 + installation: *701 + organization: *702 + projects_v2_item: &740 title: Projects v2 Item description: An item belonging to a project type: object @@ -160000,7 +160247,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *259 + content_type: *262 creator: *4 created_at: type: string @@ -160122,9 +160369,9 @@ webhooks: - 'null' to: type: string - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -160206,9 +160453,9 @@ webhooks: type: string enum: - created - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -160289,9 +160536,9 @@ webhooks: type: string enum: - deleted - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -160396,7 +160643,7 @@ webhooks: oneOf: - type: string - type: integer - - &738 + - &741 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -160420,7 +160667,7 @@ webhooks: required: - id - name - - &739 + - &742 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -160460,8 +160707,8 @@ webhooks: oneOf: - type: string - type: integer - - *738 - - *739 + - *741 + - *742 type: - 'null' - string @@ -160484,9 +160731,9 @@ webhooks: - 'null' required: - body - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -160583,9 +160830,9 @@ webhooks: type: - string - 'null' - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -160668,10 +160915,10 @@ webhooks: type: string enum: - restored - changes: *740 - installation: *698 - organization: *699 - projects_v2_item: *737 + changes: *743 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -160753,9 +161000,9 @@ webhooks: type: string enum: - reopened - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -160836,9 +161083,9 @@ webhooks: type: string enum: - created - installation: *698 - organization: *699 - projects_v2_status_update: *741 + installation: *701 + organization: *702 + projects_v2_status_update: *744 sender: *4 required: - action @@ -160919,9 +161166,9 @@ webhooks: type: string enum: - deleted - installation: *698 - organization: *699 - projects_v2_status_update: *741 + installation: *701 + organization: *702 + projects_v2_status_update: *744 sender: *4 required: - action @@ -161067,9 +161314,9 @@ webhooks: - string - 'null' format: date - installation: *698 - organization: *699 - projects_v2_status_update: *741 + installation: *701 + organization: *702 + projects_v2_status_update: *744 sender: *4 required: - action @@ -161140,10 +161387,10 @@ webhooks: title: public event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - repository @@ -161220,13 +161467,13 @@ webhooks: type: string enum: - assigned - assignee: *717 - enterprise: *697 - installation: *698 - number: &742 + assignee: *720 + enterprise: *700 + installation: *701 + number: &745 description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -163605,7 +163852,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -163687,11 +163934,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -166063,7 +166310,7 @@ webhooks: - draft reason: type: string - repository: *700 + repository: *703 sender: *4 required: - action @@ -166145,11 +166392,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -168521,7 +168768,7 @@ webhooks: - draft reason: type: string - repository: *700 + repository: *703 sender: *4 required: - action @@ -168603,13 +168850,13 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: &743 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: &746 allOf: - - *555 + - *558 - type: object properties: allow_auto_merge: @@ -168671,7 +168918,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *700 + repository: *703 sender: *4 required: - action @@ -168752,12 +168999,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -168837,11 +169084,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *697 - milestone: *256 - number: *742 - organization: *699 - pull_request: &744 + enterprise: *700 + milestone: *259 + number: *745 + organization: *702 + pull_request: &747 title: Pull Request type: object properties: @@ -171198,7 +171445,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -171277,11 +171524,11 @@ webhooks: type: string enum: - dequeued - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -173657,7 +173904,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *700 + repository: *703 sender: *4 required: - action @@ -173781,12 +174028,12 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -173866,11 +174113,11 @@ webhooks: type: string enum: - enqueued - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -176231,7 +176478,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -176311,11 +176558,11 @@ webhooks: type: string enum: - labeled - enterprise: *697 - installation: *698 - label: *716 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + label: *719 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -178693,7 +178940,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -178774,10 +179021,10 @@ webhooks: type: string enum: - locked - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -181153,7 +181400,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -181233,12 +181480,12 @@ webhooks: type: string enum: - milestoned - enterprise: *697 - milestone: *256 - number: *742 - organization: *699 - pull_request: *744 - repository: *700 + enterprise: *700 + milestone: *259 + number: *745 + organization: *702 + pull_request: *747 + repository: *703 sender: *4 required: - action @@ -181317,12 +181564,12 @@ webhooks: type: string enum: - opened - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -181403,12 +181650,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -181488,12 +181735,12 @@ webhooks: type: string enum: - reopened - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -181868,9 +182115,9 @@ webhooks: - start_side - side - reactions - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: type: object properties: @@ -184130,7 +184377,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *700 + repository: *703 sender: *4 required: - action @@ -184210,7 +184457,7 @@ webhooks: type: string enum: - deleted - comment: &746 + comment: &749 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -184503,9 +184750,9 @@ webhooks: - start_side - side - reactions - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: type: object properties: @@ -186753,7 +187000,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *700 + repository: *703 sender: *4 required: - action @@ -186833,11 +187080,11 @@ webhooks: type: string enum: - edited - changes: *745 - comment: *746 - enterprise: *697 - installation: *698 - organization: *699 + changes: *748 + comment: *749 + enterprise: *700 + installation: *701 + organization: *702 pull_request: type: object properties: @@ -189088,7 +189335,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *700 + repository: *703 sender: *4 required: - action @@ -189169,9 +189416,9 @@ webhooks: type: string enum: - dismissed - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -191434,7 +191681,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 + repository: *703 review: description: The review that was affected. type: object @@ -191685,9 +191932,9 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -193801,8 +194048,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 - review: &747 + repository: *703 + review: &750 description: The review that was affected. type: object properties: @@ -194040,12 +194287,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -196422,7 +196669,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_reviewer: title: User type: @@ -196508,12 +196755,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -198897,7 +199144,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199092,12 +199339,12 @@ webhooks: type: string enum: - review_requested - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -201476,7 +201723,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_reviewer: title: User type: @@ -201563,12 +201810,12 @@ webhooks: type: string enum: - review_requested - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -203938,7 +204185,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_team: title: Team description: Groups of organization members that gives permissions @@ -204122,9 +204369,9 @@ webhooks: type: string enum: - submitted - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -206390,8 +206637,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 - review: *747 + repository: *703 + review: *750 sender: *4 required: - action @@ -206471,9 +206718,9 @@ webhooks: type: string enum: - resolved - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -208634,7 +208881,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 + repository: *703 sender: *4 thread: type: object @@ -209031,9 +209278,9 @@ webhooks: type: string enum: - unresolved - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -211177,7 +211424,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 + repository: *703 sender: *4 thread: type: object @@ -211576,10 +211823,10 @@ webhooks: type: string before: type: string - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -213944,7 +214191,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -214026,11 +214273,11 @@ webhooks: type: string enum: - unassigned - assignee: *748 - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + assignee: *751 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -216410,7 +216657,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -216489,11 +216736,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *697 - installation: *698 - label: *716 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + label: *719 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -218862,7 +219109,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -218943,10 +219190,10 @@ webhooks: type: string enum: - unlocked - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -221305,7 +221552,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -221508,7 +221755,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *697 + enterprise: *700 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -221603,8 +221850,8 @@ webhooks: - url - author - committer - installation: *698 - organization: *699 + installation: *701 + organization: *702 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -222207,9 +222454,9 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 registry_package: type: object properties: @@ -222686,7 +222933,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *731 + items: *734 summary: type: string tag_name: @@ -222742,7 +222989,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -222820,9 +223067,9 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 registry_package: type: object properties: @@ -223134,7 +223381,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *731 + items: *734 summary: type: string tag_name: @@ -223184,7 +223431,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -223261,10 +223508,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - release: &749 + enterprise: *700 + installation: *701 + organization: *702 + release: &752 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -223595,7 +223842,7 @@ webhooks: - updated_at - zipball_url - body - repository: *700 + repository: *703 sender: *4 required: - action @@ -223672,11 +223919,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - release: *749 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *752 + repository: *703 sender: *4 required: - action @@ -223793,11 +224040,11 @@ webhooks: type: boolean required: - to - enterprise: *697 - installation: *698 - organization: *699 - release: *749 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *752 + repository: *703 sender: *4 required: - action @@ -223875,9 +224122,9 @@ webhooks: type: string enum: - prereleased - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -224213,7 +224460,7 @@ webhooks: - string - 'null' format: uri - repository: *700 + repository: *703 sender: *4 required: - action @@ -224289,10 +224536,10 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 - release: &750 + enterprise: *700 + installation: *701 + organization: *702 + release: &753 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -224625,7 +224872,7 @@ webhooks: - string - 'null' format: uri - repository: *700 + repository: *703 sender: *4 required: - action @@ -224701,11 +224948,11 @@ webhooks: type: string enum: - released - enterprise: *697 - installation: *698 - organization: *699 - release: *749 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *752 + repository: *703 sender: *4 required: - action @@ -224781,11 +225028,11 @@ webhooks: type: string enum: - unpublished - enterprise: *697 - installation: *698 - organization: *699 - release: *750 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *753 + repository: *703 sender: *4 required: - action @@ -224861,11 +225108,11 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_advisory: *619 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_advisory: *622 sender: *4 required: - action @@ -224941,11 +225188,11 @@ webhooks: type: string enum: - reported - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_advisory: *619 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_advisory: *622 sender: *4 required: - action @@ -225021,10 +225268,10 @@ webhooks: type: string enum: - archived - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225101,10 +225348,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225182,10 +225429,10 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225270,10 +225517,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225388,10 +225635,10 @@ webhooks: - 'null' items: type: string - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225463,10 +225710,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 status: type: string @@ -225547,10 +225794,10 @@ webhooks: type: string enum: - privatized - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225627,10 +225874,10 @@ webhooks: type: string enum: - publicized - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225724,10 +225971,10 @@ webhooks: - name required: - repository - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225807,11 +226054,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_ruleset: *298 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_ruleset: *301 sender: *4 required: - action @@ -225889,11 +226136,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_ruleset: *298 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_ruleset: *301 sender: *4 required: - action @@ -225971,11 +226218,11 @@ webhooks: type: string enum: - edited - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_ruleset: *298 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_ruleset: *301 changes: type: object properties: @@ -225994,16 +226241,16 @@ webhooks: properties: added: type: array - items: *272 + items: *275 deleted: type: array - items: *272 + items: *275 updated: type: array items: type: object properties: - condition: *272 + condition: *275 changes: type: object properties: @@ -226036,16 +226283,16 @@ webhooks: properties: added: type: array - items: *575 + items: *578 deleted: type: array - items: *575 + items: *578 updated: type: array items: type: object properties: - rule: *575 + rule: *578 changes: type: object properties: @@ -226282,10 +226529,10 @@ webhooks: - from required: - owner - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226363,10 +226610,10 @@ webhooks: type: string enum: - unarchived - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226444,7 +226691,7 @@ webhooks: type: string enum: - create - alert: &751 + alert: &754 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -226569,10 +226816,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226782,10 +227029,10 @@ webhooks: type: string enum: - dismissed - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226863,11 +227110,11 @@ webhooks: type: string enum: - reopen - alert: *751 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *754 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227069,10 +227316,10 @@ webhooks: enum: - fixed - open - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227150,17 +227397,17 @@ webhooks: type: string enum: - assigned - alert: &752 + alert: &755 type: object properties: - number: *163 - created_at: *164 + number: *166 + created_at: *167 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *168 + url: *169 + html_url: *170 locations_url: type: string format: uri @@ -227265,10 +227512,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227346,11 +227593,11 @@ webhooks: type: string enum: - created - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227431,11 +227678,11 @@ webhooks: type: string enum: - created - alert: *752 - installation: *698 - location: *753 - organization: *699 - repository: *700 + alert: *755 + installation: *701 + location: *756 + organization: *702 + repository: *703 sender: *4 required: - location @@ -227673,11 +227920,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227755,11 +228002,11 @@ webhooks: type: string enum: - reopened - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227837,11 +228084,11 @@ webhooks: type: string enum: - resolved - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227919,12 +228166,12 @@ webhooks: type: string enum: - unassigned - alert: *752 + alert: *755 assignee: *4 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -228002,11 +228249,11 @@ webhooks: type: string enum: - validated - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -228136,10 +228383,10 @@ webhooks: - organization - enterprise - - repository: *700 - enterprise: *697 - installation: *698 - organization: *699 + repository: *703 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -228217,11 +228464,11 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - security_advisory: &754 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + security_advisory: &757 description: The details of the security advisory, including summary, description, and severity. type: object @@ -228238,7 +228485,7 @@ webhooks: required: - vector_string - score - cvss_severities: *53 + cvss_severities: *55 cwes: type: array items: @@ -228407,11 +228654,11 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - security_advisory: *754 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + security_advisory: *757 sender: *4 required: - action @@ -228484,10 +228731,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -228505,7 +228752,7 @@ webhooks: required: - vector_string - score - cvss_severities: *53 + cvss_severities: *55 cwes: type: array items: @@ -228673,11 +228920,11 @@ webhooks: from: type: object properties: - security_and_analysis: *271 - enterprise: *697 - installation: *698 - organization: *699 - repository: *318 + security_and_analysis: *274 + enterprise: *700 + installation: *701 + organization: *702 + repository: *321 sender: *4 required: - changes @@ -228755,12 +229002,12 @@ webhooks: type: string enum: - cancelled - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: &755 + sponsorship: &758 type: object properties: created_at: @@ -229065,12 +229312,12 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - sponsorship @@ -229158,12 +229405,12 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - changes @@ -229240,17 +229487,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &756 + effective_date: &759 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: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - sponsorship @@ -229324,7 +229571,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &757 + changes: &760 type: object properties: tier: @@ -229368,13 +229615,13 @@ webhooks: - from required: - tier - effective_date: *756 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + effective_date: *759 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - changes @@ -229451,13 +229698,13 @@ webhooks: type: string enum: - tier_changed - changes: *757 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + changes: *760 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - changes @@ -229531,10 +229778,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -229618,10 +229865,10 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -230055,15 +230302,15 @@ webhooks: type: - string - 'null' - enterprise: *697 + enterprise: *700 id: description: The unique identifier of the status. type: integer - installation: *698 + installation: *701 name: type: string - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 sha: description: The Commit SHA. @@ -230173,15 +230420,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - parent_issue_repo: *69 + parent_issue: *75 + parent_issue_repo: *71 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - installation: *698 - organization: *699 - repository: *700 + sub_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -230265,15 +230512,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - parent_issue_repo: *69 + parent_issue: *75 + parent_issue_repo: *71 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - installation: *698 - organization: *699 - repository: *700 + sub_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -230357,15 +230604,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - sub_issue_repo: *69 + sub_issue: *75 + sub_issue_repo: *71 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - installation: *698 - organization: *699 - repository: *700 + parent_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -230449,15 +230696,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - sub_issue_repo: *69 + sub_issue: *75 + sub_issue_repo: *71 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - installation: *698 - organization: *699 - repository: *700 + parent_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -230534,12 +230781,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - team: &758 + team: &761 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -230769,9 +231016,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -231241,7 +231488,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -231317,9 +231564,9 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -231789,7 +232036,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -231866,9 +232113,9 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -232338,7 +232585,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -232482,9 +232729,9 @@ webhooks: - from required: - permissions - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -232954,7 +233201,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - changes @@ -233032,9 +233279,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -233504,7 +233751,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -233580,10 +233827,10 @@ webhooks: type: string enum: - started - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -233656,17 +233903,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *697 + enterprise: *700 inputs: type: - object - 'null' additionalProperties: true - installation: *698 - organization: *699 + installation: *701 + organization: *702 ref: type: string - repository: *700 + repository: *703 sender: *4 workflow: type: string @@ -233748,10 +233995,10 @@ webhooks: type: string enum: - completed - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: allOf: @@ -234007,7 +234254,7 @@ webhooks: type: string required: - conclusion - deployment: *471 + deployment: *474 required: - action - repository @@ -234086,10 +234333,10 @@ webhooks: type: string enum: - in_progress - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: allOf: @@ -234371,7 +234618,7 @@ webhooks: required: - status - steps - deployment: *471 + deployment: *474 required: - action - repository @@ -234450,10 +234697,10 @@ webhooks: type: string enum: - queued - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: type: object @@ -234599,7 +234846,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *471 + deployment: *474 required: - action - repository @@ -234678,10 +234925,10 @@ webhooks: type: string enum: - waiting - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: type: object @@ -234828,7 +235075,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *471 + deployment: *474 required: - action - repository @@ -234908,12 +235155,12 @@ webhooks: type: string enum: - completed - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Workflow Run type: object @@ -235932,12 +236179,12 @@ webhooks: type: string enum: - in_progress - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Workflow Run type: object @@ -236941,12 +237188,12 @@ webhooks: type: string enum: - requested - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 811cb559f..dca5fe22d 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -19037,6 +19037,349 @@ } } }, + "/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" + ], + "examples": [ + "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" + ], + "examples": [ + "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", @@ -85386,6 +85729,344 @@ } } }, + "/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" + ], + "examples": [ + "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" + ], + "examples": [ + "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-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 43b636a22..2d4255145 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -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 - - &43 + - &45 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 - - &44 + - &46 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 - - &51 + - &53 name: direction description: The direction to sort the results by. in: query @@ -664,7 +664,7 @@ paths: - vulnerable_version_range - first_patched_version - vulnerable_functions - cvss_severities: &53 + cvss_severities: &55 type: - object - 'null' @@ -711,7 +711,7 @@ paths: required: - vector_string - score - epss: &54 + epss: &56 type: - object - 'null' @@ -874,7 +874,7 @@ paths: - subscriptions_url - type - url - type: &304 + type: &307 type: string description: The type of credit the user is receiving. enum: @@ -1006,7 +1006,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &115 + schema: &117 title: Validation Error Simple description: Validation Error Simple type: object @@ -1039,7 +1039,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &621 + - &624 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1624,7 +1624,7 @@ paths: schema: type: integer default: 30 - - &195 + - &198 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 @@ -1640,7 +1640,7 @@ paths: application/json: schema: type: array - items: &196 + items: &199 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1736,7 +1736,7 @@ paths: - installation_id - repository_id examples: - default: &197 + default: &200 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1799,7 +1799,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &114 + schema: &116 title: Validation Error description: Validation Error type: object @@ -1871,7 +1871,7 @@ paths: description: Response content: application/json: - schema: &198 + schema: &201 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2006,7 +2006,7 @@ paths: - request - response examples: - default: &199 + default: &202 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2210,7 +2210,7 @@ paths: parameters: - *17 - *19 - - &78 + - &80 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) @@ -2798,7 +2798,7 @@ paths: suspended_at: suspended_by: headers: - Link: &57 + Link: &59 example: ; rel="next", ; rel="last" schema: @@ -2988,7 +2988,7 @@ paths: - selected repositories: type: array - items: &69 + items: &71 title: Repository description: A repository on GitHub. type: object @@ -3015,7 +3015,7 @@ paths: license: anyOf: - type: 'null' - - &75 + - &77 title: License Simple description: License Simple type: object @@ -5397,7 +5397,7 @@ paths: responses: '202': *37 '422': *7 - '500': &105 + '500': &107 description: Internal Error content: application/json: @@ -7472,6 +7472,148 @@ 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: + - *38 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &43 + 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 + examples: + - 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': *27 + 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: + - *38 + requestBody: + required: true + content: + application/json: + schema: &129 + 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: &44 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *43 + examples: + default: *44 + '400': + description: Invalid input + '403': *27 + '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: + - *38 + - 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': *27 + '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 @@ -7497,8 +7639,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -7506,7 +7648,7 @@ paths: application/json: schema: type: array - items: &45 + items: &47 type: object description: A code security configuration properties: @@ -7904,7 +8046,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &49 + code_scanning_options: &51 type: - object - 'null' @@ -7923,7 +8065,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &48 + code_scanning_default_setup_options: &50 type: - object - 'null' @@ -8050,9 +8192,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *45 + schema: *47 examples: - default: &46 + default: &48 value: id: 1325 target_type: enterprise @@ -8110,7 +8252,7 @@ paths: description: Response content: application/json: - schema: &174 + schema: &177 type: array description: A list of default code security configurations items: @@ -8124,9 +8266,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *45 + configuration: *47 examples: - default: &175 + default: &178 value: - default_for_new_repos: public configuration: @@ -8215,7 +8357,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *38 - - &47 + - &49 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -8227,9 +8369,9 @@ paths: description: Response content: application/json: - schema: *45 + schema: *47 examples: - default: *46 + default: *48 '304': *35 '403': *27 '404': *6 @@ -8254,7 +8396,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *38 - - *47 + - *49 requestBody: required: true content: @@ -8333,8 +8475,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *48 - code_scanning_options: *49 + code_scanning_default_setup_options: *50 + code_scanning_options: *51 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -8430,13 +8572,13 @@ paths: description: Response content: application/json: - schema: *45 + schema: *47 examples: - default: *46 + default: *48 '304': *35 '403': *27 '404': *6 - '409': &50 + '409': &52 description: Conflict content: application/json: @@ -8464,14 +8606,14 @@ paths: url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *38 - - *47 + - *49 responses: - '204': &176 + '204': &179 description: A header with no content is returned. '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -8496,7 +8638,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *38 - - *47 + - *49 requestBody: required: true content: @@ -8523,7 +8665,7 @@ paths: '202': *37 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -8548,7 +8690,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *38 - - *47 + - *49 requestBody: required: true content: @@ -8588,12 +8730,12 @@ paths: - none - private_and_internal - public - configuration: *45 + configuration: *47 examples: default: value: default_for_new_repos: all - configuration: &173 + configuration: &176 value: id: 1325 target_type: organization @@ -8650,7 +8792,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *38 - - *47 + - *49 - 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)." @@ -8659,8 +8801,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -8678,7 +8820,7 @@ paths: application/json: schema: type: array - items: &177 + items: &180 type: object description: Repositories associated with a code security configuration and attachment status @@ -8696,7 +8838,7 @@ paths: - failed - updating - removed_by_enterprise - repository: &56 + repository: &58 title: Simple Repository description: A GitHub repository. type: object @@ -9023,7 +9165,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &178 + repository: &181 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -9117,7 +9259,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *38 - - &181 + - &184 name: state in: query description: |- @@ -9126,7 +9268,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &182 + - &185 name: severity in: query description: |- @@ -9135,7 +9277,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &183 + - &186 name: ecosystem in: query description: |- @@ -9144,14 +9286,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &184 + - &187 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 - - &185 + - &188 name: epss_percentage in: query description: |- @@ -9163,7 +9305,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 - - &461 + - &464 name: has in: query description: |- @@ -9177,7 +9319,7 @@ paths: type: string enum: - patch - - &186 + - &189 name: assignee in: query description: |- @@ -9186,7 +9328,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &187 + - &190 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9196,7 +9338,7 @@ paths: enum: - development - runtime - - &188 + - &191 name: sort in: query description: |- @@ -9211,9 +9353,9 @@ paths: - updated - epss_percentage default: created - - *51 - - *43 - - *44 + - *53 + - *45 + - *46 - *17 responses: '200': @@ -9222,11 +9364,11 @@ paths: application/json: schema: type: array - items: &189 + items: &192 type: object description: A Dependabot alert. properties: - number: &163 + number: &166 type: integer description: The security alert number. readOnly: true @@ -9244,7 +9386,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &52 + package: &54 type: object description: Details for the vulnerable package. readOnly: true @@ -9292,7 +9434,7 @@ paths: - direct - transitive - - security_advisory: &462 + security_advisory: &465 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9323,13 +9465,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &55 + items: &57 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *52 + package: *54 severity: type: string description: The severity of the vulnerability. @@ -9375,8 +9517,8 @@ paths: - medium - high - critical - cvss_severities: *53 - epss: *54 + cvss_severities: *55 + epss: *56 cwes: type: array description: Details for the advisory pertaining to Common @@ -9475,30 +9617,30 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *55 - url: &166 + security_vulnerability: *57 + url: &169 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &167 + html_url: &170 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &164 + created_at: &167 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: &165 + updated_at: &168 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: &169 + dismissed_at: &172 type: - string - 'null' @@ -9529,7 +9671,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: &168 + fixed_at: &171 type: - string - 'null' @@ -9537,7 +9679,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &463 + auto_dismissed_at: &466 type: - string - 'null' @@ -9545,7 +9687,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &464 + dismissal_request: &467 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -9589,7 +9731,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *56 + repository: *58 required: - number - state @@ -9608,7 +9750,7 @@ paths: - repository additionalProperties: false examples: - default: &190 + default: &193 value: - number: 2 state: dismissed @@ -9977,7 +10119,7 @@ paths: application/json: schema: type: array - items: &58 + items: &60 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -10055,7 +10197,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -10130,9 +10272,9 @@ paths: description: Response content: application/json: - schema: *58 + schema: *60 examples: - default: &66 + default: &68 value: id: 1 name: Justice League @@ -10161,7 +10303,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *38 - - &59 + - &61 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -10180,7 +10322,7 @@ paths: type: array items: *4 examples: - default: &60 + default: &62 value: - login: octocat id: 1 @@ -10201,7 +10343,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10219,7 +10361,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10250,7 +10392,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10268,7 +10410,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10299,7 +10441,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10317,8 +10459,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *38 - - *59 - - &61 + - *61 + - &63 name: username description: The handle for the GitHub user account. in: path @@ -10332,7 +10474,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &62 + exampleKey1: &64 value: login: octocat id: 1 @@ -10368,8 +10510,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *38 - - *59 - *61 + - *63 responses: '201': description: Successfully added team member @@ -10377,7 +10519,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *62 + exampleKey1: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10395,8 +10537,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *38 - - *59 - *61 + - *63 responses: '204': description: Response @@ -10418,7 +10560,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *38 - - *59 + - *61 - *17 - *19 responses: @@ -10428,7 +10570,7 @@ paths: application/json: schema: type: array - items: &63 + items: &65 title: Organization Simple description: A GitHub organization. type: object @@ -10500,7 +10642,7 @@ paths: - avatar_url - description examples: - default: &64 + default: &66 value: login: github id: 1 @@ -10531,7 +10673,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10559,9 +10701,9 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: &102 + default: &104 value: - login: github id: 1 @@ -10592,7 +10734,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10633,8 +10775,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *38 - - *59 - - &65 + - *61 + - &67 name: org description: The organization name. The name is not case sensitive. in: path @@ -10646,9 +10788,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *63 + schema: *65 examples: - default: *64 + default: *66 '404': description: The team is not assigned to the organization x-github: @@ -10667,16 +10809,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *38 - - *59 - - *65 + - *61 + - *67 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *63 + schema: *65 examples: - default: *64 + default: *66 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10693,8 +10835,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *38 - - *59 - - *65 + - *61 + - *67 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -10718,7 +10860,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *38 - - &67 + - &69 name: team_slug description: The slug of the team name. in: path @@ -10730,11 +10872,11 @@ paths: description: Response content: application/json: - schema: *58 + schema: *60 examples: - default: *66 + default: *68 headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -10752,7 +10894,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *38 - - *67 + - *69 requestBody: required: true content: @@ -10810,11 +10952,11 @@ paths: description: Response content: application/json: - schema: *58 + schema: *60 examples: - default: *66 + default: *68 headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -10835,7 +10977,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *38 - - *67 + - *69 responses: '204': description: Response @@ -10873,7 +11015,7 @@ paths: application/json: schema: type: array - items: &97 + items: &99 title: Event description: Event type: object @@ -10884,7 +11026,7 @@ paths: type: - string - 'null' - actor: &68 + actor: &70 title: Actor description: Actor type: object @@ -10925,7 +11067,7 @@ paths: - id - name - url - org: *68 + org: *70 payload: oneOf: - title: CreateEvent @@ -10972,7 +11114,7 @@ paths: properties: action: type: string - discussion: &713 + discussion: &716 title: Discussion description: A Discussion in a repository. type: object @@ -11269,7 +11411,7 @@ paths: - id labels: type: array - items: &72 + items: &74 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -11352,7 +11494,7 @@ paths: properties: action: type: string - issue: &73 + issue: &75 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -11469,7 +11611,7 @@ paths: milestone: anyOf: - type: 'null' - - &256 + - &259 title: Milestone description: A collection of related issues and pull requests. @@ -11646,7 +11788,7 @@ paths: timeline_url: type: string format: uri - type: &220 + type: &223 title: Issue Type description: The type of issue. type: @@ -11700,12 +11842,12 @@ paths: - node_id - name - description - repository: *69 + repository: *71 performed_via_github_app: anyOf: - type: 'null' - *5 - author_association: &70 + author_association: &72 title: author_association type: string description: How the author is associated with the @@ -11721,7 +11863,7 @@ paths: - OWNER examples: - OWNER - reactions: &71 + reactions: &73 title: Reaction Rollup type: object properties: @@ -11757,7 +11899,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &633 + sub_issues_summary: &636 title: Sub-issues Summary type: object properties: @@ -11781,7 +11923,7 @@ paths: pinned_comment: anyOf: - type: 'null' - - &74 + - &76 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11832,16 +11974,16 @@ paths: issue_url: type: string format: uri - author_association: *70 + author_association: *72 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *71 + reactions: *73 pin: anyOf: - type: 'null' - - &534 + - &537 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -11868,7 +12010,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &634 + issue_dependencies_summary: &637 title: Issue Dependencies Summary type: object properties: @@ -11887,7 +12029,7 @@ paths: - total_blocking issue_field_values: type: array - items: &519 + items: &522 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11986,10 +12128,10 @@ paths: assignees: type: array items: *4 - label: *72 + label: *74 labels: type: array - items: *72 + items: *74 required: - action - issue @@ -11998,8 +12140,8 @@ paths: properties: action: type: string - issue: *73 - comment: *74 + issue: *75 + comment: *76 required: - action - issue @@ -12180,7 +12322,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 allow_forking: type: boolean is_template: @@ -12271,7 +12413,7 @@ paths: type: string number: type: integer - pull_request: &76 + pull_request: &78 title: Pull Request Minimal type: object properties: @@ -12342,10 +12484,10 @@ paths: assignees: type: array items: *4 - label: *72 + label: *74 labels: type: array - items: *72 + items: *74 required: - action - number @@ -12355,7 +12497,7 @@ paths: properties: action: type: string - pull_request: *76 + pull_request: *78 comment: type: object properties: @@ -12609,7 +12751,7 @@ paths: - pull_request updated_at: type: string - pull_request: *76 + pull_request: *78 required: - action - review @@ -12658,7 +12800,7 @@ paths: updated_at: type: string format: date-time - reactions: *71 + reactions: *73 required: - action - comment @@ -12669,7 +12811,7 @@ paths: type: string release: allOf: - - &566 + - &569 title: Release description: A release. type: object @@ -12751,7 +12893,7 @@ paths: author: *4 assets: type: array - items: &567 + items: &570 title: Release Asset description: Data related to a release. type: object @@ -12826,7 +12968,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *71 + reactions: *73 required: - assets_url - upload_url @@ -12919,7 +13061,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': &106 + '503': &108 description: Service unavailable content: application/json: @@ -13021,7 +13163,7 @@ paths: _links: type: object properties: - timeline: &77 + timeline: &79 title: Link With Type description: Hypermedia Link with Type type: object @@ -13033,17 +13175,17 @@ paths: required: - href - type - user: *77 - security_advisories: *77 - current_user: *77 - current_user_public: *77 - current_user_actor: *77 - current_user_organization: *77 + user: *79 + security_advisories: *79 + current_user: *79 + current_user_public: *79 + current_user_actor: *79 + current_user_organization: *79 current_user_organizations: type: array - items: *77 - repository_discussions: *77 - repository_discussions_category: *77 + items: *79 + repository_discussions: *79 + repository_discussions_category: *79 required: - timeline - user @@ -13105,7 +13247,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *78 + - *80 - *17 - *19 responses: @@ -13115,7 +13257,7 @@ paths: application/json: schema: type: array - items: &79 + items: &81 title: Base Gist description: Base Gist type: object @@ -13201,7 +13343,7 @@ paths: - created_at - updated_at examples: - default: &80 + default: &82 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -13246,7 +13388,7 @@ paths: site_admin: false truncated: false headers: - Link: *57 + Link: *59 '304': *35 '403': *27 x-github: @@ -13325,7 +13467,7 @@ paths: description: Response content: application/json: - schema: &81 + schema: &83 title: Gist Simple description: Gist Simple type: object @@ -13492,7 +13634,7 @@ paths: truncated: type: boolean examples: - default: &82 + default: &84 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -13596,7 +13738,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *78 + - *80 - *17 - *19 responses: @@ -13606,11 +13748,11 @@ paths: application/json: schema: type: array - items: *79 + items: *81 examples: - default: *80 + default: *82 headers: - Link: *57 + Link: *59 '422': *15 '304': *35 '403': *27 @@ -13630,7 +13772,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *78 + - *80 - *17 - *19 responses: @@ -13640,11 +13782,11 @@ paths: application/json: schema: type: array - items: *79 + items: *81 examples: - default: *80 + default: *82 headers: - Link: *57 + Link: *59 '401': *23 '304': *35 '403': *27 @@ -13670,7 +13812,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &83 + - &85 name: gist_id description: The unique identifier of the gist. in: path @@ -13682,10 +13824,10 @@ paths: description: Response content: application/json: - schema: *81 + schema: *83 examples: - default: *82 - '403': &86 + default: *84 + '403': &88 description: Forbidden Gist content: application/json: @@ -13734,7 +13876,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *83 + - *85 requestBody: required: true content: @@ -13798,9 +13940,9 @@ paths: description: Response content: application/json: - schema: *81 + schema: *83 examples: - updateGist: *82 + updateGist: *84 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -13958,7 +14100,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *83 + - *85 responses: '204': description: Response @@ -13987,7 +14129,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *83 + - *85 - *17 - *19 responses: @@ -13997,7 +14139,7 @@ paths: application/json: schema: type: array - items: &84 + items: &86 title: Gist Comment description: A comment made to a gist. type: object @@ -14035,7 +14177,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *70 + author_association: *72 required: - url - id @@ -14075,7 +14217,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -14100,7 +14242,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *83 + - *85 requestBody: required: true content: @@ -14126,9 +14268,9 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: &85 + default: &87 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -14186,8 +14328,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *83 - - &87 + - *85 + - &89 name: comment_id description: The unique identifier of the comment. in: path @@ -14200,12 +14342,12 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *85 + default: *87 '304': *35 '404': *6 - '403': *86 + '403': *88 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14227,8 +14369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *83 - - *87 + - *85 + - *89 requestBody: required: true content: @@ -14254,9 +14396,9 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *85 + default: *87 '404': *6 x-github: githubCloudOnly: false @@ -14273,8 +14415,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *83 - - *87 + - *85 + - *89 responses: '204': description: Response @@ -14297,7 +14439,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *83 + - *85 - *17 - *19 responses: @@ -14398,7 +14540,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *83 + - *85 - *17 - *19 responses: @@ -14408,7 +14550,7 @@ paths: application/json: schema: type: array - items: *81 + items: *83 examples: default: value: @@ -14454,7 +14596,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '404': *6 '304': *35 '403': *27 @@ -14473,13 +14615,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *83 + - *85 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: default: value: @@ -14550,7 +14692,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *83 + - *85 responses: '204': description: Response if gist is starred @@ -14580,7 +14722,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *83 + - *85 responses: '204': description: Response @@ -14602,7 +14744,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *83 + - *85 responses: '204': description: Response @@ -14631,7 +14773,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *83 + - *85 - name: sha in: path required: true @@ -14642,9 +14784,9 @@ paths: description: Response content: application/json: - schema: *81 + schema: *83 examples: - default: *82 + default: *84 '422': *15 '404': *6 '403': *27 @@ -14807,7 +14949,7 @@ paths: type: array items: allOf: - - *69 + - *71 repository_selection: type: string examples: @@ -14931,7 +15073,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *57 + Link: *59 '403': *27 '304': *35 '401': *23 @@ -15015,7 +15157,7 @@ paths: - closed - all default: open - - &223 + - &226 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15033,8 +15175,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - name: collab in: query required: false @@ -15064,9 +15206,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: &224 + default: &227 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15311,7 +15453,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *57 + Link: *59 '422': *15 '304': *35 '404': *6 @@ -15346,7 +15488,7 @@ paths: application/json: schema: type: array - items: *75 + items: *77 examples: default: value: @@ -15644,7 +15786,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &88 + X-CommonMarker-Version: &90 example: 0.17.4 schema: type: string @@ -15699,7 +15841,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *88 + X-CommonMarker-Version: *90 content: text/html: schema: @@ -15728,7 +15870,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &91 + - &93 name: account_id description: account_id parameter in: path @@ -15740,7 +15882,7 @@ paths: description: Response content: application/json: - schema: &90 + schema: &92 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -15774,7 +15916,7 @@ paths: - 'null' id: type: integer - plan: &89 + plan: &91 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -15877,7 +16019,7 @@ paths: - 'null' updated_at: type: string - plan: *89 + plan: *91 required: - url - id @@ -15885,7 +16027,7 @@ paths: - login - marketplace_purchase examples: - default: &92 + default: &94 value: url: https://api.github.com/orgs/github type: Organization @@ -15970,9 +16112,9 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: - default: &93 + default: &95 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -15990,7 +16132,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *57 + Link: *59 '404': *6 '401': *23 x-github: @@ -16012,14 +16154,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &94 + - &96 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &95 + - &97 name: sort description: The property to sort the results by. in: query @@ -16049,9 +16191,9 @@ paths: application/json: schema: type: array - items: *90 + items: *92 examples: - default: &96 + default: &98 value: - url: https://api.github.com/orgs/github type: Organization @@ -16102,7 +16244,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *57 + Link: *59 '404': *6 '422': *15 '401': *23 @@ -16125,15 +16267,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *91 + - *93 responses: '200': description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *92 + default: *94 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -16165,11 +16307,11 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: - default: *93 + default: *95 headers: - Link: *57 + Link: *59 '401': *23 x-github: githubCloudOnly: false @@ -16190,8 +16332,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *94 - - *95 + - *96 + - *97 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -16211,11 +16353,11 @@ paths: application/json: schema: type: array - items: *90 + items: *92 examples: - default: *96 + default: *98 headers: - Link: *57 + Link: *59 '401': *23 x-github: githubCloudOnly: false @@ -16478,14 +16620,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &315 + - &318 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &316 + - &319 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -16502,7 +16644,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -16547,7 +16689,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &319 + '301': &322 description: Moved permanently content: application/json: @@ -16569,7 +16711,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &542 + - &545 name: all description: If `true`, show notifications marked as read. in: query @@ -16577,7 +16719,7 @@ paths: schema: type: boolean default: false - - &543 + - &546 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16586,8 +16728,8 @@ paths: schema: type: boolean default: false - - *78 - - &544 + - *80 + - &547 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: @@ -16612,14 +16754,14 @@ paths: application/json: schema: type: array - items: &98 + items: &100 title: Thread description: Thread type: object properties: id: type: string - repository: &145 + repository: &148 title: Minimal Repository description: Minimal Repository type: object @@ -16969,7 +17111,7 @@ paths: type: boolean examples: - false - security_and_analysis: &271 + security_and_analysis: &274 type: - object - 'null' @@ -17173,7 +17315,7 @@ paths: - url - subscription_url examples: - default: &545 + default: &548 value: - id: '1' repository: @@ -17255,7 +17397,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -17339,7 +17481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &99 + - &101 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 @@ -17353,7 +17495,7 @@ paths: description: Response content: application/json: - schema: *98 + schema: *100 examples: default: value: @@ -17455,7 +17597,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *99 + - *101 responses: '205': description: Reset Content @@ -17477,7 +17619,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *99 + - *101 responses: '204': description: No content @@ -17500,13 +17642,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *99 + - *101 responses: '200': description: Response content: application/json: - schema: &100 + schema: &102 title: Thread Subscription description: Thread Subscription type: object @@ -17550,7 +17692,7 @@ paths: - url - subscribed examples: - default: &101 + default: &103 value: subscribed: true ignored: false @@ -17581,7 +17723,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *99 + - *101 requestBody: required: false content: @@ -17602,9 +17744,9 @@ paths: description: Response content: application/json: - schema: *100 + schema: *102 examples: - default: *101 + default: *103 '304': *35 '403': *27 '401': *23 @@ -17627,7 +17769,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *99 + - *101 responses: '204': description: Response @@ -17722,9 +17864,9 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: *102 + default: *104 headers: Link: example: ; rel="next" @@ -17751,13 +17893,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &103 + schema: &105 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -17791,12 +17933,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: *103 + schema: *105 examples: selected_actions: *40 responses: @@ -17825,13 +17967,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &104 + schema: &106 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -17865,12 +18007,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: *104 + schema: *106 examples: selected_actions: *42 responses: @@ -17899,7 +18041,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: - - *65 + - *67 - name: page in: query description: The page number of results to fetch. @@ -17945,7 +18087,7 @@ paths: items: anyOf: - type: 'null' - - *56 + - *58 additionalProperties: false examples: default: @@ -18050,7 +18192,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -18116,7 +18258,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *65 + - *67 requestBody: required: true content: @@ -18166,7 +18308,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *65 + - *67 - name: page description: The page number of the results to fetch. in: query @@ -18323,7 +18465,7 @@ paths: total_count: 3 '404': *6 '403': *27 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18344,8 +18486,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *65 - - &107 + - *67 + - &109 name: budget_id description: The ID corresponding to the budget. in: path @@ -18447,8 +18589,8 @@ paths: '400': *14 '404': *6 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18468,8 +18610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *65 - - *107 + - *67 + - *109 requestBody: required: true content: @@ -18661,8 +18803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *65 - - *107 + - *67 + - *109 responses: '200': description: Response when deleting a budget @@ -18688,8 +18830,8 @@ paths: '400': *14 '404': *6 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18709,8 +18851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *65 - - &108 + - *67 + - &110 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, @@ -18719,7 +18861,7 @@ paths: required: false schema: type: integer - - &110 + - &112 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 @@ -18728,7 +18870,7 @@ paths: required: false schema: type: integer - - &109 + - &111 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 @@ -18743,14 +18885,14 @@ paths: required: false schema: type: string - - &690 + - &693 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &111 + - &113 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18866,8 +19008,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18887,9 +19029,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *65 - - *108 - - &691 + - *67 + - *110 + - &694 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 @@ -18898,7 +19040,7 @@ paths: required: false schema: type: integer - - *109 + - *111 responses: '200': description: Billing usage report response for an organization @@ -18973,8 +19115,8 @@ paths: repositoryName: github/example '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18997,19 +19139,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *65 - - *108 + - *67 - *110 - - *109 - - &692 + - *112 + - *111 + - &695 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *111 - - &693 + - *113 + - &696 name: sku description: The SKU to query for usage. in: query @@ -19119,8 +19261,8 @@ paths: netAmount: 8.0 '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19146,13 +19288,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &112 + schema: &114 title: Organization Full description: Organization Full type: object @@ -19541,7 +19683,7 @@ paths: - updated_at - archived_at examples: - default-response: &113 + default-response: &115 value: login: github id: 1 @@ -19640,7 +19782,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *65 + - *67 requestBody: required: false content: @@ -19853,18 +19995,18 @@ paths: description: Response content: application/json: - schema: *112 + schema: *114 examples: - default: *113 + default: *115 '422': description: Validation failed content: application/json: schema: oneOf: - - *114 - - *115 - '409': *50 + - *116 + - *117 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19887,7 +20029,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *65 + - *67 responses: '202': *37 '404': *6 @@ -19913,7 +20055,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -19939,7 +20081,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19960,7 +20102,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: - - *65 + - *67 - *17 - *19 responses: @@ -19978,7 +20120,7 @@ paths: type: integer repository_cache_usages: type: array - items: &326 + items: &329 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -20016,7 +20158,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20036,7 +20178,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -20054,7 +20196,7 @@ paths: type: integer runners: type: array - items: &116 + items: &118 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -20117,7 +20259,7 @@ paths: - size_gb - display_name - source - machine_size_details: &124 + machine_size_details: &126 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -20226,7 +20368,7 @@ paths: - public_ip_enabled - platform examples: - default: &144 + default: &147 value: total_count: 2 runners: @@ -20268,7 +20410,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20286,7 +20428,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -20364,9 +20506,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: &125 + default: &127 value: id: 5 name: My hosted ubuntu runner @@ -20407,7 +20549,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -20423,7 +20565,7 @@ paths: type: integer images: type: array - items: &117 + items: &119 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -20482,7 +20624,7 @@ paths: - latest_version - state examples: - default: &119 + default: &121 value: total_count: 2 image_versions: @@ -20513,8 +20655,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: - - *65 - - &118 + - *67 + - &120 name: image_definition_id description: Image definition ID of custom image in: path @@ -20526,7 +20668,7 @@ paths: description: Response content: application/json: - schema: *117 + schema: *119 examples: default: value: @@ -20556,8 +20698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *65 - - *118 + - *67 + - *120 responses: '204': description: Response @@ -20580,8 +20722,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: - - *118 - - *65 + - *120 + - *67 responses: '200': description: Response @@ -20597,7 +20739,7 @@ paths: type: integer image_versions: type: array - items: &120 + items: &122 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20635,7 +20777,7 @@ paths: - created_on - state_details examples: - default: *119 + default: *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20655,9 +20797,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: - - *65 - - *118 - - &121 + - *67 + - *120 + - &123 name: version description: Version of a custom image in: path @@ -20670,7 +20812,7 @@ paths: description: Response content: application/json: - schema: *120 + schema: *122 examples: default: value: @@ -20696,9 +20838,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: - - *65 - - *118 - - *121 + - *67 + - *120 + - *123 responses: '204': description: Response @@ -20719,7 +20861,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: - - *65 + - *67 responses: '200': description: Response @@ -20735,7 +20877,7 @@ paths: type: integer images: type: array - items: &122 + items: &124 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20775,7 +20917,7 @@ paths: - display_name - source examples: - default: &123 + default: &125 value: id: ubuntu-20.04 platform: linux-x64 @@ -20799,7 +20941,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: - - *65 + - *67 responses: '200': description: Response @@ -20815,9 +20957,9 @@ paths: type: integer images: type: array - items: *122 + items: *124 examples: - default: *123 + default: *125 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20834,7 +20976,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: - - *65 + - *67 responses: '200': description: Response @@ -20889,7 +21031,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: - - *65 + - *67 responses: '200': description: Response @@ -20905,7 +21047,7 @@ paths: type: integer machine_specs: type: array - items: *124 + items: *126 examples: default: value: @@ -20930,7 +21072,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: - - *65 + - *67 responses: '200': description: Response @@ -20974,8 +21116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *65 - - &126 + - *67 + - &128 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -20987,11 +21129,11 @@ paths: description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: *125 + default: *127 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21009,8 +21151,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *65 - - *126 + - *67 + - *128 requestBody: required: true content: @@ -21063,9 +21205,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: *125 + default: *127 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21081,21 +21223,126 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *65 - - *126 + - *67 + - *128 responses: '202': description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: *125 + default: *127 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: + - *67 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *43 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *27 + 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: + - *67 + requestBody: + required: true + content: + application/json: + schema: *129 + examples: + default: *44 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *43 + examples: + default: *44 + '400': + description: Invalid input + '403': *27 + '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: + - *67 + - 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': *27 + '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 @@ -21110,13 +21357,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: - - *65 + - *67 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &127 + schema: &130 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -21130,7 +21377,7 @@ paths: required: - include_claim_keys examples: - default: &128 + default: &131 value: include_claim_keys: - repo @@ -21152,20 +21399,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: - - *65 + - *67 requestBody: required: true content: application/json: - schema: *127 + schema: *130 examples: - default: *128 + default: *131 responses: '201': description: Empty response content: application/json: - schema: &154 + schema: &157 title: Empty Object description: An object without any properties. type: object @@ -21195,7 +21442,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -21204,7 +21451,7 @@ paths: schema: type: object properties: - enabled_repositories: &129 + enabled_repositories: &132 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -21217,7 +21464,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: &130 + allowed_actions: &133 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -21225,12 +21472,12 @@ paths: - all - local_only - selected - selected_actions_url: &332 + selected_actions_url: &335 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: &131 + sha_pinning_required: &134 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -21261,7 +21508,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -21272,9 +21519,9 @@ paths: schema: type: object properties: - enabled_repositories: *129 - allowed_actions: *130 - sha_pinning_required: *131 + enabled_repositories: *132 + allowed_actions: *133 + sha_pinning_required: *134 required: - enabled_repositories examples: @@ -21302,13 +21549,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &336 + schema: &339 type: object properties: days: @@ -21345,12 +21592,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: &337 + schema: &340 type: object properties: days: @@ -21367,7 +21614,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -21387,13 +21634,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &132 + schema: &135 type: object properties: approval_policy: @@ -21407,7 +21654,7 @@ paths: required: - approval_policy examples: - default: &338 + default: &341 value: approval_policy: first_time_contributors '404': *6 @@ -21428,7 +21675,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -21438,7 +21685,7 @@ paths: required: true content: application/json: - schema: *132 + schema: *135 examples: default: summary: Set approval policy to first time contributors @@ -21460,13 +21707,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: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &339 + schema: &342 type: object required: - run_workflows_from_fork_pull_requests @@ -21492,7 +21739,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &133 + default: &136 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -21515,12 +21762,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: - - *65 + - *67 requestBody: required: true content: application/json: - schema: &340 + schema: &343 type: object required: - run_workflows_from_fork_pull_requests @@ -21543,7 +21790,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *133 + default: *136 responses: '204': description: Empty response for successful settings update @@ -21573,7 +21820,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: - - *65 + - *67 - *17 - *19 responses: @@ -21591,9 +21838,9 @@ paths: type: number repositories: type: array - items: *69 + items: *71 examples: - default: &137 + default: &140 value: total_count: 1 repositories: @@ -21733,7 +21980,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: - - *65 + - *67 responses: '204': description: Response @@ -21777,8 +22024,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: - - *65 - - &134 + - *67 + - &137 name: repository_id description: The unique identifier of the repository. in: path @@ -21806,8 +22053,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: Response @@ -21830,13 +22077,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &135 + schema: &138 type: object properties: github_owned_allowed: @@ -21858,7 +22105,7 @@ paths: items: type: string examples: - default: &136 + default: &139 value: github_owned_allowed: true verified_allowed: false @@ -21883,7 +22130,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -21891,9 +22138,9 @@ paths: required: false content: application/json: - schema: *135 + schema: *138 examples: - selected_actions: *136 + selected_actions: *139 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21913,7 +22160,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -21961,7 +22208,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -21988,7 +22235,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -22008,7 +22255,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: - - *65 + - *67 - *17 - *19 responses: @@ -22023,9 +22270,9 @@ paths: type: integer repositories: type: array - items: *69 + items: *71 examples: - default: *137 + default: *140 '403': *27 '404': *6 x-github: @@ -22045,7 +22292,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: - - *65 + - *67 requestBody: required: true content: @@ -22093,14 +22340,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -22120,14 +22367,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -22149,23 +22396,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &341 + schema: &344 type: object properties: - default_workflow_permissions: &138 + default_workflow_permissions: &141 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &139 + can_approve_pull_request_reviews: &142 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -22173,7 +22420,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &140 + default: &143 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -22198,7 +22445,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Success response @@ -22206,13 +22453,13 @@ paths: required: false content: application/json: - schema: &342 + schema: &345 type: object properties: - default_workflow_permissions: *138 - can_approve_pull_request_reviews: *139 + default_workflow_permissions: *141 + can_approve_pull_request_reviews: *142 examples: - default: *140 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22232,7 +22479,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: - - *65 + - *67 - *17 - *19 - name: visible_to_repository @@ -22257,7 +22504,7 @@ paths: type: number runner_groups: type: array - items: &141 + items: &144 type: object properties: id: @@ -22374,7 +22621,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: - - *65 + - *67 requestBody: required: true content: @@ -22447,9 +22694,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: &143 + default: &146 value: id: 2 name: octo-runner-group @@ -22484,8 +22731,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: - - *65 - - &142 + - *67 + - &145 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -22497,7 +22744,7 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: default: value: @@ -22533,8 +22780,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: - - *65 - - *142 + - *67 + - *145 requestBody: required: true content: @@ -22590,9 +22837,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *143 + default: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22611,8 +22858,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: - - *65 - - *142 + - *67 + - *145 responses: '204': description: Response @@ -22635,8 +22882,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: - - *65 - - *142 + - *67 + - *145 - *17 - *19 responses: @@ -22654,11 +22901,11 @@ paths: type: number runners: type: array - items: *116 + items: *118 examples: - default: *144 + default: *147 headers: - Link: *57 + Link: *59 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22678,8 +22925,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: - - *65 - - *142 + - *67 + - *145 - *19 - *17 responses: @@ -22697,9 +22944,9 @@ paths: type: number repositories: type: array - items: *145 + items: *148 examples: - default: &642 + default: &645 value: total_count: 1 repositories: @@ -22951,8 +23198,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: - - *65 - - *142 + - *67 + - *145 requestBody: required: true content: @@ -22996,9 +23243,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: - - *65 - - *142 - - *134 + - *67 + - *145 + - *137 responses: '204': description: Response @@ -23020,9 +23267,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: - - *65 - - *142 - - *134 + - *67 + - *145 + - *137 responses: '204': description: Response @@ -23045,8 +23292,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: - - *65 - - *142 + - *67 + - *145 - *17 - *19 responses: @@ -23064,7 +23311,7 @@ paths: type: number runners: type: array - items: &147 + items: &150 title: Self hosted runners description: A self hosted runner type: object @@ -23098,7 +23345,7 @@ paths: type: boolean labels: type: array - items: &150 + items: &153 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -23128,7 +23375,7 @@ paths: - busy - labels examples: - default: &148 + default: &151 value: total_count: 2 runners: @@ -23168,7 +23415,7 @@ paths: name: no-gpu type: custom headers: - Link: *57 + Link: *59 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -23187,8 +23434,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: - - *65 - - *142 + - *67 + - *145 requestBody: required: true content: @@ -23232,9 +23479,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: - - *65 - - *142 - - &146 + - *67 + - *145 + - &149 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -23262,9 +23509,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: - - *65 - - *142 - - *146 + - *67 + - *145 + - *149 responses: '204': description: Response @@ -23294,7 +23541,7 @@ paths: in: query schema: type: string - - *65 + - *67 - *17 - *19 responses: @@ -23312,11 +23559,11 @@ paths: type: integer runners: type: array - items: *147 + items: *150 examples: - default: *148 + default: *151 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23338,7 +23585,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -23346,7 +23593,7 @@ paths: application/json: schema: type: array - items: &343 + items: &346 title: Runner Application description: Runner Application type: object @@ -23371,7 +23618,7 @@ paths: - download_url - filename examples: - default: &344 + default: &347 value: - os: osx architecture: x64 @@ -23414,7 +23661,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: - - *65 + - *67 requestBody: required: true content: @@ -23457,7 +23704,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &345 + '201': &348 description: Response content: application/json: @@ -23467,7 +23714,7 @@ paths: - runner - encoded_jit_config properties: - runner: *147 + runner: *150 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -23496,7 +23743,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23524,13 +23771,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *65 + - *67 responses: '201': description: Response content: application/json: - schema: &149 + schema: &152 title: Authentication Token description: Authentication Token type: object @@ -23554,7 +23801,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *69 + items: *71 single_file: type: - string @@ -23572,7 +23819,7 @@ paths: - token - expires_at examples: - default: &346 + default: &349 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -23603,15 +23850,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *65 + - *67 responses: '201': description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: &347 + default: &350 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -23636,16 +23883,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: - - *65 - - *146 + - *67 + - *149 responses: '200': description: Response content: application/json: - schema: *147 + schema: *150 examples: - default: &348 + default: &351 value: id: 23 name: MBP @@ -23686,8 +23933,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: - - *65 - - *146 + - *67 + - *149 responses: '204': description: Response @@ -23713,10 +23960,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: - - *65 - - *146 + - *67 + - *149 responses: - '200': &151 + '200': &154 description: Response content: application/json: @@ -23730,7 +23977,7 @@ paths: type: integer labels: type: array - items: *150 + items: *153 examples: default: value: @@ -23769,8 +24016,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: - - *65 - - *146 + - *67 + - *149 requestBody: required: true content: @@ -23794,7 +24041,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -23818,8 +24065,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: - - *65 - - *146 + - *67 + - *149 requestBody: required: true content: @@ -23844,7 +24091,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -23868,10 +24115,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: - - *65 - - *146 + - *67 + - *149 responses: - '200': &349 + '200': &352 description: Response content: application/json: @@ -23885,7 +24132,7 @@ paths: type: integer labels: type: array - items: *150 + items: *153 examples: default: value: @@ -23926,9 +24173,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: - - *65 - - *146 - - &350 + - *67 + - *149 + - &353 name: name description: The name of a self-hosted runner's custom label. in: path @@ -23936,7 +24183,7 @@ paths: schema: type: string responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -23961,7 +24208,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *65 + - *67 - *17 - *19 responses: @@ -23979,7 +24226,7 @@ paths: type: integer secrets: type: array - items: &152 + items: &155 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -24031,7 +24278,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24054,13 +24301,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &362 + schema: &365 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -24095,7 +24342,7 @@ paths: - key_id - key examples: - default: &363 + default: &366 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24120,8 +24367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *65 - - &153 + - *67 + - &156 name: secret_name description: The name of the secret. in: path @@ -24133,7 +24380,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *155 examples: default: value: @@ -24163,8 +24410,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -24221,7 +24468,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -24247,8 +24494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -24274,8 +24521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - *19 - *17 responses: @@ -24293,9 +24540,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: &157 + default: &160 value: total_count: 1 repositories: @@ -24387,8 +24634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -24440,8 +24687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -24474,8 +24721,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -24507,8 +24754,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *65 - - &331 + - *67 + - &334 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)." @@ -24532,7 +24779,7 @@ paths: type: integer variables: type: array - items: &155 + items: &158 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24601,7 +24848,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24622,7 +24869,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *65 + - *67 requestBody: required: true content: @@ -24670,7 +24917,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -24695,8 +24942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *65 - - &156 + - *67 + - &159 name: name description: The name of the variable. in: path @@ -24708,7 +24955,7 @@ paths: description: Response content: application/json: - schema: *155 + schema: *158 examples: default: value: @@ -24738,8 +24985,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 requestBody: required: true content: @@ -24801,8 +25048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 responses: '204': description: Response @@ -24828,8 +25075,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 - *19 - *17 responses: @@ -24847,9 +25094,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 '409': description: Response when the visibility of the variable is not set to `selected` @@ -24875,8 +25122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 requestBody: required: true content: @@ -24925,8 +25172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 - name: repository_id in: path required: true @@ -24960,8 +25207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 - name: repository_id in: path required: true @@ -25002,7 +25249,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *65 + - *67 requestBody: required: true content: @@ -25121,7 +25368,7 @@ paths: type: integer deployment_records: type: array - items: &158 + items: &161 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -25166,7 +25413,7 @@ paths: description: The ID of the provenance attestation associated with the deployment record. examples: - default: &159 + default: &162 value: total_count: 1 deployment_records: @@ -25201,7 +25448,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *65 + - *67 - name: cluster in: path description: The cluster name. @@ -25339,9 +25586,9 @@ paths: type: integer deployment_records: type: array - items: *158 + items: *161 examples: - default: *159 + default: *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25361,7 +25608,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *65 + - *67 requestBody: required: true content: @@ -25525,7 +25772,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *65 + - *67 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -25551,9 +25798,9 @@ paths: - 3 deployment_records: type: array - items: *158 + items: *161 examples: - default: *159 + default: *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25573,7 +25820,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *65 + - *67 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25657,9 +25904,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *43 - - *44 - - *65 + - *45 + - *46 + - *67 requestBody: required: true content: @@ -25683,12 +25930,12 @@ paths: required: - subject_digests examples: - default: &672 + default: &675 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &673 + withPredicateType: &676 value: subject_digests: - sha256:abc123 @@ -25733,7 +25980,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &674 + default: &677 value: attestations_subject_digests: - sha256:abc: @@ -25842,7 +26089,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *65 + - *67 requestBody: required: true content: @@ -25907,7 +26154,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *65 + - *67 - name: subject_digest description: Subject Digest in: path @@ -25940,9 +26187,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *43 - - *44 - - *65 + - *45 + - *46 + - *67 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -25990,7 +26237,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *65 + - *67 - name: attestation_id description: Attestation ID in: path @@ -26026,9 +26273,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations parameters: - *17 - - *43 - - *44 - - *65 + - *45 + - *46 + - *67 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -26066,7 +26313,7 @@ paths: initiator: type: string examples: - default: &376 + default: &379 value: attestations: - bundle: @@ -26173,7 +26420,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -26185,7 +26432,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26204,8 +26451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: If the user is blocked @@ -26230,8 +26477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -26251,8 +26498,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -26277,15 +26524,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *65 + - *67 - *19 - *17 - - *51 + - *53 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &160 + schema: &163 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -26311,7 +26558,7 @@ paths: application/json: schema: type: array - items: &161 + items: &164 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -26342,7 +26589,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &180 + items: &183 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -26419,7 +26666,7 @@ paths: parent: anyOf: - type: 'null' - - &235 + - &238 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -26555,7 +26802,7 @@ paths: - string - 'null' format: date-time - state: *160 + state: *163 contact_link: description: The contact link of the campaign. type: @@ -26651,9 +26898,9 @@ paths: closed_at: state: open headers: - Link: *57 + Link: *59 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26677,7 +26924,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -26778,9 +27025,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *164 examples: - default: &162 + default: &165 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -26829,7 +27076,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26851,7 +27098,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *65 + - *67 - name: campaign_number description: The campaign number. in: path @@ -26863,16 +27110,16 @@ paths: description: Response content: application/json: - schema: *161 + schema: *164 examples: - default: *162 + default: *165 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26893,7 +27140,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *65 + - *67 - name: campaign_number description: The campaign number. in: path @@ -26943,7 +27190,7 @@ paths: - string - 'null' format: uri - state: *160 + state: *163 examples: default: value: @@ -26953,9 +27200,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *164 examples: - default: *162 + default: *165 '400': description: Bad Request content: @@ -26967,7 +27214,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26988,7 +27235,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *65 + - *67 - name: campaign_number description: The campaign number. in: path @@ -26999,7 +27246,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27021,18 +27268,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *65 - - &400 + - *67 + - &403 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: &170 + schema: &173 type: string description: The name of the tool used to generate the code scanning analysis. - - &401 + - &404 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 @@ -27040,23 +27287,23 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &171 + schema: &174 type: - string - 'null' description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *43 - - *44 + - *45 + - *46 - *19 - *17 - - *51 + - *53 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &403 + schema: &406 type: string description: State of a code scanning alert. enum: @@ -27079,7 +27326,7 @@ paths: be returned. in: query required: false - schema: &404 + schema: &407 type: string description: Severity of a code scanning alert. enum: @@ -27108,18 +27355,18 @@ paths: items: type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 - instances_url: &405 + number: *166 + created_at: *167 + updated_at: *168 + url: *169 + html_url: *170 + instances_url: &408 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &172 + state: &175 type: - string - 'null' @@ -27129,13 +27376,13 @@ paths: - dismissed - fixed - - fixed_at: *168 + fixed_at: *171 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 - dismissed_reason: &406 + dismissed_at: *172 + dismissed_reason: &409 type: - string - 'null' @@ -27146,14 +27393,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &407 + dismissed_comment: &410 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &408 + rule: &411 type: object properties: id: @@ -27214,43 +27461,43 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &409 + tool: &412 type: object properties: - name: *170 + name: *173 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *171 - most_recent_instance: &410 + guid: *174 + most_recent_instance: &413 type: object properties: - ref: &402 + ref: &405 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &420 + analysis_key: &423 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: &421 + environment: &424 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: &422 + category: &425 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: *172 + state: *175 commit_sha: type: string message: @@ -27258,7 +27505,7 @@ paths: properties: text: type: string - location: &423 + location: &426 type: object description: Describe a region within a file for the alert. properties: @@ -27279,7 +27526,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: &424 + items: &427 type: - string - 'null' @@ -27291,7 +27538,7 @@ paths: - test - library - - repository: *56 + repository: *58 dismissal_approved_by: anyOf: - type: 'null' @@ -27543,9 +27790,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: *57 + Link: *59 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27567,7 +27814,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *65 + - *67 - name: target_type in: query description: The target type of the code security configuration @@ -27586,8 +27833,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -27595,7 +27842,7 @@ paths: application/json: schema: type: array - items: *45 + items: *47 examples: default: value: @@ -27678,7 +27925,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *65 + - *67 requestBody: required: true content: @@ -27765,7 +28012,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *49 + code_scanning_options: *51 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -27774,7 +28021,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *48 + code_scanning_default_setup_options: *50 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -27913,9 +28160,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *45 + schema: *47 examples: - default: *173 + default: *176 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27937,15 +28184,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *174 + schema: *177 examples: - default: *175 + default: *178 '304': *35 '403': *27 '404': *6 @@ -27971,7 +28218,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *65 + - *67 requestBody: required: true content: @@ -27997,11 +28244,11 @@ paths: - 32 - 91 responses: - '204': *176 + '204': *179 '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28023,16 +28270,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 responses: '200': description: Response content: application/json: - schema: *45 + schema: *47 examples: - default: *173 + default: *176 '304': *35 '403': *27 '404': *6 @@ -28056,8 +28303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 requestBody: required: true content: @@ -28144,8 +28391,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *48 - code_scanning_options: *49 + code_scanning_default_setup_options: *50 + code_scanning_options: *51 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -28270,7 +28517,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *45 + schema: *47 examples: default: value: @@ -28329,14 +28576,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 responses: - '204': *176 + '204': *179 '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28360,8 +28607,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *65 - - *47 + - *67 + - *49 requestBody: required: true content: @@ -28424,8 +28671,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: - - *65 - - *47 + - *67 + - *49 requestBody: required: true content: @@ -28465,12 +28712,12 @@ paths: - none - private_and_internal - public - configuration: *45 + configuration: *47 examples: default: value: default_for_new_repos: all - configuration: *173 + configuration: *176 '403': *27 '404': *6 x-github: @@ -28494,8 +28741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 - 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)." @@ -28504,8 +28751,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -28523,13 +28770,13 @@ paths: application/json: schema: type: array - items: *177 + items: *180 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *178 + repository: *181 '403': *27 '404': *6 x-github: @@ -28553,7 +28800,7 @@ paths: parameters: - *17 - *19 - - *65 + - *67 responses: '200': description: Response @@ -28569,7 +28816,7 @@ paths: type: integer codespaces: type: array - items: &225 + items: &228 type: object title: Codespace description: A codespace. @@ -28600,11 +28847,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *145 + repository: *148 machine: anyOf: - type: 'null' - - &436 + - &439 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -28891,7 +29138,7 @@ paths: - pulls_url - recent_folders examples: - default: &226 + default: &229 value: total_count: 3 codespaces: @@ -29301,7 +29548,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -29323,7 +29570,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *65 + - *67 deprecated: true requestBody: required: true @@ -29367,7 +29614,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29390,7 +29637,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *65 + - *67 deprecated: true requestBody: required: true @@ -29422,7 +29669,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29445,7 +29692,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *65 + - *67 requestBody: required: true content: @@ -29476,7 +29723,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29497,7 +29744,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *65 + - *67 - *17 - *19 responses: @@ -29515,7 +29762,7 @@ paths: type: integer secrets: type: array - items: &179 + items: &182 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -29556,7 +29803,7 @@ paths: - updated_at - visibility examples: - default: &437 + default: &440 value: total_count: 2 secrets: @@ -29569,7 +29816,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29588,13 +29835,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &438 + schema: &441 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -29629,7 +29876,7 @@ paths: - key_id - key examples: - default: &439 + default: &442 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29652,23 +29899,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '200': description: Response content: application/json: - schema: *179 + schema: *182 examples: - default: &441 + default: &444 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29688,8 +29935,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -29744,7 +29991,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -29770,8 +30017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -29796,8 +30043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - *19 - *17 responses: @@ -29815,9 +30062,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 '404': *6 x-github: githubCloudOnly: false @@ -29839,8 +30086,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -29890,8 +30137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -29924,8 +30171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -29964,7 +30211,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: - - *65 + - *67 responses: '200': description: OK @@ -30073,7 +30320,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30105,7 +30352,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: - - *65 + - *67 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -30128,7 +30375,7 @@ paths: currently being billed. seats: type: array - items: &228 + items: &231 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -30141,13 +30388,13 @@ paths: organization: anyOf: - type: 'null' - - *63 + - *65 assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *180 - - *58 + - *183 + - *60 type: - 'null' - object @@ -30277,8 +30524,8 @@ paths: type: User site_admin: false headers: - Link: *57 - '500': *105 + Link: *59 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30311,7 +30558,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: - - *65 + - *67 requestBody: content: application/json: @@ -30353,7 +30600,7 @@ paths: default: value: seats_created: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30389,7 +30636,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: - - *65 + - *67 requestBody: content: application/json: @@ -30431,7 +30678,7 @@ paths: default: value: seats_cancelled: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30469,7 +30716,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: - - *65 + - *67 requestBody: content: application/json: @@ -30510,7 +30757,7 @@ paths: default: value: seats_created: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30546,7 +30793,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: - - *65 + - *67 requestBody: content: application/json: @@ -30588,7 +30835,7 @@ paths: default: value: seats_cancelled: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30628,7 +30875,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: - - *65 + - *67 responses: '200': description: OK @@ -30648,7 +30895,7 @@ paths: value: octo-repo: - "/src/some-dir/kernel.rs" - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30681,7 +30928,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: - - *65 + - *67 requestBody: description: The content exclusion rules to set required: true @@ -30733,7 +30980,7 @@ paths: default: value: message: Content exclusion rules updated successfully. - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30772,7 +31019,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *65 + - *67 - 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`). @@ -30804,7 +31051,7 @@ paths: application/json: schema: type: array - items: &308 + items: &311 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -31119,7 +31366,7 @@ paths: - date additionalProperties: true examples: - default: &309 + default: &312 value: - date: '2024-06-24' total_active_users: 24 @@ -31218,10 +31465,10 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *105 + '500': *107 '403': *27 '404': *6 - '422': &310 + '422': &313 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -31248,12 +31495,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *65 - - *181 - - *182 - - *183 + - *67 - *184 - *185 + - *186 + - *187 + - *188 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -31283,7 +31530,7 @@ paths: enum: - patch - deployment - - *186 + - *189 - name: runtime_risk in: query description: |- @@ -31292,11 +31539,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *187 - - *188 - - *51 - - *43 - - *44 + - *190 + - *191 + - *53 + - *45 + - *46 - *17 responses: '200': @@ -31305,9 +31552,9 @@ paths: application/json: schema: type: array - items: *189 + items: *192 examples: - default: *190 + default: *193 '304': *35 '400': *14 '403': *27 @@ -31333,7 +31580,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *65 + - *67 - *17 - *19 responses: @@ -31351,7 +31598,7 @@ paths: type: integer secrets: type: array - items: &191 + items: &194 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -31403,7 +31650,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31424,13 +31671,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &467 + schema: &470 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -31449,7 +31696,7 @@ paths: - key_id - key examples: - default: &468 + default: &471 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31472,14 +31719,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '200': description: Response content: application/json: - schema: *191 + schema: *194 examples: default: value: @@ -31507,8 +31754,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -31563,7 +31810,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -31587,8 +31834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -31612,8 +31859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - *19 - *17 responses: @@ -31631,9 +31878,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31654,8 +31901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -31705,8 +31952,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -31737,8 +31984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -31768,7 +32015,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: - - *65 + - *67 responses: '200': description: Response @@ -31776,7 +32023,7 @@ paths: application/json: schema: type: array - items: &237 + items: &240 title: Package description: A software package type: object @@ -31829,7 +32076,7 @@ paths: repository: anyOf: - type: 'null' - - *145 + - *148 created_at: type: string format: date-time @@ -31847,7 +32094,7 @@ paths: - created_at - updated_at examples: - default: &238 + default: &241 value: - id: 197 name: hello_docker @@ -31925,7 +32172,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *65 + - *67 - *17 - *19 responses: @@ -31935,7 +32182,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: 200-response: value: @@ -32007,7 +32254,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *65 + - *67 - *17 - *19 responses: @@ -32017,7 +32264,7 @@ paths: application/json: schema: type: array - items: &214 + items: &217 title: Organization Invitation description: Organization Invitation type: object @@ -32071,7 +32318,7 @@ paths: - invitation_teams_url - node_id examples: - default: &215 + default: &218 value: - id: 1 login: monalisa @@ -32104,7 +32351,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -32128,7 +32375,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *65 + - *67 - *17 - *19 responses: @@ -32138,7 +32385,7 @@ paths: application/json: schema: type: array - items: &192 + items: &195 title: Org Hook description: Org Hook type: object @@ -32238,7 +32485,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -32261,7 +32508,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *65 + - *67 requestBody: required: true content: @@ -32323,9 +32570,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: &193 + default: &196 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -32372,8 +32619,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *65 - - &194 + - *67 + - &197 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. @@ -32386,9 +32633,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *193 + default: *196 '404': *6 x-github: githubCloudOnly: false @@ -32415,8 +32662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 requestBody: required: false content: @@ -32462,7 +32709,7 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: default: value: @@ -32503,8 +32750,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 responses: '204': description: Response @@ -32531,8 +32778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *65 - - *194 + - *67 + - *197 responses: '200': description: Response @@ -32562,8 +32809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *65 - - *194 + - *67 + - *197 requestBody: required: false content: @@ -32613,10 +32860,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 - *17 - - *195 + - *198 responses: '200': description: Response @@ -32624,9 +32871,9 @@ paths: application/json: schema: type: array - items: *196 + items: *199 examples: - default: *197 + default: *200 '400': *14 '422': *15 x-github: @@ -32651,17 +32898,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 - *16 responses: '200': description: Response content: application/json: - schema: *198 + schema: *201 examples: - default: *199 + default: *202 '400': *14 '422': *15 x-github: @@ -32686,8 +32933,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 - *16 responses: '202': *37 @@ -32716,8 +32963,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 responses: '204': description: Response @@ -32739,8 +32986,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *65 - - &204 + - *67 + - &207 name: actor_type in: path description: The type of the actor @@ -32753,14 +33000,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &205 + - &208 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &200 + - &203 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`.' @@ -32768,7 +33015,7 @@ paths: required: true schema: type: string - - &201 + - &204 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) @@ -32779,7 +33026,7 @@ paths: type: string - *19 - *17 - - *51 + - *53 - name: sort description: The property to sort the results by. in: query @@ -32862,13 +33109,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *65 - - *200 - - *201 + - *67 + - *203 + - *204 - *19 - *17 - - *51 - - &210 + - *53 + - &213 name: sort description: The property to sort the results by. in: query @@ -32946,15 +33193,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *65 - - *200 - - *201 + - *67 + - *203 + - *204 responses: '200': description: Response content: application/json: - schema: &202 + schema: &205 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -32970,7 +33217,7 @@ paths: type: integer format: int64 examples: - default: &203 + default: &206 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -32990,24 +33237,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *65 - - &206 + - *67 + - &209 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *200 - - *201 + - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *202 + schema: *205 examples: - default: *203 + default: *206 x-github: enabledForGitHubApps: true category: orgs @@ -33025,19 +33272,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *65 - - *200 - - *201 + - *67 + - *203 - *204 - - *205 + - *207 + - *208 responses: '200': description: Response content: application/json: - schema: *202 + schema: *205 examples: - default: *203 + default: *206 x-github: enabledForGitHubApps: true category: orgs @@ -33054,10 +33301,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *65 - - *200 - - *201 - - &207 + - *67 + - *203 + - *204 + - &210 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -33070,7 +33317,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &211 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -33086,7 +33333,7 @@ paths: type: integer format: int64 examples: - default: &209 + default: &212 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -33122,19 +33369,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *65 - - *206 - - *200 - - *201 - - *207 + - *67 + - *209 + - *203 + - *204 + - *210 responses: '200': description: Response content: application/json: - schema: *208 + schema: *211 examples: - default: *209 + default: *212 x-github: enabledForGitHubApps: true category: orgs @@ -33151,20 +33398,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *65 - - *204 - - *205 - - *200 - - *201 + - *67 - *207 + - *208 + - *203 + - *204 + - *210 responses: '200': description: Response content: application/json: - schema: *208 + schema: *211 examples: - default: *209 + default: *212 x-github: enabledForGitHubApps: true category: orgs @@ -33181,14 +33428,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *65 - - *206 - - *200 - - *201 + - *67 + - *209 + - *203 + - *204 - *19 - *17 - - *51 - - *210 + - *53 + - *213 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -33264,7 +33511,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *65 + - *67 responses: '200': description: Response @@ -33272,7 +33519,7 @@ paths: application/json: schema: *20 examples: - default: &506 + default: &509 value: id: 1 account: @@ -33341,7 +33588,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -33411,7 +33658,7 @@ paths: suspended_at: suspended_by: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -33430,7 +33677,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -33438,12 +33685,12 @@ paths: application/json: schema: anyOf: - - &212 + - &215 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &211 + limit: &214 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -33471,7 +33718,7 @@ paths: properties: {} additionalProperties: false examples: - default: &213 + default: &216 value: limit: collaborators_only origin: organization @@ -33495,18 +33742,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: &507 + schema: &510 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *211 + limit: *214 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -33531,9 +33778,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *215 examples: - default: *213 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -33551,7 +33798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -33575,7 +33822,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *65 + - *67 - *17 - *19 - name: role @@ -33609,11 +33856,11 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -33634,7 +33881,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *65 + - *67 requestBody: required: false content: @@ -33688,7 +33935,7 @@ paths: description: Response content: application/json: - schema: *214 + schema: *217 examples: default: value: @@ -33742,8 +33989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *65 - - &216 + - *67 + - &219 name: invitation_id description: The unique identifier of the invitation. in: path @@ -33773,8 +34020,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *65 - - *216 + - *67 + - *219 - *17 - *19 responses: @@ -33784,9 +34031,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: &236 + default: &239 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -33802,7 +34049,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -33821,7 +34068,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -33829,7 +34076,7 @@ paths: application/json: schema: type: array - items: &217 + items: &220 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -33979,7 +34226,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -34072,9 +34319,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *220 examples: - default: &218 + default: &221 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -34129,8 +34376,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *65 - - &219 + - *67 + - &222 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -34231,9 +34478,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *220 examples: - default: *218 + default: *221 '404': *6 '422': *7 x-github: @@ -34257,10 +34504,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *65 - - *219 + - *67 + - *222 responses: - '204': *176 + '204': *179 '404': *6 '422': *7 x-github: @@ -34280,7 +34527,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -34288,7 +34535,7 @@ paths: application/json: schema: type: array - items: *220 + items: *223 examples: default: value: @@ -34326,7 +34573,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -34376,9 +34623,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: &221 + default: &224 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -34410,8 +34657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *65 - - &222 + - *67 + - &225 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -34467,9 +34714,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '404': *6 '422': *7 x-github: @@ -34493,8 +34740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *65 - - *222 + - *67 + - *225 responses: '204': description: Response @@ -34527,7 +34774,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *65 + - *67 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -34557,7 +34804,7 @@ paths: - closed - all default: open - - *223 + - *226 - name: type description: Can be the name of an issue type. in: query @@ -34575,8 +34822,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - *17 - *19 responses: @@ -34586,11 +34833,11 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *224 + default: *227 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -34610,7 +34857,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *65 + - *67 - 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) @@ -34648,9 +34895,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -34668,8 +34915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response if requester is an organization member and user is @@ -34703,8 +34950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -34731,8 +34978,8 @@ paths: parameters: - *17 - *19 - - *65 - - *61 + - *67 + - *63 responses: '200': description: Response @@ -34748,11 +34995,11 @@ paths: type: integer codespaces: type: array - items: *225 + items: *228 examples: - default: *226 + default: *229 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -34775,9 +35022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *65 - - *61 - - &227 + - *67 + - *63 + - &230 name: codespace_name in: path required: true @@ -34787,7 +35034,7 @@ paths: responses: '202': *37 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -34810,17 +35057,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *65 - - *61 - - *227 + - *67 + - *63 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: &435 + default: &438 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -34962,7 +35209,7 @@ paths: recent_folders: [] template: '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -34993,14 +35240,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: - - *65 - - *61 + - *67 + - *63 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *228 + schema: *231 examples: default: value: @@ -35044,7 +35291,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -35069,14 +35316,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '200': description: Response content: application/json: - schema: &229 + schema: &232 title: Org Membership description: Org Membership type: object @@ -35125,7 +35372,7 @@ paths: format: uri examples: - https://api.github.com/orgs/octocat - organization: *63 + organization: *65 user: anyOf: - type: 'null' @@ -35145,7 +35392,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &230 + response-if-user-has-an-active-admin-membership-with-organization: &233 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -35217,8 +35464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 requestBody: required: false content: @@ -35246,9 +35493,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - response-if-user-already-had-membership-with-organization: *230 + response-if-user-already-had-membership-with-organization: *233 '422': *15 '403': *27 '451': *15 @@ -35273,8 +35520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -35299,7 +35546,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *65 + - *67 - *17 - *19 - name: exclude @@ -35321,7 +35568,7 @@ paths: application/json: schema: type: array - items: &231 + items: &234 title: Migration description: A migration. type: object @@ -35363,7 +35610,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *56 + items: *58 url: type: string format: uri @@ -35562,7 +35809,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -35578,7 +35825,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *65 + - *67 requestBody: required: true content: @@ -35659,7 +35906,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -35837,8 +36084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *65 - - &232 + - *67 + - &235 name: migration_id description: The unique identifier of the migration. in: path @@ -35866,7 +36113,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -36035,8 +36282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *65 - - *232 + - *67 + - *235 responses: '302': description: Response @@ -36057,8 +36304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *65 - - *232 + - *67 + - *235 responses: '204': description: Response @@ -36081,9 +36328,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *65 - - *232 - - &654 + - *67 + - *235 + - &657 name: repo_name description: repo_name parameter in: path @@ -36110,8 +36357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *65 - - *232 + - *67 + - *235 - *17 - *19 responses: @@ -36121,9 +36368,9 @@ paths: application/json: schema: type: array - items: *56 + items: *58 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -36149,7 +36396,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response - list of organization roles @@ -36165,7 +36412,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &234 + items: &237 title: Organization Role description: Organization roles type: object @@ -36314,8 +36561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response @@ -36340,9 +36587,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *65 - *67 - - &233 + - *69 + - &236 name: role_id description: The unique identifier of the role. in: path @@ -36377,9 +36624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *65 - *67 - - *233 + - *69 + - *236 responses: '204': description: Response @@ -36404,8 +36651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -36430,9 +36677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *65 - - *61 - - *233 + - *67 + - *63 + - *236 responses: '204': description: Response @@ -36462,9 +36709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *65 - - *61 - - *233 + - *67 + - *63 + - *236 responses: '204': description: Response @@ -36492,14 +36739,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *65 - - *233 + - *67 + - *236 responses: '200': description: Response content: application/json: - schema: *234 + schema: *237 examples: default: value: @@ -36549,8 +36796,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: - - *65 - - *233 + - *67 + - *236 - *17 - *19 responses: @@ -36629,7 +36876,7 @@ paths: parent: anyOf: - type: 'null' - - *235 + - *238 type: description: The ownership type of the team type: string @@ -36662,9 +36909,9 @@ paths: - type - parent examples: - default: *236 + default: *239 headers: - Link: *57 + Link: *59 '404': description: Response if the organization or role does not exist. '422': @@ -36691,8 +36938,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: - - *65 - - *233 + - *67 + - *236 - *17 - *19 responses: @@ -36721,7 +36968,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *235 + items: *238 name: type: - string @@ -36838,9 +37085,9 @@ paths: - type - url examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '404': description: Response if the organization or role does not exist. '422': @@ -36862,7 +37109,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *65 + - *67 - 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) @@ -36889,9 +37136,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36914,8 +37161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *65 - - *61 + - *67 + - *63 requestBody: required: false content: @@ -36972,8 +37219,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -37030,8 +37277,8 @@ paths: - docker - nuget - container - - *65 - - &655 + - *67 + - &658 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -37067,12 +37314,12 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '403': *27 '401': *23 - '400': &657 + '400': &660 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -37094,7 +37341,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &239 + - &242 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 @@ -37112,20 +37359,20 @@ paths: - docker - nuget - container - - &240 + - &243 name: package_name description: The name of the package. in: path required: true schema: type: string - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: default: value: @@ -37177,9 +37424,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *239 - - *240 - - *65 + - *242 + - *243 + - *67 responses: '204': description: Response @@ -37211,9 +37458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *239 - - *240 - - *65 + - *242 + - *243 + - *67 - name: token description: package token schema: @@ -37245,9 +37492,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: - - *239 - - *240 - - *65 + - *242 + - *243 + - *67 - *19 - *17 - name: state @@ -37267,7 +37514,7 @@ paths: application/json: schema: type: array - items: &241 + items: &244 title: Package Version description: A version of a software package type: object @@ -37402,10 +37649,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *239 - - *240 - - *65 - - &242 + - *242 + - *243 + - *67 + - &245 name: package_version_id description: Unique identifier of the package version. in: path @@ -37417,7 +37664,7 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -37453,10 +37700,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *239 - - *240 - - *65 - *242 + - *243 + - *67 + - *245 responses: '204': description: Response @@ -37488,10 +37735,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *239 - - *240 - - *65 - *242 + - *243 + - *67 + - *245 responses: '204': description: Response @@ -37518,10 +37765,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: - - *65 + - *67 - *17 - *19 - - &243 + - &246 name: sort description: The property by which to sort the results. in: query @@ -37531,8 +37778,8 @@ paths: enum: - created_at default: created_at - - *51 - - &244 + - *53 + - &247 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -37544,7 +37791,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &245 + - &248 name: repository description: The name of the repository to use to filter the results. in: query @@ -37553,7 +37800,7 @@ paths: type: string examples: - Hello-World - - &246 + - &249 name: permission description: The permission to use to filter the results. in: query @@ -37562,7 +37809,7 @@ paths: type: string examples: - issues_read - - &247 + - &250 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) @@ -37572,7 +37819,7 @@ paths: schema: type: string format: date-time - - &248 + - &251 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) @@ -37582,7 +37829,7 @@ paths: schema: type: string format: date-time - - &249 + - &252 name: token_id description: The ID of the token in: query @@ -37595,7 +37842,7 @@ paths: examples: - token_id[]=1,token_id[]=2 responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 @@ -37730,7 +37977,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37750,7 +37997,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: - - *65 + - *67 requestBody: required: true content: @@ -37792,7 +38039,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 @@ -37817,7 +38064,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: - - *65 + - *67 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -37854,11 +38101,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37879,7 +38126,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: - - *65 + - *67 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -37890,7 +38137,7 @@ paths: - *17 - *19 responses: - '500': *105 + '500': *107 '404': *6 '403': *27 '200': @@ -37899,9 +38146,9 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: &250 + default: &253 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -38014,7 +38261,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38035,19 +38282,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: - - *65 + - *67 - *17 - *19 - - *243 - - *51 - - *244 - - *245 - *246 + - *53 - *247 - *248 - *249 + - *250 + - *251 + - *252 responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 @@ -38176,7 +38423,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38196,7 +38443,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: - - *65 + - *67 requestBody: required: true content: @@ -38231,7 +38478,7 @@ paths: - 1296269 - 1296280 responses: - '500': *105 + '500': *107 '404': *6 '202': *37 '403': *27 @@ -38256,7 +38503,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: - - *65 + - *67 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -38284,9 +38531,9 @@ paths: value: action: revoke responses: - '500': *105 + '500': *107 '404': *6 - '204': *176 + '204': *179 '403': *27 '422': *15 x-github: @@ -38308,7 +38555,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: - - *65 + - *67 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -38318,7 +38565,7 @@ paths: - *17 - *19 responses: - '500': *105 + '500': *107 '404': *6 '403': *27 '200': @@ -38327,11 +38574,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *250 + default: *253 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38353,7 +38600,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -38371,7 +38618,7 @@ paths: type: integer configurations: type: array - items: &251 + items: &254 title: Organization private registry description: Private registry configuration for an organization type: object @@ -38454,7 +38701,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *57 + Link: *59 '400': *14 '404': *6 x-github: @@ -38476,7 +38723,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -38667,7 +38914,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &252 + org-private-registry-with-selected-visibility: &255 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -38708,7 +38955,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: - - *65 + - *67 responses: '200': description: Response @@ -38736,7 +38983,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -38758,16 +39005,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *65 - - *153 + - *67 + - *156 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *251 + schema: *254 examples: - default: *252 + default: *255 '404': *6 x-github: githubCloudOnly: false @@ -38788,8 +39035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -38894,8 +39141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -38918,15 +39165,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *65 + - *67 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -38935,7 +39182,7 @@ paths: application/json: schema: type: array - items: &253 + items: &256 title: Projects v2 Project description: A projects v2 project type: object @@ -39009,7 +39256,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &741 + - &744 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -39094,7 +39341,7 @@ paths: - deleted_at - deleted_by examples: - default: &254 + default: &257 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -39177,7 +39424,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -39197,24 +39444,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &255 + - &258 name: project_number description: The project's number. in: path required: true schema: type: integer - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *253 + schema: *256 examples: - default: *254 + default: *257 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -39234,8 +39481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *65 - - *255 + - *67 + - *258 requestBody: required: true description: Details of the draft item to create in the project. @@ -39269,7 +39516,7 @@ paths: description: Response content: application/json: - schema: &260 + schema: &263 title: Projects v2 Item description: An item belonging to a project type: object @@ -39282,8 +39529,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *73 - - &450 + - *75 + - &453 title: Pull Request Simple description: Pull Request Simple type: object @@ -39403,7 +39650,7 @@ paths: milestone: anyOf: - type: 'null' - - *256 + - *259 active_lock_reason: type: - string @@ -39442,7 +39689,7 @@ paths: items: *4 requested_teams: type: array - items: *180 + items: *183 head: type: object properties: @@ -39450,7 +39697,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: @@ -39470,7 +39717,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: @@ -39486,7 +39733,7 @@ paths: _links: type: object properties: - comments: &257 + comments: &260 title: Link description: Hypermedia Link type: object @@ -39495,13 +39742,13 @@ paths: type: string required: - href - commits: *257 - statuses: *257 - html: *257 - issue: *257 - review_comments: *257 - review_comment: *257 - self: *257 + commits: *260 + statuses: *260 + html: *260 + issue: *260 + review_comments: *260 + review_comment: *260 + self: *260 required: - comments - commits @@ -39511,8 +39758,8 @@ paths: - review_comments - review_comment - self - author_association: *70 - auto_merge: &552 + author_association: *72 + auto_merge: &555 title: Auto merge description: The status of auto merging a pull request. type: @@ -39612,7 +39859,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &259 + content_type: &262 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -39656,7 +39903,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &261 + draft_issue: &264 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -39730,11 +39977,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *255 - - *65 + - *258 + - *67 - *17 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -39742,7 +39989,7 @@ paths: application/json: schema: type: array - items: &258 + items: &261 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -39895,7 +40142,7 @@ paths: - updated_at - project_url examples: - default: &677 + default: &680 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40006,7 +40253,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -40025,8 +40272,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *255 - - *65 + - *258 + - *67 requestBody: required: true content: @@ -40072,7 +40319,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &678 + items: &681 type: object properties: name: @@ -40109,7 +40356,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &679 + iteration_configuration: &682 type: object description: The configuration for iteration fields. properties: @@ -40159,7 +40406,7 @@ paths: value: name: Due date data_type: date - single_select_field: &680 + single_select_field: &683 summary: Create a single select field value: name: Priority @@ -40186,7 +40433,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &681 + iteration_field: &684 summary: Create an iteration field value: name: Sprint @@ -40210,9 +40457,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *258 + schema: *261 examples: - text_field: &682 + text_field: &685 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -40221,7 +40468,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: &683 + number_field: &686 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -40230,7 +40477,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: &684 + date_field: &687 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -40239,7 +40486,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: &685 + single_select_field: &688 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40273,7 +40520,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &686 + iteration_field: &689 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -40318,23 +40565,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *255 - - &687 + - *258 + - &690 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *258 + schema: *261 examples: - default: &688 + default: &691 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40369,7 +40616,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -40390,8 +40637,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *255 - - *65 + - *258 + - *67 - 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. @@ -40413,8 +40660,8 @@ paths: maxItems: 50 items: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -40423,7 +40670,7 @@ paths: application/json: schema: type: array - items: &262 + items: &265 title: Projects v2 Item description: An item belonging to a project type: object @@ -40440,7 +40687,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *259 + content_type: *262 content: type: - object @@ -40490,7 +40737,7 @@ paths: - updated_at - archived_at examples: - default: &263 + default: &266 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -41167,7 +41414,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -41187,8 +41434,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *65 - - *255 + - *67 + - *258 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -41258,22 +41505,22 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *261 + value: *264 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *261 + value: *264 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *261 + value: *264 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *261 + value: *264 '304': *35 '403': *27 '401': *23 @@ -41293,9 +41540,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *255 - - *65 - - &264 + - *258 + - *67 + - &267 name: item_id description: The unique identifier of the project item. in: path @@ -41321,11 +41568,11 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -41344,9 +41591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *255 - - *65 - - *264 + - *258 + - *67 + - *267 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -41419,13 +41666,13 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - text_field: *263 - number_field: *263 - date_field: *263 - single_select_field: *263 - iteration_field: *263 + text_field: *266 + number_field: *266 + date_field: *266 + single_select_field: *266 + iteration_field: *266 '401': *23 '403': *27 '404': *6 @@ -41445,9 +41692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *255 - - *65 - - *264 + - *258 + - *67 + - *267 responses: '204': description: Response @@ -41470,8 +41717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *65 - - *255 + - *67 + - *258 requestBody: required: true content: @@ -41545,7 +41792,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &669 + schema: &672 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -41649,7 +41896,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &265 + value: &268 value: id: 1 number: 1 @@ -41695,10 +41942,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *265 + value: *268 roadmap_view: summary: Response for creating a roadmap view - value: *265 + value: *268 '304': *35 '403': *27 '401': *23 @@ -41726,9 +41973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *255 - - *65 - - &689 + - *258 + - *67 + - &692 name: view_number description: The number that identifies the project view. in: path @@ -41750,8 +41997,8 @@ paths: maxItems: 50 items: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -41760,11 +42007,11 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -41787,7 +42034,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -41795,7 +42042,7 @@ paths: application/json: schema: type: array - items: &266 + items: &269 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -41873,7 +42120,7 @@ paths: - property_name - value_type examples: - default: &267 + default: &270 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41922,7 +42169,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -41933,7 +42180,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *266 + items: *269 minItems: 1 maxItems: 100 required: @@ -41963,9 +42210,9 @@ paths: application/json: schema: type: array - items: *266 + items: *269 examples: - default: *267 + default: *270 '403': *27 '404': *6 x-github: @@ -41986,8 +42233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *65 - - &268 + - *67 + - &271 name: custom_property_name description: The custom property name in: path @@ -41999,9 +42246,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: &269 + default: &272 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -42035,8 +42282,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: - - *65 - - *268 + - *67 + - *271 requestBody: required: true content: @@ -42116,9 +42363,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *269 + default: *272 '403': *27 '404': *6 x-github: @@ -42141,10 +42388,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *65 - - *268 + - *67 + - *271 responses: - '204': *176 + '204': *179 '403': *27 '404': *6 x-github: @@ -42165,7 +42412,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *65 + - *67 - *17 - *19 - name: repository_query @@ -42206,7 +42453,7 @@ paths: - octocat/Hello-World properties: type: array - items: &270 + items: &273 title: Custom Property Value description: Custom property name and associated value type: object @@ -42248,7 +42495,7 @@ paths: - property_name: team value: octocat headers: - Link: *57 + Link: *59 '403': *27 '404': *6 x-github: @@ -42276,7 +42523,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: - - *65 + - *67 requestBody: required: true content: @@ -42296,7 +42543,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *270 + items: *273 required: - repository_names - properties @@ -42337,7 +42584,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *65 + - *67 - *17 - *19 responses: @@ -42349,9 +42596,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42368,8 +42615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response if user is a public member @@ -42393,8 +42640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -42415,8 +42662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -42440,7 +42687,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *65 + - *67 - name: type description: Specifies the types of repositories you want returned. in: query @@ -42486,11 +42733,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *250 + default: *253 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42509,7 +42756,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *65 + - *67 requestBody: required: true content: @@ -42691,7 +42938,7 @@ paths: description: Response content: application/json: - schema: &318 + schema: &321 title: Full Repository description: Full Repository type: object @@ -43050,7 +43297,7 @@ paths: template_repository: anyOf: - type: 'null' - - *69 + - *71 temp_clone_token: type: - string @@ -43146,13 +43393,13 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 organization: anyOf: - type: 'null' - *4 - parent: *69 - source: *69 + parent: *71 + source: *71 forks: type: integer master_branch: @@ -43165,7 +43412,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &455 + code_of_conduct: &458 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -43195,7 +43442,7 @@ paths: - key - name - html_url - security_and_analysis: *271 + security_and_analysis: *274 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -43279,7 +43526,7 @@ paths: - network_count - subscribers_count examples: - default: &320 + default: &323 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43798,10 +44045,10 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - *17 - *19 - - &574 + - &577 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43820,7 +44067,7 @@ paths: application/json: schema: type: array - items: &298 + items: &301 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -43855,7 +44102,7 @@ paths: source: type: string description: The name of the source - enforcement: &274 + enforcement: &277 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -43868,7 +44115,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &275 + items: &278 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -43939,7 +44186,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &272 + - &275 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -43963,7 +44210,7 @@ paths: match. items: type: string - - &276 + - &279 title: Organization ruleset conditions type: object description: |- @@ -43977,7 +44224,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *272 + - *275 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -44011,7 +44258,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *272 + - *275 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -44033,7 +44280,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *272 + - *275 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -44046,7 +44293,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &273 + items: &276 title: Repository ruleset property targeting definition type: object @@ -44079,7 +44326,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *273 + items: *276 required: - repository_property type: @@ -44087,12 +44334,12 @@ paths: - object rules: type: array - items: &575 + items: &578 title: Repository Rule type: object description: A repository rule. oneOf: - - &277 + - &280 title: creation description: Only allow users with bypass permission to create matching refs. @@ -44104,7 +44351,7 @@ paths: type: string enum: - creation - - &278 + - &281 title: update description: Only allow users with bypass permission to update matching refs. @@ -44125,7 +44372,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &279 + - &282 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -44137,7 +44384,7 @@ paths: type: string enum: - deletion - - &280 + - &283 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -44149,7 +44396,7 @@ paths: type: string enum: - required_linear_history - - &573 + - &576 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -44227,7 +44474,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &281 + - &284 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -44251,7 +44498,7 @@ paths: type: string required: - required_deployment_environments - - &282 + - &285 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -44263,7 +44510,7 @@ paths: type: string enum: - required_signatures - - &283 + - &286 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -44369,7 +44616,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &284 + - &287 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -44417,7 +44664,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &285 + - &288 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -44429,7 +44676,7 @@ paths: type: string enum: - non_fast_forward - - &286 + - &289 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -44466,7 +44713,7 @@ paths: required: - operator - pattern - - &287 + - &290 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -44503,7 +44750,7 @@ paths: required: - operator - pattern - - &288 + - &291 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -44540,7 +44787,7 @@ paths: required: - operator - pattern - - &289 + - &292 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -44577,7 +44824,7 @@ paths: required: - operator - pattern - - &290 + - &293 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -44614,7 +44861,7 @@ paths: required: - operator - pattern - - &291 + - &294 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -44639,7 +44886,7 @@ paths: type: string required: - restricted_file_paths - - &292 + - &295 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -44663,7 +44910,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &293 + - &296 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -44686,7 +44933,7 @@ paths: type: string required: - restricted_file_extensions - - &294 + - &297 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -44711,7 +44958,7 @@ paths: maximum: 100 required: - max_file_size - - &295 + - &298 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -44761,7 +45008,7 @@ paths: - repository_id required: - workflows - - &296 + - &299 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -44822,7 +45069,7 @@ paths: - tool required: - code_scanning_tools - - &297 + - &300 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -44884,7 +45131,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *107 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -44900,7 +45147,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 requestBody: description: Request body required: true @@ -44921,23 +45168,20 @@ paths: - push - repository default: branch - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *276 + items: *278 + conditions: *279 rules: type: array description: An array of rules within the ruleset. - items: &300 + items: &303 title: Repository Rule type: object description: A repository rule. oneOf: - - *277 - - *278 - - *279 - *280 - *281 - *282 @@ -44956,6 +45200,9 @@ paths: - *295 - *296 - *297 + - *298 + - *299 + - *300 required: - name - enforcement @@ -44993,9 +45240,9 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: &299 + default: &302 value: id: 21 name: super cool ruleset @@ -45036,7 +45283,7 @@ paths: updated_at: '2023-09-23T16:29:47Z' '404': *6 '422': *15 - '500': *105 + '500': *107 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -45050,8 +45297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *65 - - &576 + - *67 + - &579 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 @@ -45066,7 +45313,7 @@ paths: in: query schema: type: string - - &577 + - &580 name: time_period description: |- The time period to filter by. @@ -45082,14 +45329,14 @@ paths: - week - month default: day - - &578 + - &581 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 - - &579 + - &582 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -45109,7 +45356,7 @@ paths: description: Response content: application/json: - schema: &580 + schema: &583 title: Rule Suites description: Response type: array @@ -45165,7 +45412,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &581 + default: &584 value: - id: 21 actor_id: 12 @@ -45189,7 +45436,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45208,8 +45455,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *65 - - &582 + - *67 + - &585 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -45225,7 +45472,7 @@ paths: description: Response content: application/json: - schema: &583 + schema: &586 title: Rule Suite description: Response type: object @@ -45332,7 +45579,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &584 + default: &587 value: id: 21 actor_id: 12 @@ -45367,7 +45614,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45393,7 +45640,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45405,11 +45652,11 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *299 + default: *302 '404': *6 - '500': *105 + '500': *107 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -45425,7 +45672,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45451,16 +45698,16 @@ paths: - tag - push - repository - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *276 + items: *278 + conditions: *279 rules: description: An array of rules within the ruleset. type: array - items: *300 + items: *303 examples: default: value: @@ -45495,12 +45742,12 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *299 + default: *302 '404': *6 '422': *15 - '500': *105 + '500': *107 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -45516,7 +45763,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45527,7 +45774,7 @@ paths: '204': description: Response '404': *6 - '500': *105 + '500': *107 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -45539,7 +45786,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *65 + - *67 - *17 - *19 - name: ruleset_id @@ -45555,7 +45802,7 @@ paths: application/json: schema: type: array - items: &301 + items: &304 title: Ruleset version type: object description: The historical version of a ruleset @@ -45579,7 +45826,7 @@ paths: type: string format: date-time examples: - default: &586 + default: &589 value: - version_id: 3 actor: @@ -45597,7 +45844,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45614,7 +45861,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -45632,9 +45879,9 @@ paths: description: Response content: application/json: - schema: &587 + schema: &590 allOf: - - *301 + - *304 - type: object required: - state @@ -45681,7 +45928,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45703,8 +45950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *65 - - &588 + - *67 + - &591 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -45715,7 +45962,7 @@ paths: enum: - open - resolved - - &589 + - &592 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -45725,7 +45972,7 @@ paths: required: false schema: type: string - - &590 + - &593 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -45734,7 +45981,7 @@ paths: required: false schema: type: string - - &591 + - &594 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -45753,7 +46000,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &592 + - &595 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. @@ -45765,10 +46012,10 @@ paths: - created - updated default: created - - *51 + - *53 - *19 - *17 - - &593 + - &596 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 @@ -45778,7 +46025,7 @@ paths: required: false schema: type: string - - &594 + - &597 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 @@ -45788,7 +46035,7 @@ paths: required: false schema: type: string - - &595 + - &598 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -45797,7 +46044,7 @@ paths: required: false schema: type: string - - &596 + - &599 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -45806,7 +46053,7 @@ paths: schema: type: boolean default: false - - &597 + - &600 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -45815,7 +46062,7 @@ paths: schema: type: boolean default: false - - &598 + - &601 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -45834,27 +46081,27 @@ paths: items: type: object properties: - number: *163 - created_at: *164 + number: *166 + created_at: *167 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *168 + url: *169 + html_url: *170 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &599 + state: &602 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: &600 + resolution: &603 type: - string - 'null' @@ -45888,7 +46135,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *56 + repository: *58 push_protection_bypassed: type: - boolean @@ -45961,14 +46208,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &601 + - &604 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &603 + - &606 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -46025,7 +46272,7 @@ paths: - blob_url - commit_sha - commit_url - - &604 + - &607 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. @@ -46086,7 +46333,7 @@ paths: - page_url - commit_sha - commit_url - - &605 + - &608 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -46101,7 +46348,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &606 + - &609 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -46116,7 +46363,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &607 + - &610 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -46131,7 +46378,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &608 + - &611 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -46146,7 +46393,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &609 + - &612 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -46161,7 +46408,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &610 + - &613 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -46176,7 +46423,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &611 + - &614 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. @@ -46191,7 +46438,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &612 + - &615 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. @@ -46206,7 +46453,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &613 + - &616 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. @@ -46221,7 +46468,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &614 + - &617 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. @@ -46236,7 +46483,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &615 + - &618 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 @@ -46437,9 +46684,9 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46464,7 +46711,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *65 + - *67 responses: '200': description: Response @@ -46476,7 +46723,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &303 + pattern_config_version: &306 type: - string - 'null' @@ -46486,7 +46733,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &302 + items: &305 type: object properties: token_type: @@ -46555,7 +46802,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *302 + items: *305 examples: default: value: @@ -46604,7 +46851,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *65 + - *67 requestBody: required: true content: @@ -46612,7 +46859,7 @@ paths: schema: type: object properties: - pattern_config_version: *303 + pattern_config_version: *306 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -46638,7 +46885,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *303 + custom_pattern_version: *306 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -46674,7 +46921,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 "/orgs/{org}/security-advisories": get: @@ -46692,8 +46939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *65 - - *51 + - *67 + - *53 - name: sort description: The property to sort the results by. in: query @@ -46705,8 +46952,8 @@ paths: - updated - published default: created - - *43 - - *44 + - *45 + - *46 - 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)." @@ -46736,7 +46983,7 @@ paths: application/json: schema: type: array - items: &619 + items: &622 description: A repository security advisory. type: object properties: @@ -46923,7 +47170,7 @@ paths: - patched_versions - vulnerable_functions additionalProperties: false - cvss_severities: *53 + cvss_severities: *55 cwes: type: - array @@ -46959,7 +47206,7 @@ paths: login: type: string description: The username of the user credited. - type: *304 + type: *307 credits_detailed: type: - array @@ -46970,7 +47217,7 @@ paths: type: object properties: user: *4 - type: *304 + type: *307 state: type: string description: The state of the user's acceptance of the @@ -46996,13 +47243,13 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *180 + items: *183 private_fork: readOnly: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *56 + - *58 type: - 'null' required: @@ -47033,7 +47280,7 @@ paths: - private_fork additionalProperties: false examples: - default: &620 + default: &623 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -47412,7 +47659,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *65 + - *67 responses: '200': description: Response @@ -47420,7 +47667,7 @@ paths: application/json: schema: type: array - items: *235 + items: *238 examples: default: value: @@ -47460,8 +47707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response @@ -47486,8 +47733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response @@ -47514,7 +47761,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Immutable releases settings response @@ -47564,7 +47811,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -47622,7 +47869,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *65 + - *67 - *19 - *17 responses: @@ -47640,9 +47887,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47661,7 +47908,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *65 + - *67 requestBody: required: true content: @@ -47710,8 +47957,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: Response @@ -47733,8 +47980,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: Response @@ -47757,7 +48004,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -47775,7 +48022,7 @@ paths: type: integer network_configurations: type: array - items: &305 + items: &308 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -47853,7 +48100,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47872,7 +48119,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: - - *65 + - *67 requestBody: required: true content: @@ -47915,9 +48162,9 @@ paths: description: Response content: application/json: - schema: *305 + schema: *308 examples: - default: &306 + default: &309 value: id: 123456789ABCDEF name: My network configuration @@ -47945,8 +48192,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: - - *65 - - &307 + - *67 + - &310 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -47958,11 +48205,11 @@ paths: description: Response content: application/json: - schema: *305 + schema: *308 examples: - default: *306 + default: *309 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47981,8 +48228,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: - - *65 - - *307 + - *67 + - *310 requestBody: required: true content: @@ -48022,9 +48269,9 @@ paths: description: Response content: application/json: - schema: *305 + schema: *308 examples: - default: *306 + default: *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48043,8 +48290,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: - - *65 - - *307 + - *67 + - *310 responses: '204': description: Response @@ -48067,7 +48314,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: - - *65 + - *67 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -48126,7 +48373,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48156,8 +48403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *65 - *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`). @@ -48189,13 +48436,13 @@ paths: application/json: schema: type: array - items: *308 + items: *311 examples: - default: *309 - '500': *105 + default: *312 + '500': *107 '403': *27 '404': *6 - '422': *310 + '422': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48213,7 +48460,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *65 + - *67 - *17 - *19 - name: team_type @@ -48235,11 +48482,11 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -48259,7 +48506,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *65 + - *67 requestBody: required: true content: @@ -48323,7 +48570,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &314 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -48397,7 +48644,7 @@ paths: parent: anyOf: - type: 'null' - - *235 + - *238 members_count: type: integer examples: @@ -48722,7 +48969,7 @@ paths: - repos_count - organization examples: - default: &312 + default: &315 value: id: 1 node_id: MDQ6VGVhbTE= @@ -48792,16 +49039,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *65 - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 x-github: githubCloudOnly: false @@ -48822,8 +49069,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *65 - *67 + - *69 requestBody: required: false content: @@ -48886,16 +49133,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '201': description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 '422': *15 '403': *27 @@ -48920,12 +49167,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response - '422': &313 + '422': &316 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -48948,8 +49195,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *65 - *67 + - *69 - *17 - *19 responses: @@ -48959,12 +49206,12 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 headers: - Link: *57 - '422': *313 + Link: *59 + '422': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48984,8 +49231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *65 - *67 + - *69 - name: role description: Filters members returned by their role in the team. in: query @@ -49008,9 +49255,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49038,15 +49285,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *65 - *67 - - *61 + - *69 + - *63 responses: '200': description: Response content: application/json: - schema: &314 + schema: &317 title: Team Membership description: Team Membership type: object @@ -49074,7 +49321,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &636 + response-if-user-is-a-team-maintainer: &639 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -49110,9 +49357,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *65 - *67 - - *61 + - *69 + - *63 requestBody: required: false content: @@ -49137,9 +49384,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - response-if-users-membership-with-team-is-now-pending: &637 + response-if-users-membership-with-team-is-now-pending: &640 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -49174,9 +49421,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *65 - *67 - - *61 + - *69 + - *63 responses: '204': description: Response @@ -49202,8 +49449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *65 - *67 + - *69 - *17 - *19 responses: @@ -49213,11 +49460,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *250 + default: *253 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49244,16 +49491,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *65 - *67 - - *315 - - *316 + - *69 + - *318 + - *319 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &638 + schema: &641 title: Team Repository description: A team's access to a repository. type: object @@ -49279,7 +49526,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 forks: type: integer permissions: @@ -49887,10 +50134,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *65 - *67 - - *315 - - *316 + - *69 + - *318 + - *319 requestBody: required: false content: @@ -49935,10 +50182,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *65 - *67 - - *315 - - *316 + - *69 + - *318 + - *319 responses: '204': description: Response @@ -49962,8 +50209,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *65 - *67 + - *69 - *17 - *19 responses: @@ -49973,9 +50220,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - response-if-child-teams-exist: &639 + response-if-child-teams-exist: &642 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -50003,7 +50250,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50028,7 +50275,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *65 + - *67 - name: security_product in: path description: The security feature to enable or disable. @@ -50129,7 +50376,7 @@ paths: resources: type: object properties: - core: &317 + core: &320 title: Rate Limit type: object properties: @@ -50146,17 +50393,17 @@ paths: - remaining - reset - used - graphql: *317 - search: *317 - code_search: *317 - source_import: *317 - integration_manifest: *317 - code_scanning_upload: *317 - actions_runner_registration: *317 - scim: *317 - dependency_snapshots: *317 - dependency_sbom: *317 - code_scanning_autofix: *317 + graphql: *320 + search: *320 + code_search: *320 + source_import: *320 + integration_manifest: *320 + code_scanning_upload: *320 + actions_runner_registration: *320 + scim: *320 + dependency_snapshots: *320 + dependency_sbom: *320 + code_scanning_autofix: *320 required: - core - search @@ -50263,14 +50510,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *318 + schema: *321 examples: default-response: summary: Default response @@ -50775,7 +51022,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *319 + '301': *322 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50793,8 +51040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -51086,10 +51333,10 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 - '307': &321 + default: *323 + '307': &324 description: Temporary Redirect content: application/json: @@ -51118,8 +51365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -51141,9 +51388,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *321 + '307': *324 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51165,11 +51412,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - - &354 + - &357 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -51192,7 +51439,7 @@ paths: type: integer artifacts: type: array - items: &322 + items: &325 title: Artifact description: An artifact type: object @@ -51287,7 +51534,7 @@ paths: - expires_at - updated_at examples: - default: &355 + default: &358 value: total_count: 2 artifacts: @@ -51326,7 +51573,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51348,9 +51595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *315 - - *316 - - &323 + - *318 + - *319 + - &326 name: artifact_id description: The unique identifier of the artifact. in: path @@ -51362,7 +51609,7 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: default: value: @@ -51400,9 +51647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *315 - - *316 - - *323 + - *318 + - *319 + - *326 responses: '204': description: Response @@ -51426,9 +51673,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *315 - - *316 - - *323 + - *318 + - *319 + - *326 - name: archive_format in: path required: true @@ -51442,7 +51689,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': &510 + '410': &513 description: Gone content: application/json: @@ -51467,14 +51714,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &324 + schema: &327 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -51508,13 +51755,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *324 + schema: *327 examples: selected_actions: *40 responses: @@ -51543,14 +51790,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &325 + schema: &328 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -51584,13 +51831,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *325 + schema: *328 examples: selected_actions: *42 responses: @@ -51621,14 +51868,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *326 + schema: *329 examples: default: value: @@ -51654,11 +51901,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - - &327 + - &330 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 @@ -51686,13 +51933,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *51 + - *53 responses: '200': description: Response content: application/json: - schema: &328 + schema: &331 title: Repository actions caches description: Repository actions caches type: object @@ -51742,7 +51989,7 @@ paths: - total_count - actions_caches examples: - default: &329 + default: &332 value: total_count: 1 actions_caches: @@ -51754,7 +52001,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51774,23 +52021,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: - - *315 - - *316 + - *318 + - *319 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *327 + - *330 responses: '200': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51810,8 +52057,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: - - *315 - - *316 + - *318 + - *319 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -51842,9 +52089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *315 - - *316 - - &330 + - *318 + - *319 + - &333 name: job_id description: The unique identifier of the job. in: path @@ -51856,7 +52103,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &361 title: Job description: Information of a job execution in a workflow run type: object @@ -52203,9 +52450,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *315 - - *316 - - *330 + - *318 + - *319 + - *333 responses: '302': description: Response @@ -52233,9 +52480,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *315 - - *316 - - *330 + - *318 + - *319 + - *333 requestBody: required: false content: @@ -52257,7 +52504,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -52281,8 +52528,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Status response @@ -52332,8 +52579,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -52367,7 +52614,7 @@ paths: description: Empty response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -52396,8 +52643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -52415,7 +52662,7 @@ paths: type: integer secrets: type: array - items: &360 + items: &363 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -52436,7 +52683,7 @@ paths: - created_at - updated_at examples: - default: &361 + default: &364 value: total_count: 2 secrets: @@ -52447,7 +52694,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52469,9 +52716,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *315 - - *316 - - *331 + - *318 + - *319 + - *334 - *19 responses: '200': @@ -52488,7 +52735,7 @@ paths: type: integer variables: type: array - items: &364 + items: &367 title: Actions Variable type: object properties: @@ -52522,7 +52769,7 @@ paths: - created_at - updated_at examples: - default: &365 + default: &368 value: total_count: 2 variables: @@ -52535,7 +52782,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52555,8 +52802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -52565,12 +52812,12 @@ paths: schema: type: object properties: - enabled: &333 + enabled: &336 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *130 - selected_actions_url: *332 - sha_pinning_required: *131 + allowed_actions: *133 + selected_actions_url: *335 + sha_pinning_required: *134 required: - enabled examples: @@ -52598,8 +52845,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -52610,9 +52857,9 @@ paths: schema: type: object properties: - enabled: *333 - allowed_actions: *130 - sha_pinning_required: *131 + enabled: *336 + allowed_actions: *133 + sha_pinning_required: *134 required: - enabled examples: @@ -52642,14 +52889,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &334 + schema: &337 type: object properties: access_level: @@ -52666,7 +52913,7 @@ paths: required: - access_level examples: - default: &335 + default: &338 value: access_level: organization x-github: @@ -52690,15 +52937,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *334 + schema: *337 examples: - default: *335 + default: *338 responses: '204': description: Response @@ -52722,14 +52969,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *336 + schema: *339 examples: default: value: @@ -52753,8 +53000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Empty response for successful settings update @@ -52764,7 +53011,7 @@ paths: required: true content: application/json: - schema: *337 + schema: *340 examples: default: summary: Set retention days @@ -52788,16 +53035,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *132 + schema: *135 examples: - default: *338 + default: *341 '404': *6 x-github: enabledForGitHubApps: true @@ -52816,8 +53063,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -52827,7 +53074,7 @@ paths: required: true content: application/json: - schema: *132 + schema: *135 examples: default: summary: Set approval policy to first time contributors @@ -52851,16 +53098,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *339 + schema: *342 examples: - default: *133 + default: *136 '403': *27 '404': *6 x-github: @@ -52880,15 +53127,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *340 + schema: *343 examples: - default: *133 + default: *136 responses: '204': description: Empty response for successful settings update @@ -52912,16 +53159,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *135 + schema: *138 examples: - default: *136 + default: *139 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -52940,8 +53187,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -52949,9 +53196,9 @@ paths: required: false content: application/json: - schema: *135 + schema: *138 examples: - selected_actions: *136 + selected_actions: *139 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -52973,16 +53220,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *341 + schema: *344 examples: - default: *140 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53003,8 +53250,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Success response @@ -53015,9 +53262,9 @@ paths: required: true content: application/json: - schema: *342 + schema: *345 examples: - default: *140 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53044,8 +53291,8 @@ paths: in: query schema: type: string - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -53063,11 +53310,11 @@ paths: type: integer runners: type: array - items: *147 + items: *150 examples: - default: *148 + default: *151 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53089,8 +53336,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -53098,9 +53345,9 @@ paths: application/json: schema: type: array - items: *343 + items: *346 examples: - default: *344 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53122,8 +53369,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -53166,10 +53413,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *345 + '201': *348 '404': *6 '422': *7 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53197,16 +53444,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '201': description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53234,16 +53481,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '201': description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *347 + default: *350 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53265,17 +53512,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: '200': description: Response content: application/json: - schema: *147 + schema: *150 examples: - default: *348 + default: *351 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53296,9 +53543,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: '204': description: Response @@ -53324,11 +53571,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: - '200': *151 + '200': *154 '404': *6 x-github: githubCloudOnly: false @@ -53350,9 +53597,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 requestBody: required: true content: @@ -53376,7 +53623,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -53400,9 +53647,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 requestBody: required: true content: @@ -53427,7 +53674,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -53451,11 +53698,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: - '200': *349 + '200': *352 '404': *6 x-github: githubCloudOnly: false @@ -53482,12 +53729,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: - - *315 - - *316 - - *146 - - *350 + - *318 + - *319 + - *149 + - *353 responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -53513,9 +53760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *315 - - *316 - - &368 + - *318 + - *319 + - &371 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. @@ -53523,7 +53770,7 @@ paths: required: false schema: type: string - - &369 + - &372 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -53531,7 +53778,7 @@ paths: required: false schema: type: string - - &370 + - &373 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -53540,7 +53787,7 @@ paths: required: false schema: type: string - - &371 + - &374 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 @@ -53567,7 +53814,7 @@ paths: - pending - *17 - *19 - - &372 + - &375 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)." @@ -53576,7 +53823,7 @@ paths: schema: type: string format: date-time - - &351 + - &354 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -53585,13 +53832,13 @@ paths: schema: type: boolean default: false - - &373 + - &376 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &374 + - &377 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -53614,7 +53861,7 @@ paths: type: integer workflow_runs: type: array - items: &352 + items: &355 title: Workflow Run description: An invocation of a workflow type: object @@ -53731,7 +53978,7 @@ paths: type: - array - 'null' - items: *76 + items: *78 created_at: type: string format: date-time @@ -53792,7 +54039,7 @@ paths: head_commit: anyOf: - type: 'null' - - &396 + - &399 title: Simple Commit description: A commit. type: object @@ -53866,8 +54113,8 @@ paths: - timestamp - author - committer - repository: *145 - head_repository: *145 + repository: *148 + head_repository: *148 head_repository_id: type: integer examples: @@ -53907,7 +54154,7 @@ paths: - workflow_url - pull_requests examples: - default: &375 + default: &378 value: total_count: 1 workflow_runs: @@ -54121,7 +54368,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54143,24 +54390,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *315 - - *316 - - &353 + - *318 + - *319 + - &356 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *351 + - *354 responses: '200': description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: &356 + default: &359 value: id: 30433642 name: Build @@ -54401,9 +54648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '204': description: Response @@ -54426,9 +54673,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '200': description: Response @@ -54556,15 +54803,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: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -54591,13 +54838,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 - *17 - *19 - - *354 - - *51 + - *357 + - *53 responses: '200': description: Response @@ -54613,11 +54860,11 @@ paths: type: integer artifacts: type: array - items: *322 + items: *325 examples: - default: *355 + default: *358 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54639,25 +54886,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *315 - - *316 - - *353 - - &357 + - *318 + - *319 + - *356 + - &360 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *351 + - *354 responses: '200': description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: *356 + default: *359 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54680,10 +54927,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *315 - - *316 - - *353 - - *357 + - *318 + - *319 + - *356 + - *360 - *17 - *19 responses: @@ -54701,9 +54948,9 @@ paths: type: integer jobs: type: array - items: *358 + items: *361 examples: - default: &359 + default: &362 value: total_count: 1 jobs: @@ -54792,7 +55039,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -54816,10 +55063,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *315 - - *316 - - *353 - - *357 + - *318 + - *319 + - *356 + - *360 responses: '302': description: Response @@ -54847,19 +55094,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '202': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54882,9 +55129,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: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: true content: @@ -54951,19 +55198,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '202': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54986,9 +55233,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 - 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 @@ -55018,11 +55265,11 @@ paths: type: integer jobs: type: array - items: *358 + items: *361 examples: - default: *359 + default: *362 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55045,9 +55292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '302': description: Response @@ -55074,14 +55321,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '204': description: Response '403': *27 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55103,9 +55350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '200': description: Response @@ -55174,7 +55421,7 @@ paths: items: type: object properties: - type: &476 + type: &479 type: string description: The type of reviewer. enum: @@ -55185,7 +55432,7 @@ paths: reviewer: anyOf: - *4 - - *180 + - *183 required: - environment - wait_timer @@ -55260,9 +55507,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: true content: @@ -55312,7 +55559,7 @@ paths: application/json: schema: type: array - items: &471 + items: &474 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -55424,7 +55671,7 @@ paths: - created_at - updated_at examples: - default: &472 + default: &475 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -55480,9 +55727,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: false content: @@ -55504,7 +55751,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -55527,9 +55774,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: false content: @@ -55551,7 +55798,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -55583,9 +55830,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '200': description: Response @@ -55722,8 +55969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -55741,11 +55988,11 @@ paths: type: integer secrets: type: array - items: *360 + items: *363 examples: - default: *361 + default: *364 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55768,16 +56015,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *362 + schema: *365 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55799,17 +56046,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '200': description: Response content: application/json: - schema: *360 + schema: *363 examples: - default: &489 + default: &492 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -55835,9 +56082,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 requestBody: required: true content: @@ -55868,7 +56115,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -55894,9 +56141,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '204': description: Response @@ -55921,9 +56168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *315 - - *316 - - *331 + - *318 + - *319 + - *334 - *19 responses: '200': @@ -55940,11 +56187,11 @@ paths: type: integer variables: type: array - items: *364 + items: *367 examples: - default: *365 + default: *368 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55965,8 +56212,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -55993,7 +56240,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -56018,17 +56265,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *315 - - *316 - - *156 + - *318 + - *319 + - *159 responses: '200': description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: &490 + default: &493 value: name: USERNAME value: octocat @@ -56054,9 +56301,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *315 - - *316 - - *156 + - *318 + - *319 + - *159 requestBody: required: true content: @@ -56098,9 +56345,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *315 - - *316 - - *156 + - *318 + - *319 + - *159 responses: '204': description: Response @@ -56125,8 +56372,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -56144,7 +56391,7 @@ paths: type: integer workflows: type: array - items: &366 + items: &369 title: Workflow description: A GitHub Actions workflow type: object @@ -56239,7 +56486,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56262,9 +56509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *315 - - *316 - - &367 + - *318 + - *319 + - &370 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -56279,7 +56526,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *369 examples: default: value: @@ -56312,9 +56559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '204': description: Response @@ -56339,9 +56586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '200': description: Response including the workflow run ID and URLs when `return_run_details` @@ -56422,9 +56669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '204': description: Response @@ -56451,19 +56698,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *315 - - *316 - - *367 - - *368 - - *369 + - *318 + - *319 - *370 - *371 - - *17 - - *19 - *372 - - *351 - *373 - *374 + - *17 + - *19 + - *375 + - *354 + - *376 + - *377 responses: '200': description: Response @@ -56479,11 +56726,11 @@ paths: type: integer workflow_runs: type: array - items: *352 + items: *355 examples: - default: *375 + default: *378 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56513,9 +56760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '200': description: Response @@ -56576,12 +56823,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *315 - - *316 - - *51 + - *318 + - *319 + - *53 - *17 - - *43 - - *44 + - *45 + - *46 - name: ref description: |- The Git reference for the activities you want to list. @@ -56726,7 +56973,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '422': *7 x-github: githubCloudOnly: false @@ -56745,8 +56992,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -56758,9 +57005,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -56783,8 +57030,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *315 - - *316 + - *318 + - *319 - name: assignee in: path required: true @@ -56820,8 +57067,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -56933,11 +57180,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *315 - - *316 + - *318 + - *319 - *17 - - *43 - - *44 + - *45 + - *46 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -56975,7 +57222,7 @@ paths: initiator: type: string examples: - default: *376 + default: *379 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56995,8 +57242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -57004,7 +57251,7 @@ paths: application/json: schema: type: array - items: &377 + items: &380 title: Autolink reference description: An autolink reference. type: object @@ -57063,8 +57310,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -57103,9 +57350,9 @@ paths: description: response content: application/json: - schema: *377 + schema: *380 examples: - default: &378 + default: &381 value: id: 1 key_prefix: TICKET- @@ -57136,9 +57383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *315 - - *316 - - &379 + - *318 + - *319 + - &382 name: autolink_id description: The unique identifier of the autolink. in: path @@ -57150,9 +57397,9 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *378 + default: *381 '404': *6 x-github: githubCloudOnly: false @@ -57172,9 +57419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *315 - - *316 - - *379 + - *318 + - *319 + - *382 responses: '204': description: Response @@ -57198,8 +57445,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response if Dependabot is enabled @@ -57249,8 +57496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -57271,8 +57518,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -57292,8 +57539,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *315 - - *316 + - *318 + - *319 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -57331,7 +57578,7 @@ paths: - url protected: type: boolean - protection: &381 + protection: &384 title: Branch Protection description: Branch Protection type: object @@ -57374,7 +57621,7 @@ paths: required: - contexts - checks - enforce_admins: &384 + enforce_admins: &387 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -57391,7 +57638,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &386 + required_pull_request_reviews: &389 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -57413,7 +57660,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *180 + items: *183 apps: description: The list of apps with review dismissal access. @@ -57445,7 +57692,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *180 + items: *183 apps: description: The list of apps allowed to bypass pull request requirements. @@ -57475,7 +57722,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &383 + restrictions: &386 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -57538,7 +57785,7 @@ paths: type: string teams: type: array - items: *180 + items: *183 apps: type: array items: @@ -57750,7 +57997,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -57768,9 +58015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *315 - - *316 - - &382 + - *318 + - *319 + - &385 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). @@ -57784,14 +58031,14 @@ paths: description: Response content: application/json: - schema: &392 + schema: &395 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &446 + commit: &449 title: Commit description: Commit type: object @@ -57830,7 +58077,7 @@ paths: author: anyOf: - type: 'null' - - &380 + - &383 title: Git User description: Metaproperties for Git author/committer information. @@ -57852,7 +58099,7 @@ paths: committer: anyOf: - type: 'null' - - *380 + - *383 message: type: string examples: @@ -57876,7 +58123,7 @@ paths: required: - sha - url - verification: &496 + verification: &499 title: Verification type: object properties: @@ -57912,14 +58159,14 @@ paths: author: oneOf: - *4 - - *154 + - *157 type: - 'null' - object committer: oneOf: - *4 - - *154 + - *157 type: - 'null' - object @@ -57956,7 +58203,7 @@ paths: type: integer files: type: array - items: &457 + items: &460 title: Diff Entry description: Diff Entry type: object @@ -58052,7 +58299,7 @@ paths: - self protected: type: boolean - protection: *381 + protection: *384 protection_url: type: string format: uri @@ -58161,7 +58408,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *319 + '301': *322 '404': *6 x-github: githubCloudOnly: false @@ -58183,15 +58430,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: default: value: @@ -58385,9 +58632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -58647,7 +58894,7 @@ paths: url: type: string format: uri - required_status_checks: &389 + required_status_checks: &392 title: Status Check Policy description: Status Check Policy type: object @@ -58728,7 +58975,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *183 apps: type: array items: *5 @@ -58746,7 +58993,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *183 apps: type: array items: *5 @@ -58806,7 +59053,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *383 + restrictions: *386 required_conversation_resolution: type: object properties: @@ -58918,9 +59165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -58945,17 +59192,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: &385 + default: &388 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -58977,17 +59224,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *385 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59006,9 +59253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59033,17 +59280,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: &387 + default: &390 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -59139,9 +59386,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -59239,9 +59486,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *387 + default: *390 '422': *15 x-github: githubCloudOnly: false @@ -59262,9 +59509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59291,17 +59538,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: &388 + default: &391 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -59324,17 +59571,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *388 + default: *391 '404': *6 x-github: githubCloudOnly: false @@ -59354,9 +59601,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59381,17 +59628,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: &390 + default: &393 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -59417,9 +59664,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -59471,9 +59718,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: *390 + default: *393 '404': *6 '422': *15 x-github: @@ -59495,9 +59742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59521,9 +59768,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -59557,9 +59804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -59626,9 +59873,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -59692,9 +59939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: content: application/json: @@ -59760,15 +60007,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *383 + schema: *386 examples: default: value: @@ -59859,9 +60106,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59884,9 +60131,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -59896,7 +60143,7 @@ paths: type: array items: *5 examples: - default: &391 + default: &394 value: - id: 1 slug: octoapp @@ -59953,9 +60200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -59989,7 +60236,7 @@ paths: type: array items: *5 examples: - default: *391 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -60010,9 +60257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60046,7 +60293,7 @@ paths: type: array items: *5 examples: - default: *391 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -60067,9 +60314,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60103,7 +60350,7 @@ paths: type: array items: *5 examples: - default: *391 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -60125,9 +60372,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -60135,9 +60382,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '404': *6 x-github: githubCloudOnly: false @@ -60157,9 +60404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -60195,9 +60442,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '422': *15 x-github: githubCloudOnly: false @@ -60218,9 +60465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -60256,9 +60503,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '422': *15 x-github: githubCloudOnly: false @@ -60279,9 +60526,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: content: application/json: @@ -60316,9 +60563,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '422': *15 x-github: githubCloudOnly: false @@ -60340,9 +60587,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -60352,7 +60599,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '404': *6 x-github: githubCloudOnly: false @@ -60376,9 +60623,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60411,7 +60658,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '422': *15 x-github: githubCloudOnly: false @@ -60436,9 +60683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60471,7 +60718,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '422': *15 x-github: githubCloudOnly: false @@ -60496,9 +60743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60531,7 +60778,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '422': *15 x-github: githubCloudOnly: false @@ -60558,9 +60805,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -60582,7 +60829,7 @@ paths: description: Response content: application/json: - schema: *392 + schema: *395 examples: default: value: @@ -60698,8 +60945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -60978,7 +61225,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &396 title: CheckRun description: A check performed on the code of a given code change type: object @@ -61113,8 +61360,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *76 - deployment: &702 + items: *78 + deployment: &705 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -61401,9 +61648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *315 - - *316 - - &394 + - *318 + - *319 + - &397 name: check_run_id description: The unique identifier of the check run. in: path @@ -61415,9 +61662,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *396 examples: - default: &395 + default: &398 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -61517,9 +61764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *315 - - *316 - - *394 + - *318 + - *319 + - *397 requestBody: required: true content: @@ -61759,9 +62006,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *396 examples: - default: *395 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61781,9 +62028,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *315 - - *316 - - *394 + - *318 + - *319 + - *397 - *17 - *19 responses: @@ -61873,7 +62120,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61893,15 +62140,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *315 - - *316 - - *394 + - *318 + - *319 + - *397 responses: '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -61939,8 +62186,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -61962,7 +62209,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &397 + schema: &400 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -62044,12 +62291,12 @@ paths: type: - array - 'null' - items: *76 + items: *78 app: anyOf: - type: 'null' - *5 - repository: *145 + repository: *148 created_at: type: - string @@ -62060,7 +62307,7 @@ paths: - string - 'null' format: date-time - head_commit: *396 + head_commit: *399 latest_check_runs_count: type: integer check_runs_url: @@ -62088,7 +62335,7 @@ paths: - check_runs_url - pull_requests examples: - default: &398 + default: &401 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -62379,9 +62626,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62400,8 +62647,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -62462,7 +62709,7 @@ paths: required: - app_id - setting - repository: *145 + repository: *148 examples: default: value: @@ -62710,9 +62957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *315 - - *316 - - &399 + - *318 + - *319 + - &402 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -62724,9 +62971,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62749,17 +62996,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *315 - - *316 - - *399 - - &452 + - *318 + - *319 + - *402 + - &455 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &453 + - &456 name: status description: Returns check runs with the specified `status`. in: query @@ -62798,9 +63045,9 @@ paths: type: integer check_runs: type: array - items: *393 + items: *396 examples: - default: &454 + default: &457 value: total_count: 1 check_runs: @@ -62882,7 +63129,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62902,15 +63149,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *315 - - *316 - - *399 + - *318 + - *319 + - *402 responses: '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -62937,30 +63184,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *315 - - *316 - - *400 - - *401 + - *318 + - *319 + - *403 + - *404 - *19 - *17 - - &418 + - &421 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: *402 - - &419 + schema: *405 + - &422 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *51 - - *43 - - *44 + - *53 + - *45 + - *46 - name: sort description: The property by which to sort the results. in: query @@ -62976,13 +63223,13 @@ paths: be returned. in: query required: false - schema: *403 + schema: *406 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *404 + schema: *407 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -63001,24 +63248,24 @@ paths: items: type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 - instances_url: *405 - state: *172 - fixed_at: *168 + number: *166 + created_at: *167 + updated_at: *168 + url: *169 + html_url: *170 + instances_url: *408 + state: *175 + fixed_at: *171 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 - dismissed_reason: *406 - dismissed_comment: *407 - rule: *408 - tool: *409 - most_recent_instance: *410 + dismissed_at: *172 + dismissed_reason: *409 + dismissed_comment: *410 + rule: *411 + tool: *412 + most_recent_instance: *413 dismissal_approved_by: anyOf: - type: 'null' @@ -63141,14 +63388,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &411 + '403': &414 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63168,9 +63415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *315 - - *316 - - &412 + - *318 + - *319 + - &415 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -63178,30 +63425,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *163 + schema: *166 responses: '200': description: Response content: application/json: - schema: &413 + schema: &416 type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 - instances_url: *405 - state: *172 - fixed_at: *168 + number: *166 + created_at: *167 + updated_at: *168 + url: *169 + html_url: *170 + instances_url: *408 + state: *175 + fixed_at: *171 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 - dismissed_reason: *406 - dismissed_comment: *407 + dismissed_at: *172 + dismissed_reason: *409 + dismissed_comment: *410 rule: type: object properties: @@ -63263,8 +63510,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *409 - most_recent_instance: *410 + tool: *412 + most_recent_instance: *413 dismissal_approved_by: anyOf: - type: 'null' @@ -63360,9 +63607,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63380,9 +63627,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 requestBody: required: true content: @@ -63397,8 +63644,8 @@ paths: enum: - open - dismissed - dismissed_reason: *406 - dismissed_comment: *407 + dismissed_reason: *409 + dismissed_comment: *410 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -63426,7 +63673,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *416 examples: default: value: @@ -63502,14 +63749,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &417 + '403': &420 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': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63529,15 +63776,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: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 responses: '200': description: Response content: application/json: - schema: &414 + schema: &417 type: object properties: status: @@ -63564,13 +63811,13 @@ paths: - description - started_at examples: - default: &415 + default: &418 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &416 + '400': &419 description: Bad Request content: application/json: @@ -63581,9 +63828,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': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63606,29 +63853,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: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 responses: '200': description: OK content: application/json: - schema: *414 + schema: *417 examples: - default: *415 + default: *418 '202': description: Accepted content: application/json: - schema: *414 + schema: *417 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *416 + '400': *419 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -63638,7 +63885,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63660,9 +63907,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: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 requestBody: required: false content: @@ -63708,12 +63955,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *416 - '403': *417 + '400': *419 + '403': *420 '404': *6 '422': description: Unprocessable Entity - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63733,13 +63980,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 - *19 - *17 - - *418 - - *419 + - *421 + - *422 responses: '200': description: Response @@ -63750,10 +63997,10 @@ paths: items: type: object properties: - ref: *402 - analysis_key: *420 - environment: *421 - category: *422 + ref: *405 + analysis_key: *423 + environment: *424 + category: *425 state: type: - string @@ -63770,7 +64017,7 @@ paths: properties: text: type: string - location: *423 + location: *426 html_url: type: string classifications: @@ -63778,7 +64025,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: *424 + items: *427 examples: default: value: @@ -63815,9 +64062,9 @@ paths: end_column: 50 classifications: - source - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63849,30 +64096,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *315 - - *316 - - *400 - - *401 + - *318 + - *319 + - *403 + - *404 - *19 - *17 - - *419 + - *422 - 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: *402 + schema: *405 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &425 + schema: &428 type: string description: An identifier for the upload. examples: - 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *51 + - *53 - name: sort description: The property by which to sort the results. in: query @@ -63889,23 +64136,23 @@ paths: application/json: schema: type: array - items: &426 + items: &429 type: object properties: - ref: *402 - commit_sha: &434 + ref: *405 + commit_sha: &437 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: *420 + analysis_key: *423 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *422 + category: *425 error: type: string examples: @@ -63930,8 +64177,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *425 - tool: *409 + sarif_id: *428 + tool: *412 deletable: type: boolean warning: @@ -63993,9 +64240,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64029,8 +64276,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: - - *315 - - *316 + - *318 + - *319 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64043,7 +64290,7 @@ paths: description: Response content: application/json: - schema: *426 + schema: *429 examples: response: summary: application/json response @@ -64097,14 +64344,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *411 + '403': *414 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64184,8 +64431,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: - - *315 - - *316 + - *318 + - *319 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64241,9 +64488,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': *417 + '403': *420 '404': *6 - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64263,8 +64510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -64272,7 +64519,7 @@ paths: application/json: schema: type: array - items: &427 + items: &430 title: CodeQL Database description: A CodeQL database. type: object @@ -64384,9 +64631,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': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64413,8 +64660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - name: language in: path description: The language of the CodeQL database. @@ -64426,7 +64673,7 @@ paths: description: Response content: application/json: - schema: *427 + schema: *430 examples: default: value: @@ -64458,11 +64705,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': &459 + '302': &462 description: Found - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64482,8 +64729,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *315 - - *316 + - *318 + - *319 - name: language in: path description: The language of the CodeQL database. @@ -64493,9 +64740,9 @@ paths: responses: '204': description: Response - '403': *417 + '403': *420 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64521,8 +64768,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -64531,7 +64778,7 @@ paths: type: object additionalProperties: false properties: - language: &428 + language: &431 type: string description: The language targeted by the CodeQL query enum: @@ -64611,7 +64858,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &432 + schema: &435 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -64619,9 +64866,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *56 + controller_repo: *58 actor: *4 - query_language: *428 + query_language: *431 query_pack_url: type: string description: The download url for the query pack. @@ -64669,7 +64916,7 @@ paths: items: type: object properties: - repository: &429 + repository: &432 title: Repository Identifier description: Repository Identifier type: object @@ -64711,7 +64958,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &433 + analysis_status: &436 type: string description: The new status of the CodeQL variant analysis repository task. @@ -64743,7 +64990,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &430 + access_mismatch_repos: &433 type: object properties: repository_count: @@ -64758,7 +65005,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: *429 + items: *432 required: - repository_count - repositories @@ -64781,8 +65028,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *430 - over_limit_repos: *430 + no_codeql_db_repos: *433 + over_limit_repos: *433 required: - access_mismatch_repos - not_found_repos @@ -64798,7 +65045,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &431 + value: &434 summary: Default response value: id: 1 @@ -64944,17 +65191,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *431 + value: *434 repository_lists: summary: Response for a successful variant analysis submission - value: *431 + value: *434 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64975,8 +65222,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: - - *315 - - *316 + - *318 + - *319 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -64988,11 +65235,11 @@ paths: description: Response content: application/json: - schema: *432 + schema: *435 examples: - default: *431 + default: *434 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65013,7 +65260,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: - - *315 + - *318 - name: repo in: path description: The name of the controller repository. @@ -65047,8 +65294,8 @@ paths: schema: type: object properties: - repository: *56 - analysis_status: *433 + repository: *58 + analysis_status: *436 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -65152,7 +65399,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65173,8 +65420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -65265,9 +65512,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65286,8 +65533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -65356,7 +65603,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -65381,7 +65628,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *417 + '403': *420 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -65395,7 +65642,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65452,8 +65699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -65461,7 +65708,7 @@ paths: schema: type: object properties: - commit_sha: *434 + commit_sha: *437 ref: type: string description: |- @@ -65521,7 +65768,7 @@ paths: schema: type: object properties: - id: *425 + id: *428 url: type: string description: The REST API URL for checking the status of the upload. @@ -65535,11 +65782,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': *417 + '403': *420 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65558,8 +65805,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *315 - - *316 + - *318 + - *319 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -65607,10 +65854,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': *411 + '403': *414 '404': description: Not Found if the sarif id does not match any upload - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65632,8 +65879,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -65657,7 +65904,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *45 + configuration: *47 examples: default: value: @@ -65689,7 +65936,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': *176 + '204': *179 '304': *35 '403': *27 '404': *6 @@ -65714,8 +65961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *315 - - *316 + - *318 + - *319 - 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 @@ -65843,8 +66090,8 @@ paths: parameters: - *17 - *19 - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -65860,7 +66107,7 @@ paths: type: integer codespaces: type: array - items: *225 + items: *228 examples: default: value: @@ -66136,7 +66383,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': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -66158,8 +66405,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -66223,22 +66470,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -66262,8 +66509,8 @@ paths: parameters: - *17 - *19 - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -66303,7 +66550,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *105 + '500': *107 '400': *14 '401': *23 '403': *27 @@ -66327,8 +66574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -66365,9 +66612,9 @@ paths: type: integer machines: type: array - items: *436 + items: *439 examples: - default: &645 + default: &648 value: total_count: 2 machines: @@ -66384,7 +66631,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -66407,8 +66654,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *315 - - *316 + - *318 + - *319 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -66495,8 +66742,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: - - *315 - - *316 + - *318 + - *319 - 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 @@ -66544,7 +66791,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66565,8 +66812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -66584,7 +66831,7 @@ paths: type: integer secrets: type: array - items: &440 + items: &443 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -66605,9 +66852,9 @@ paths: - created_at - updated_at examples: - default: *437 + default: *440 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66628,16 +66875,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *438 + schema: *441 examples: - default: *439 + default: *442 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -66657,17 +66904,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '200': description: Response content: application/json: - schema: *440 + schema: *443 examples: - default: *441 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66687,9 +66934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 requestBody: required: true content: @@ -66717,7 +66964,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -66741,9 +66988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '204': description: Response @@ -66771,8 +67018,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *315 - - *316 + - *318 + - *319 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -66810,7 +67057,7 @@ paths: application/json: schema: type: array - items: &442 + items: &445 title: Collaborator description: Collaborator type: object @@ -66978,7 +67225,7 @@ paths: admin: false role_name: write headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -67003,9 +67250,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 responses: '204': description: Response if user is a collaborator @@ -67051,9 +67298,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 requestBody: required: false content: @@ -67079,7 +67326,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &509 + schema: &512 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -67091,7 +67338,7 @@ paths: format: int64 examples: - 42 - repository: *145 + repository: *148 invitee: anyOf: - type: 'null' @@ -67267,7 +67514,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *114 + schema: *116 '403': *27 x-github: triggersNotification: true @@ -67307,9 +67554,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 responses: '204': description: No Content when collaborator was removed from the repository. @@ -67340,9 +67587,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 responses: '200': description: if user has admin permissions @@ -67362,7 +67609,7 @@ paths: user: anyOf: - type: 'null' - - *442 + - *445 required: - permission - role_name @@ -67416,8 +67663,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -67427,7 +67674,7 @@ paths: application/json: schema: type: array - items: &443 + items: &446 title: Commit Comment description: Commit Comment type: object @@ -67468,8 +67715,8 @@ paths: updated_at: type: string format: date-time - author_association: *70 - reactions: *71 + author_association: *72 + reactions: *73 required: - url - html_url @@ -67485,7 +67732,7 @@ paths: - created_at - updated_at examples: - default: &448 + default: &451 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67519,7 +67766,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67544,17 +67791,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: &449 + default: &452 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -67611,9 +67858,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -67635,7 +67882,7 @@ paths: description: Response content: application/json: - schema: *443 + schema: *446 examples: default: value: @@ -67686,9 +67933,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response @@ -67709,9 +67956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 - 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. @@ -67737,7 +67984,7 @@ paths: application/json: schema: type: array - items: &444 + items: &447 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -67781,7 +68028,7 @@ paths: - content - created_at examples: - default: &512 + default: &515 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -67807,7 +68054,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -67826,9 +68073,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -67860,9 +68107,9 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: &445 + default: &448 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -67891,9 +68138,9 @@ paths: description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -67915,10 +68162,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *315 - - *316 - - *87 - - &513 + - *318 + - *319 + - *89 + - &516 name: reaction_id description: The unique identifier of the reaction. in: path @@ -67973,8 +68220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *315 - - *316 + - *318 + - *319 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -68030,9 +68277,9 @@ paths: application/json: schema: type: array - items: *446 + items: *449 examples: - default: &559 + default: &562 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68102,11 +68349,11 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *57 - '500': *105 + Link: *59 + '500': *107 '400': *14 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68126,9 +68373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *315 - - *316 - - &447 + - *318 + - *319 + - &450 name: commit_sha description: The SHA of the commit. in: path @@ -68175,7 +68422,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68200,9 +68447,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 - *17 - *19 responses: @@ -68212,11 +68459,11 @@ paths: application/json: schema: type: array - items: *443 + items: *446 examples: - default: *448 + default: *451 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68242,9 +68489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 requestBody: required: true content: @@ -68279,9 +68526,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: *449 + default: *452 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68309,9 +68556,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 - *17 - *19 responses: @@ -68321,9 +68568,9 @@ paths: application/json: schema: type: array - items: *450 + items: *453 examples: - default: &551 + default: &554 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -68802,8 +69049,8 @@ paths: auto_merge: draft: false headers: - Link: *57 - '409': *50 + Link: *59 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68860,11 +69107,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *315 - - *316 + - *318 + - *319 - *19 - *17 - - &451 + - &454 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)" @@ -68879,9 +69126,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *449 examples: - default: &539 + default: &542 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68967,9 +69214,9 @@ paths: ..... '422': *15 '404': *6 - '500': *105 - '503': *106 - '409': *50 + '500': *107 + '503': *108 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68994,11 +69241,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *315 - - *316 - - *451 - - *452 - - *453 + - *318 + - *319 + - *454 + - *455 + - *456 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -69032,11 +69279,11 @@ paths: type: integer check_runs: type: array - items: *393 + items: *396 examples: - default: *454 + default: *457 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69059,9 +69306,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *315 - - *316 - - *451 + - *318 + - *319 + - *454 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -69069,7 +69316,7 @@ paths: schema: type: integer example: 1 - - *452 + - *455 - *17 - *19 responses: @@ -69087,7 +69334,7 @@ paths: type: integer check_suites: type: array - items: *397 + items: *400 examples: default: value: @@ -69262,7 +69509,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69287,9 +69534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *315 - - *316 - - *451 + - *318 + - *319 + - *454 - *17 - *19 responses: @@ -69360,7 +69607,7 @@ paths: type: string total_count: type: integer - repository: *145 + repository: *148 commit_url: type: string format: uri @@ -69491,9 +69738,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *315 - - *316 - - *451 + - *318 + - *319 + - *454 - *17 - *19 responses: @@ -69503,7 +69750,7 @@ paths: application/json: schema: type: array - items: &624 + items: &627 title: Status description: The status of a commit. type: object @@ -69583,8 +69830,8 @@ paths: type: User site_admin: false headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69612,8 +69859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -69646,11 +69893,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *455 + - *458 code_of_conduct_file: anyOf: - type: 'null' - - &456 + - &459 title: Community Health File type: object properties: @@ -69666,23 +69913,23 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 contributing: anyOf: - type: 'null' - - *456 + - *459 readme: anyOf: - type: 'null' - - *456 + - *459 issue_template: anyOf: - type: 'null' - - *456 + - *459 pull_request_template: anyOf: - type: 'null' - - *456 + - *459 required: - code_of_conduct - code_of_conduct_file @@ -69811,8 +70058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *315 - - *316 + - *318 + - *319 - *19 - *17 - name: basehead @@ -69860,8 +70107,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *446 - merge_base_commit: *446 + base_commit: *449 + merge_base_commit: *449 status: type: string enum: @@ -69885,10 +70132,10 @@ paths: - 6 commits: type: array - items: *446 + items: *449 files: type: array - items: *457 + items: *460 required: - url - html_url @@ -70131,8 +70378,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70174,8 +70421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *315 - - *316 + - *318 + - *319 - name: path description: path parameter in: path @@ -70345,7 +70592,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &458 + response-if-content-is-a-file-github-object: &461 summary: Response if content is a file value: type: file @@ -70482,7 +70729,7 @@ paths: - size - type - url - - &564 + - &567 title: Content File description: Content File type: object @@ -70700,7 +70947,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *458 + response-if-content-is-a-file: *461 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -70769,7 +71016,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *459 + '302': *462 '304': *35 x-github: githubCloudOnly: false @@ -70792,8 +71039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *315 - - *316 + - *318 + - *319 - name: path description: path parameter in: path @@ -70888,7 +71135,7 @@ paths: description: Response content: application/json: - schema: &460 + schema: &463 title: File Commit description: File Commit type: object @@ -71044,7 +71291,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *463 examples: example-for-creating-a-file: value: @@ -71098,7 +71345,7 @@ paths: schema: oneOf: - *3 - - &491 + - &494 description: Repository rule violation was detected type: object properties: @@ -71119,7 +71366,7 @@ paths: items: type: object properties: - placeholder_id: &616 + placeholder_id: &619 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -71151,8 +71398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *315 - - *316 + - *318 + - *319 - name: path description: path parameter in: path @@ -71213,7 +71460,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *463 examples: default: value: @@ -71247,8 +71494,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *50 - '503': *106 + '409': *52 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71268,8 +71515,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *315 - - *316 + - *318 + - *319 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -71370,7 +71617,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *57 + Link: *59 '204': description: Response if repository is empty '403': *27 @@ -71393,26 +71640,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *315 - - *316 - - *181 - - *182 - - *183 + - *318 + - *319 - *184 + - *185 + - *186 + - *187 - 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 - - *185 - - *461 - - *186 - - *187 - *188 - - *51 - - *43 - - *44 + - *464 + - *189 + - *190 + - *191 + - *53 + - *45 + - *46 - *17 responses: '200': @@ -71421,11 +71668,11 @@ paths: application/json: schema: type: array - items: &465 + items: &468 type: object description: A Dependabot alert. properties: - number: *163 + number: *166 state: type: string description: The state of the Dependabot alert. @@ -71440,7 +71687,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *52 + package: *54 manifest_path: type: string description: The full path to the dependency manifest file, @@ -71471,13 +71718,13 @@ paths: - direct - transitive - - security_advisory: *462 - security_vulnerability: *55 - url: *166 - html_url: *167 - created_at: *164 - updated_at: *165 - dismissed_at: *169 + security_advisory: *465 + security_vulnerability: *57 + url: *169 + html_url: *170 + created_at: *167 + updated_at: *168 + dismissed_at: *172 dismissed_by: anyOf: - type: 'null' @@ -71501,9 +71748,9 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *168 - auto_dismissed_at: *463 - dismissal_request: *464 + fixed_at: *171 + auto_dismissed_at: *466 + dismissal_request: *467 assignees: type: array description: The users assigned to this alert. @@ -71758,9 +72005,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *315 - - *316 - - &466 + - *318 + - *319 + - &469 name: alert_number in: path description: |- @@ -71769,13 +72016,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *163 + schema: *166 responses: '200': description: Response content: application/json: - schema: *465 + schema: *468 examples: default: value: @@ -71907,9 +72154,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *315 - - *316 - - *466 + - *318 + - *319 + - *469 requestBody: required: true content: @@ -71965,7 +72212,7 @@ paths: description: Response content: application/json: - schema: *465 + schema: *468 examples: default: value: @@ -72072,7 +72319,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *7 x-github: githubCloudOnly: false @@ -72095,8 +72342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -72114,7 +72361,7 @@ paths: type: integer secrets: type: array - items: &469 + items: &472 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -72146,7 +72393,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72168,16 +72415,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *467 + schema: *470 examples: - default: *468 + default: *471 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72197,15 +72444,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '200': description: Response content: application/json: - schema: *469 + schema: *472 examples: default: value: @@ -72231,9 +72478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 requestBody: required: true content: @@ -72261,7 +72508,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -72285,9 +72532,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '204': description: Response @@ -72309,8 +72556,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: - - *315 - - *316 + - *318 + - *319 - 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 @@ -72460,7 +72707,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *57 + Link: *59 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -72484,8 +72731,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -72722,7 +72969,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *57 + Link: *59 '404': *6 '403': *27 x-github: @@ -72745,8 +72992,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -72829,7 +73076,7 @@ paths: - version - url additionalProperties: false - metadata: &470 + metadata: &473 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -72868,7 +73115,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *470 + metadata: *473 resolved: type: object description: A collection of resolved package dependencies. @@ -72882,7 +73129,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *470 + metadata: *473 relationship: type: string description: A notation of whether a dependency is requested @@ -73015,8 +73262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *315 - - *316 + - *318 + - *319 - name: sha description: The SHA recorded at creation time. in: query @@ -73057,11 +73304,11 @@ paths: application/json: schema: type: array - items: *471 + items: *474 examples: - default: *472 + default: *475 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73125,8 +73372,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -73208,7 +73455,7 @@ paths: description: Response content: application/json: - schema: *471 + schema: *474 examples: simple-example: summary: Simple example @@ -73281,9 +73528,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *315 - - *316 - - &473 + - *318 + - *319 + - &476 name: deployment_id description: deployment_id parameter in: path @@ -73295,7 +73542,7 @@ paths: description: Response content: application/json: - schema: *471 + schema: *474 examples: default: value: @@ -73360,9 +73607,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 responses: '204': description: Response @@ -73384,9 +73631,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 - *17 - *19 responses: @@ -73396,7 +73643,7 @@ paths: application/json: schema: type: array - items: &474 + items: &477 title: Deployment Status description: The status of a deployment. type: object @@ -73540,7 +73787,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -73560,9 +73807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 requestBody: required: true content: @@ -73637,9 +73884,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *477 examples: - default: &475 + default: &478 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -73695,9 +73942,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 - name: status_id in: path required: true @@ -73708,9 +73955,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *477 examples: - default: *475 + default: *478 '404': *6 x-github: githubCloudOnly: false @@ -73735,8 +73982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -73793,8 +74040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -73812,7 +74059,7 @@ paths: - 5 environments: type: array - items: &477 + items: &480 title: Environment description: Details of a deployment environment type: object @@ -73874,7 +74121,7 @@ paths: type: string examples: - wait_timer - wait_timer: &479 + wait_timer: &482 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -73916,11 +74163,11 @@ paths: items: type: object properties: - type: *476 + type: *479 reviewer: anyOf: - *4 - - *180 + - *183 required: - id - node_id @@ -73943,7 +74190,7 @@ paths: - id - node_id - type - deployment_branch_policy: &480 + deployment_branch_policy: &483 type: - object - 'null' @@ -74060,9 +74307,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *315 - - *316 - - &478 + - *318 + - *319 + - &481 name: environment_name in: path required: true @@ -74075,9 +74322,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: &481 + default: &484 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -74161,9 +74408,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 requestBody: required: false content: @@ -74173,7 +74420,7 @@ paths: - object - 'null' properties: - wait_timer: *479 + wait_timer: *482 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -74192,14 +74439,14 @@ paths: items: type: object properties: - type: *476 + type: *479 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *480 + deployment_branch_policy: *483 additionalProperties: false examples: default: @@ -74219,9 +74466,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: *481 + default: *484 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -74245,9 +74492,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 responses: '204': description: Default response @@ -74272,9 +74519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 - *17 - *19 responses: @@ -74293,7 +74540,7 @@ paths: - 2 branch_policies: type: array - items: &482 + items: &485 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -74354,9 +74601,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 requestBody: required: true content: @@ -74404,9 +74651,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - example-wildcard: &483 + example-wildcard: &486 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -74448,10 +74695,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 - - &484 + - *318 + - *319 + - *481 + - &487 name: branch_policy_id in: path required: true @@ -74463,9 +74710,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74484,10 +74731,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 - - *484 + - *318 + - *319 + - *481 + - *487 requestBody: required: true content: @@ -74516,9 +74763,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74537,10 +74784,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 - - *484 + - *318 + - *319 + - *481 + - *487 responses: '204': description: Response @@ -74565,9 +74812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *478 - - *316 - - *315 + - *481 + - *319 + - *318 responses: '200': description: List of deployment protection rules @@ -74584,7 +74831,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &485 + items: &488 title: Deployment protection rule description: Deployment protection rule type: object @@ -74606,7 +74853,7 @@ paths: for the environment. examples: - true - app: &486 + app: &489 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -74709,9 +74956,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: - - *478 - - *316 - - *315 + - *481 + - *319 + - *318 requestBody: content: application/json: @@ -74732,9 +74979,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *485 + schema: *488 examples: - default: &487 + default: &490 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -74769,9 +75016,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: - - *478 - - *316 - - *315 + - *481 + - *319 + - *318 - *19 - *17 responses: @@ -74791,7 +75038,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *486 + items: *489 examples: default: value: @@ -74826,10 +75073,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *315 - - *316 - - *478 - - &488 + - *318 + - *319 + - *481 + - &491 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -74841,9 +75088,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *488 examples: - default: *487 + default: *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74864,10 +75111,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *478 - - *316 - - *315 - - *488 + - *481 + - *319 + - *318 + - *491 responses: '204': description: Response @@ -74893,9 +75140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 - *17 - *19 responses: @@ -74913,11 +75160,11 @@ paths: type: integer secrets: type: array - items: *360 + items: *363 examples: - default: *361 + default: *364 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74940,17 +75187,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 responses: '200': description: Response content: application/json: - schema: *362 + schema: *365 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74972,18 +75219,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *315 - - *316 - - *478 - - *153 + - *318 + - *319 + - *481 + - *156 responses: '200': description: Response content: application/json: - schema: *360 + schema: *363 examples: - default: *489 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75005,10 +75252,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *315 - - *316 - - *478 - - *153 + - *318 + - *319 + - *481 + - *156 requestBody: required: true content: @@ -75039,7 +75286,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -75065,10 +75312,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *315 - - *316 - - *478 - - *153 + - *318 + - *319 + - *481 + - *156 responses: '204': description: Default response @@ -75093,10 +75340,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *315 - - *316 - - *478 - - *331 + - *318 + - *319 + - *481 + - *334 - *19 responses: '200': @@ -75113,11 +75360,11 @@ paths: type: integer variables: type: array - items: *364 + items: *367 examples: - default: *365 + default: *368 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75138,9 +75385,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 requestBody: required: true content: @@ -75167,7 +75414,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -75192,18 +75439,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *315 - - *316 - - *478 - - *156 + - *318 + - *319 + - *481 + - *159 responses: '200': description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: *490 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75224,10 +75471,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *315 - - *316 - - *156 - - *478 + - *318 + - *319 + - *159 + - *481 requestBody: required: true content: @@ -75269,10 +75516,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *315 - - *316 - - *156 - - *478 + - *318 + - *319 + - *159 + - *481 responses: '204': description: Response @@ -75294,8 +75541,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -75305,7 +75552,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: 200-response: value: @@ -75363,8 +75610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *315 - - *316 + - *318 + - *319 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -75386,7 +75633,7 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: default: value: @@ -75499,7 +75746,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *57 + Link: *59 '400': *14 x-github: githubCloudOnly: false @@ -75523,8 +75770,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -75557,9 +75804,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 '400': *14 '422': *15 '403': *27 @@ -75580,8 +75827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -75632,7 +75879,7 @@ paths: schema: type: string '404': *6 - '409': *50 + '409': *52 '403': *27 '422': description: Validation failed @@ -75640,8 +75887,8 @@ paths: application/json: schema: oneOf: - - *114 - - *491 + - *116 + - *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75666,8 +75913,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *315 - - *316 + - *318 + - *319 - name: file_sha in: path required: true @@ -75719,7 +75966,7 @@ paths: '404': *6 '422': *15 '403': *27 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75767,8 +76014,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -75877,7 +76124,7 @@ paths: description: Response content: application/json: - schema: &492 + schema: &495 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -76054,7 +76301,7 @@ paths: type: string '422': *15 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76104,15 +76351,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 responses: '200': description: Response content: application/json: - schema: *492 + schema: *495 examples: default: value: @@ -76143,7 +76390,7 @@ paths: payload: verified_at: '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76168,9 +76415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *315 - - *316 - - &493 + - *318 + - *319 + - &496 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. @@ -76187,7 +76434,7 @@ paths: application/json: schema: type: array - items: &494 + items: &497 title: Git Reference description: Git references within a repository type: object @@ -76241,8 +76488,8 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *57 - '409': *50 + Link: *59 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76263,17 +76510,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *315 - - *316 - - *493 + - *318 + - *319 + - *496 responses: '200': description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: &495 + default: &498 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -76283,7 +76530,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76302,8 +76549,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -76332,16 +76579,16 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: *495 + default: *498 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76360,9 +76607,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *315 - - *316 - - *493 + - *318 + - *319 + - *496 requestBody: required: true content: @@ -76391,11 +76638,11 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: *495 + default: *498 '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76411,16 +76658,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *315 - - *316 - - *493 + - *318 + - *319 + - *496 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76468,8 +76715,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -76536,7 +76783,7 @@ paths: description: Response content: application/json: - schema: &497 + schema: &500 title: Git Tag description: Metadata for a Git tag type: object @@ -76592,7 +76839,7 @@ paths: - sha - type - url - verification: *496 + verification: *499 required: - sha - url @@ -76602,7 +76849,7 @@ paths: - tag - message examples: - default: &498 + default: &501 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -76629,7 +76876,7 @@ paths: schema: type: string '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76675,8 +76922,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *315 - - *316 + - *318 + - *319 - name: tag_sha in: path required: true @@ -76687,11 +76934,11 @@ paths: description: Response content: application/json: - schema: *497 + schema: *500 examples: - default: *498 + default: *501 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76713,8 +76960,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -76788,7 +77035,7 @@ paths: description: Response content: application/json: - schema: &499 + schema: &502 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -76867,7 +77114,7 @@ paths: '422': *15 '404': *6 '403': *27 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76890,8 +77137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *315 - - *316 + - *318 + - *319 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -76914,7 +77161,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: default-response: summary: Default response @@ -76955,7 +77202,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76973,8 +77220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -76984,7 +77231,7 @@ paths: application/json: schema: type: array - items: &500 + items: &503 title: Webhook description: Webhooks for repositories. type: object @@ -77047,7 +77294,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &733 + last_response: &736 title: Hook Response type: object properties: @@ -77105,7 +77352,7 @@ paths: status: unused message: headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -77124,8 +77371,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -77178,9 +77425,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *503 examples: - default: &501 + default: &504 value: type: Repository id: 12345678 @@ -77228,17 +77475,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '200': description: Response content: application/json: - schema: *500 + schema: *503 examples: - default: *501 + default: *504 '404': *6 x-github: githubCloudOnly: false @@ -77258,9 +77505,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 requestBody: required: true content: @@ -77305,9 +77552,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *503 examples: - default: *501 + default: *504 '422': *15 '404': *6 x-github: @@ -77328,9 +77575,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '204': description: Response @@ -77354,9 +77601,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '200': description: Response @@ -77383,9 +77630,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 requestBody: required: false content: @@ -77429,11 +77676,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 - *17 - - *195 + - *198 responses: '200': description: Response @@ -77441,9 +77688,9 @@ paths: application/json: schema: type: array - items: *196 + items: *199 examples: - default: *197 + default: *200 '400': *14 '422': *15 x-github: @@ -77462,18 +77709,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 - *16 responses: '200': description: Response content: application/json: - schema: *198 + schema: *201 examples: - default: *199 + default: *202 '400': *14 '422': *15 x-github: @@ -77492,9 +77739,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 - *16 responses: '202': *37 @@ -77517,9 +77764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '204': description: Response @@ -77544,9 +77791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '204': description: Response @@ -77569,8 +77816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response if immutable releases are enabled @@ -77618,11 +77865,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 - '409': *50 + '204': *179 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77639,11 +77886,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 - '409': *50 + '204': *179 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77697,14 +77944,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &502 + schema: &505 title: Import description: A repository import from an external source. type: object @@ -77811,7 +78058,7 @@ paths: - html_url - authors_url examples: - default: &505 + default: &508 value: vcs: subversion use_lfs: true @@ -77827,7 +78074,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': &503 + '503': &506 description: Unavailable due to service under maintenance. content: application/json: @@ -77856,8 +78103,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -77905,7 +78152,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *505 examples: default: value: @@ -77930,7 +78177,7 @@ paths: type: string '422': *15 '404': *6 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77958,8 +78205,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -78011,7 +78258,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *505 examples: example-1: summary: Example 1 @@ -78059,7 +78306,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': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78082,12 +78329,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78113,9 +78360,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *315 - - *316 - - &667 + - *318 + - *319 + - &670 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -78129,7 +78376,7 @@ paths: application/json: schema: type: array - items: &504 + items: &507 title: Porter Author description: Porter Author type: object @@ -78183,7 +78430,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': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78208,8 +78455,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *315 - - *316 + - *318 + - *319 - name: author_id in: path required: true @@ -78239,7 +78486,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: default: value: @@ -78252,7 +78499,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78276,8 +78523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -78318,7 +78565,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78346,8 +78593,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -78374,11 +78621,11 @@ paths: description: Response content: application/json: - schema: *502 + schema: *505 examples: - default: *505 + default: *508 '422': *15 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78401,8 +78648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -78410,8 +78657,8 @@ paths: application/json: schema: *20 examples: - default: *506 - '301': *319 + default: *509 + '301': *322 '404': *6 x-github: githubCloudOnly: false @@ -78431,8 +78678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -78440,12 +78687,12 @@ paths: application/json: schema: anyOf: - - *212 + - *215 - type: object properties: {} additionalProperties: false examples: - default: &508 + default: &511 value: limit: collaborators_only origin: repository @@ -78470,13 +78717,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *507 + schema: *510 examples: default: summary: Example request body @@ -78488,9 +78735,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *215 examples: - default: *508 + default: *511 '409': description: Response x-github: @@ -78512,8 +78759,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -78536,8 +78783,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -78547,9 +78794,9 @@ paths: application/json: schema: type: array - items: *509 + items: *512 examples: - default: &659 + default: &662 value: - id: 1 repository: @@ -78663,7 +78910,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78680,9 +78927,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *315 - - *316 - - *216 + - *318 + - *319 + - *219 requestBody: required: false content: @@ -78711,7 +78958,7 @@ paths: description: Response content: application/json: - schema: *509 + schema: *512 examples: default: value: @@ -78842,9 +79089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *315 - - *316 - - *216 + - *318 + - *319 + - *219 responses: '204': description: Response @@ -78875,8 +79122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *315 - - *316 + - *318 + - *319 - 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 @@ -78924,7 +79171,7 @@ paths: required: false schema: type: string - - *223 + - *226 - name: sort description: What to sort results by. in: query @@ -78936,8 +79183,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - *17 - *19 responses: @@ -78947,9 +79194,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: &518 + default: &521 value: - id: 1 node_id: MDU6SXNzdWUx @@ -79097,8 +79344,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '422': *15 '404': *6 x-github: @@ -79127,8 +79374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -79210,9 +79457,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: &515 + default: &518 value: id: 1 node_id: MDU6SXNzdWUx @@ -79367,9 +79614,9 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *106 + '503': *108 '404': *6 - '410': *510 + '410': *513 x-github: triggersNotification: true githubCloudOnly: false @@ -79397,9 +79644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *315 - - *316 - - *95 + - *318 + - *319 + - *97 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -79409,7 +79656,7 @@ paths: enum: - asc - desc - - *78 + - *80 - *17 - *19 responses: @@ -79419,9 +79666,9 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: &517 + default: &520 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -79452,7 +79699,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *57 + Link: *59 '422': *15 '404': *6 x-github: @@ -79479,17 +79726,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: &511 + default: &514 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -79544,9 +79791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -79568,9 +79815,9 @@ paths: description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: *511 + default: *514 '422': *15 x-github: githubCloudOnly: false @@ -79588,9 +79835,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response @@ -79618,15 +79865,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: default: value: @@ -79682,7 +79929,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *510 + '410': *513 '422': *15 x-github: githubCloudOnly: false @@ -79699,17 +79946,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response '401': *23 '403': *27 '404': *6 - '410': *510 - '503': *106 + '410': *513 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79726,9 +79973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 - 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. @@ -79754,11 +80001,11 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -79777,9 +80024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -79811,16 +80058,16 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -79842,10 +80089,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *315 - - *316 - - *87 - - *513 + - *318 + - *319 + - *89 + - *516 responses: '204': description: Response @@ -79865,8 +80112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -79876,7 +80123,7 @@ paths: application/json: schema: type: array - items: &514 + items: &517 title: Issue Event description: Issue Event type: object @@ -79923,7 +80170,7 @@ paths: issue: anyOf: - type: 'null' - - *73 + - *75 label: title: Issue Event Label description: Issue Event Label @@ -79956,7 +80203,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *180 + requested_team: *183 dismissed_review: title: Issue Event Dismissed Review type: object @@ -80023,7 +80270,7 @@ paths: required: - from - to - author_association: *70 + author_association: *72 lock_reason: type: - string @@ -80198,7 +80445,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -80216,8 +80463,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *315 - - *316 + - *318 + - *319 - name: event_id in: path required: true @@ -80228,7 +80475,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -80421,7 +80668,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *510 + '410': *513 '403': *27 x-github: githubCloudOnly: false @@ -80455,9 +80702,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *315 - - *316 - - &516 + - *318 + - *319 + - &519 name: issue_number description: The number that identifies the issue. in: path @@ -80469,11 +80716,11 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: default: summary: Issue - value: *515 + value: *518 pinned_comment: summary: Issue with pinned comment value: @@ -80672,9 +80919,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 '304': *35 x-github: githubCloudOnly: false @@ -80699,9 +80946,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -80834,15 +81081,15 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 '422': *15 - '503': *106 + '503': *108 '403': *27 - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80860,9 +81107,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -80888,9 +81135,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80906,9 +81153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: content: application/json: @@ -80933,9 +81180,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80957,9 +81204,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: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - name: assignee in: path required: true @@ -80999,10 +81246,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *315 - - *316 - - *516 - - *78 + - *318 + - *319 + - *519 + - *80 - *17 - *19 responses: @@ -81012,13 +81259,13 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *517 + default: *520 headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81047,9 +81294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -81071,16 +81318,16 @@ paths: description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: *511 + default: *514 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *510 + '410': *513 '422': *15 '404': *6 x-github: @@ -81108,9 +81355,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -81120,14 +81367,14 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *518 + default: *521 headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81155,9 +81402,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -81179,17 +81426,17 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *319 + '301': *322 '403': *27 - '410': *510 + '410': *513 '422': *15 '404': *6 x-github: @@ -81220,9 +81467,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -81234,15 +81481,15 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 - '301': *319 + default: *518 + '301': *322 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *510 + '410': *513 x-github: triggersNotification: true githubCloudOnly: false @@ -81268,9 +81515,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -81280,14 +81527,14 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *518 + default: *521 headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81304,9 +81551,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -81320,7 +81567,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &521 + - &524 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -81369,7 +81616,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &522 + - &525 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -81497,7 +81744,7 @@ paths: - performed_via_github_app - assignee - assigner - - &523 + - &526 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -81543,7 +81790,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &524 + - &527 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -81589,7 +81836,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &525 + - &528 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -81638,7 +81885,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &526 + - &529 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -81667,7 +81914,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *180 + requested_team: *183 requested_reviewer: *4 required: - review_requester @@ -81680,7 +81927,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &527 + - &530 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -81709,7 +81956,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *180 + requested_team: *183 requested_reviewer: *4 required: - review_requester @@ -81722,7 +81969,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &528 + - &531 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -81778,7 +82025,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &529 + - &532 title: Locked Issue Event description: Locked Issue Event type: object @@ -81823,7 +82070,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &530 + - &533 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -81884,7 +82131,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &531 + - &534 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -81945,7 +82192,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &532 + - &535 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -82006,7 +82253,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &533 + - &536 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -82098,8 +82345,8 @@ paths: name: label color: red headers: - Link: *57 - '410': *510 + Link: *59 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82116,9 +82363,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -82128,9 +82375,9 @@ paths: application/json: schema: type: array - items: *519 + items: *522 examples: - default: &630 + default: &633 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -82153,10 +82400,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82173,9 +82420,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -82185,9 +82432,9 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: &520 + default: &523 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82204,10 +82451,10 @@ paths: color: a2eeef default: false headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82223,9 +82470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -82268,12 +82515,12 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 - '301': *319 + default: *523 + '301': *322 '404': *6 - '410': *510 + '410': *513 '422': *15 x-github: githubCloudOnly: false @@ -82290,9 +82537,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -82352,12 +82599,12 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 - '301': *319 + default: *523 + '301': *322 '404': *6 - '410': *510 + '410': *513 '422': *15 x-github: githubCloudOnly: false @@ -82374,15 +82621,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 responses: '204': description: Response - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82401,9 +82648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - name: name in: path required: true @@ -82416,7 +82663,7 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: default: value: @@ -82427,9 +82674,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82449,9 +82696,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -82480,7 +82727,7 @@ paths: '204': description: Response '403': *27 - '410': *510 + '410': *513 '404': *6 '422': *15 x-github: @@ -82498,9 +82745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 responses: '204': description: Response @@ -82530,20 +82777,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 responses: '200': description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 - '301': *319 + default: *518 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82560,9 +82807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - 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. @@ -82588,13 +82835,13 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82612,9 +82859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -82646,16 +82893,16 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Response content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -82677,10 +82924,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *315 - - *316 + - *318 + - *319 + - *519 - *516 - - *513 responses: '204': description: Response @@ -82709,9 +82956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -82733,9 +82980,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -82768,9 +83015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -82780,13 +83027,13 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *518 + default: *521 headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82814,9 +83061,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -82843,16 +83090,16 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *510 + '410': *513 '422': *15 '404': *6 x-github: @@ -82872,9 +83119,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -82905,13 +83152,13 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 '403': *27 '404': *6 '422': *7 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -82929,9 +83176,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -82946,9 +83193,6 @@ paths: description: Timeline Event type: object anyOf: - - *521 - - *522 - - *523 - *524 - *525 - *526 @@ -82959,6 +83203,9 @@ paths: - *531 - *532 - *533 + - *534 + - *535 + - *536 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -83006,16 +83253,16 @@ paths: issue_url: type: string format: uri - author_association: *70 + author_association: *72 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *71 + reactions: *73 pin: anyOf: - type: 'null' - - *534 + - *537 required: - event - actor @@ -83046,7 +83293,7 @@ paths: properties: type: type: string - issue: *73 + issue: *75 required: - event - created_at @@ -83268,7 +83515,7 @@ paths: type: string body_text: type: string - author_association: *70 + author_association: *72 required: - event - id @@ -83291,7 +83538,7 @@ paths: type: string comments: type: array - items: &553 + items: &556 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83399,7 +83646,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *70 + author_association: *72 _links: type: object properties: @@ -83494,7 +83741,7 @@ paths: enum: - line - file - reactions: *71 + reactions: *73 body_html: type: string examples: @@ -83532,7 +83779,7 @@ paths: type: string comments: type: array - items: *443 + items: *446 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -83805,9 +84052,9 @@ paths: type: User site_admin: true headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83824,8 +84071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -83835,7 +84082,7 @@ paths: application/json: schema: type: array - items: &535 + items: &538 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -83887,7 +84134,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83903,8 +84150,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -83940,9 +84187,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *538 examples: - default: &536 + default: &539 value: id: 1 key: ssh-rsa AAA... @@ -83976,9 +84223,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *315 - - *316 - - &537 + - *318 + - *319 + - &540 name: key_id description: The unique identifier of the key. in: path @@ -83990,9 +84237,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *538 examples: - default: *536 + default: *539 '404': *6 x-github: githubCloudOnly: false @@ -84010,9 +84257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *315 - - *316 - - *537 + - *318 + - *319 + - *540 responses: '204': description: Response @@ -84032,8 +84279,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -84043,11 +84290,11 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 + default: *523 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -84066,8 +84313,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -84103,9 +84350,9 @@ paths: description: Response content: application/json: - schema: *72 + schema: *74 examples: - default: &538 + default: &541 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84137,8 +84384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *315 - - *316 + - *318 + - *319 - name: name in: path required: true @@ -84149,9 +84396,9 @@ paths: description: Response content: application/json: - schema: *72 + schema: *74 examples: - default: *538 + default: *541 '404': *6 x-github: githubCloudOnly: false @@ -84168,8 +84415,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *315 - - *316 + - *318 + - *319 - name: name in: path required: true @@ -84208,7 +84455,7 @@ paths: description: Response content: application/json: - schema: *72 + schema: *74 examples: default: value: @@ -84234,8 +84481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *315 - - *316 + - *318 + - *319 - name: name in: path required: true @@ -84261,8 +84508,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -84301,9 +84548,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *315 - - *316 - - *418 + - *318 + - *319 + - *421 responses: '200': description: Response @@ -84369,7 +84616,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 required: - _links - git_url @@ -84450,8 +84697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -84516,8 +84763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -84551,9 +84798,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *446 + schema: *449 examples: - default: *539 + default: *542 '204': description: Response when already merged '404': @@ -84578,8 +84825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *315 - - *316 + - *318 + - *319 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -84620,7 +84867,7 @@ paths: application/json: schema: type: array - items: *256 + items: *259 examples: default: value: @@ -84659,7 +84906,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -84676,8 +84923,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -84717,9 +84964,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *259 examples: - default: &540 + default: &543 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -84778,9 +85025,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *315 - - *316 - - &541 + - *318 + - *319 + - &544 name: milestone_number description: The number that identifies the milestone. in: path @@ -84792,9 +85039,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *259 examples: - default: *540 + default: *543 '404': *6 x-github: githubCloudOnly: false @@ -84811,9 +85058,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *315 - - *316 - - *541 + - *318 + - *319 + - *544 requestBody: required: false content: @@ -84851,9 +85098,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *259 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84869,9 +85116,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *315 - - *316 - - *541 + - *318 + - *319 + - *544 responses: '204': description: Response @@ -84892,9 +85139,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *315 - - *316 - - *541 + - *318 + - *319 + - *544 - *17 - *19 responses: @@ -84904,11 +85151,11 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 + default: *523 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84925,12 +85172,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *315 - - *316 - - *542 - - *543 - - *78 - - *544 + - *318 + - *319 + - *545 + - *546 + - *80 + - *547 - *17 - *19 responses: @@ -84940,11 +85187,11 @@ paths: application/json: schema: type: array - items: *98 + items: *100 examples: - default: *545 + default: *548 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -84966,8 +85213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -85025,14 +85272,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &546 + schema: &549 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -85176,7 +85423,7 @@ paths: - custom_404 - public examples: - default: &547 + default: &550 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -85217,8 +85464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85273,11 +85520,11 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: - default: *547 + default: *550 '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85298,8 +85545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85378,7 +85625,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85399,14 +85646,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response '422': *15 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85426,8 +85673,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -85437,7 +85684,7 @@ paths: application/json: schema: type: array - items: &548 + items: &551 title: Page Build description: Page Build type: object @@ -85510,7 +85757,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85529,8 +85776,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *315 - - *316 + - *318 + - *319 responses: '201': description: Response @@ -85577,16 +85824,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *548 + schema: *551 examples: - default: &549 + default: &552 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -85634,8 +85881,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *315 - - *316 + - *318 + - *319 - name: build_id in: path required: true @@ -85646,9 +85893,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *551 examples: - default: *549 + default: *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85668,8 +85915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85777,9 +86024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *315 - - *316 - - &550 + - *318 + - *319 + - &553 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -85837,11 +86084,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *315 - - *316 - - *550 + - *318 + - *319 + - *553 responses: - '204': *176 + '204': *179 '404': *6 x-github: githubCloudOnly: false @@ -85866,8 +86113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -86135,7 +86382,7 @@ paths: description: Empty response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -86162,8 +86409,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Private vulnerability reporting status @@ -86200,10 +86447,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 + '204': *179 '422': *14 x-github: githubCloudOnly: false @@ -86222,10 +86469,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 + '204': *179 '422': *14 x-github: githubCloudOnly: false @@ -86245,8 +86492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -86254,7 +86501,7 @@ paths: application/json: schema: type: array - items: *270 + items: *273 examples: default: value: @@ -86285,8 +86532,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -86298,7 +86545,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *270 + items: *273 required: - properties examples: @@ -86348,8 +86595,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *315 - - *316 + - *318 + - *319 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -86409,11 +86656,11 @@ paths: application/json: schema: type: array - items: *450 + items: *453 examples: - default: *551 + default: *554 headers: - Link: *57 + Link: *59 '304': *35 '422': *15 x-github: @@ -86443,8 +86690,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -86511,7 +86758,7 @@ paths: description: Response content: application/json: - schema: &555 + schema: &558 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -86640,7 +86887,7 @@ paths: milestone: anyOf: - type: 'null' - - *256 + - *259 active_lock_reason: type: - string @@ -86679,7 +86926,7 @@ paths: items: *4 requested_teams: type: array - items: *235 + items: *238 head: type: object properties: @@ -86687,7 +86934,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: *4 @@ -86704,7 +86951,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: *4 @@ -86717,14 +86964,14 @@ paths: _links: type: object properties: - comments: *257 - commits: *257 - statuses: *257 - html: *257 - issue: *257 - review_comments: *257 - review_comment: *257 - self: *257 + comments: *260 + commits: *260 + statuses: *260 + html: *260 + issue: *260 + review_comments: *260 + review_comment: *260 + self: *260 required: - comments - commits @@ -86734,8 +86981,8 @@ paths: - review_comments - review_comment - self - author_association: *70 - auto_merge: *552 + author_association: *72 + auto_merge: *555 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -86835,7 +87082,7 @@ paths: - merged_by - review_comments examples: - default: &556 + default: &559 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -87362,8 +87609,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - name: sort in: query required: false @@ -87382,7 +87629,7 @@ paths: enum: - asc - desc - - *78 + - *80 - *17 - *19 responses: @@ -87392,9 +87639,9 @@ paths: application/json: schema: type: array - items: *553 + items: *556 examples: - default: &558 + default: &561 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87446,7 +87693,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87471,17 +87718,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *553 + schema: *556 examples: - default: &554 + default: &557 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87556,9 +87803,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -87580,9 +87827,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: - default: *554 + default: *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87598,9 +87845,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response @@ -87621,9 +87868,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 - 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. @@ -87649,11 +87896,11 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -87672,9 +87919,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -87706,16 +87953,16 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -87737,10 +87984,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *315 - - *316 - - *87 - - *513 + - *318 + - *319 + - *89 + - *516 responses: '204': description: Response @@ -87783,9 +88030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *315 - - *316 - - &557 + - *318 + - *319 + - &560 name: pull_number description: The number that identifies the pull request. in: path @@ -87798,9 +88045,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *555 + schema: *558 examples: - default: *556 + default: *559 '304': *35 '404': *6 '406': @@ -87808,8 +88055,8 @@ paths: content: application/json: schema: *3 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87835,9 +88082,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -87879,9 +88126,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *558 examples: - default: *556 + default: *559 '422': *15 '403': *27 x-github: @@ -87903,9 +88150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: true content: @@ -87966,21 +88213,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -88006,10 +88253,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *315 - - *316 - - *557 - - *95 + - *318 + - *319 + - *560 + - *97 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -88019,7 +88266,7 @@ paths: enum: - asc - desc - - *78 + - *80 - *17 - *19 responses: @@ -88029,11 +88276,11 @@ paths: application/json: schema: type: array - items: *553 + items: *556 examples: - default: *558 + default: *561 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88064,9 +88311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: true content: @@ -88172,7 +88419,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: example-for-a-multi-line-comment: value: @@ -88260,10 +88507,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *315 - - *316 - - *557 - - *87 + - *318 + - *319 + - *560 + - *89 requestBody: required: true content: @@ -88285,7 +88532,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: default: value: @@ -88371,9 +88618,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 - *17 - *19 responses: @@ -88383,11 +88630,11 @@ paths: application/json: schema: type: array - items: *446 + items: *449 examples: - default: *559 + default: *562 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88415,9 +88662,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 - *17 - *19 responses: @@ -88427,7 +88674,7 @@ paths: application/json: schema: type: array - items: *457 + items: *460 examples: default: value: @@ -88443,10 +88690,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *57 + Link: *59 '422': *15 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88465,9 +88712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 responses: '204': description: Response if pull request has been merged @@ -88490,9 +88737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -88604,9 +88851,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 responses: '200': description: Response @@ -88622,7 +88869,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *183 required: - users - teams @@ -88663,7 +88910,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88681,9 +88928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -88720,7 +88967,7 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: default: value: @@ -89256,9 +89503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: true content: @@ -89292,7 +89539,7 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: default: value: @@ -89797,9 +90044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 - *17 - *19 responses: @@ -89809,7 +90056,7 @@ paths: application/json: schema: type: array - items: &560 + items: &563 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -89883,7 +90130,7 @@ paths: type: string body_text: type: string - author_association: *70 + author_association: *72 required: - id - node_id @@ -89932,7 +90179,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89965,9 +90212,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -90057,9 +90304,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: &562 + default: &565 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90122,10 +90369,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - &561 + - *318 + - *319 + - *560 + - &564 name: review_id description: The unique identifier of the review. in: path @@ -90137,9 +90384,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: &563 + default: &566 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90198,10 +90445,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 requestBody: required: true content: @@ -90224,7 +90471,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: default: value: @@ -90286,18 +90533,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 responses: '200': description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: *562 + default: *565 '422': *7 '404': *6 x-github: @@ -90324,10 +90571,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 - *17 - *19 responses: @@ -90421,13 +90668,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *70 + author_association: *72 _links: type: object properties: - self: *257 - html: *257 - pull_request: *257 + self: *260 + html: *260 + pull_request: *260 required: - self - html @@ -90436,7 +90683,7 @@ paths: type: string body_html: type: string - reactions: *71 + reactions: *73 side: description: The side of the first line of the range for a multi-line comment. @@ -90556,7 +90803,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -90585,10 +90832,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 requestBody: required: true content: @@ -90617,7 +90864,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: default: value: @@ -90680,10 +90927,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 requestBody: required: true content: @@ -90718,9 +90965,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: *563 + default: *566 '404': *6 '422': *7 '403': *27 @@ -90742,9 +90989,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -90808,8 +91055,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *315 - - *316 + - *318 + - *319 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -90822,9 +91069,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *567 examples: - default: &565 + default: &568 value: type: file encoding: base64 @@ -90866,8 +91113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *315 - - *316 + - *318 + - *319 - name: dir description: The alternate path to look for a README file in: path @@ -90887,9 +91134,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *567 examples: - default: *565 + default: *568 '404': *6 '422': *15 x-github: @@ -90911,8 +91158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -90922,7 +91169,7 @@ paths: application/json: schema: type: array - items: *566 + items: *569 examples: default: value: @@ -90996,7 +91243,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -91016,8 +91263,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -91093,9 +91340,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: &570 + default: &573 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -91200,9 +91447,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *315 - - *316 - - &568 + - *318 + - *319 + - &571 name: asset_id description: The unique identifier of the asset. in: path @@ -91214,9 +91461,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: - default: &569 + default: &572 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 @@ -91251,7 +91498,7 @@ paths: type: User site_admin: false '404': *6 - '302': *459 + '302': *462 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91267,9 +91514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *315 - - *316 - - *568 + - *318 + - *319 + - *571 requestBody: required: false content: @@ -91298,9 +91545,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: - default: *569 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91316,9 +91563,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *315 - - *316 - - *568 + - *318 + - *319 + - *571 responses: '204': description: Response @@ -91342,8 +91589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -91429,16 +91676,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *570 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91455,8 +91702,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *315 - - *316 + - *318 + - *319 - name: tag description: tag parameter in: path @@ -91469,9 +91716,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *570 + default: *573 '404': *6 x-github: githubCloudOnly: false @@ -91493,9 +91740,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *315 - - *316 - - &571 + - *318 + - *319 + - &574 name: release_id description: The unique identifier of the release. in: path @@ -91509,9 +91756,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: *566 + schema: *569 examples: - default: *570 + default: *573 '401': description: Unauthorized x-github: @@ -91529,9 +91776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 requestBody: required: false content: @@ -91595,9 +91842,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *570 + default: *573 '404': description: Not Found if the discussion category name is invalid content: @@ -91618,9 +91865,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 responses: '204': description: Response @@ -91640,9 +91887,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 - *17 - *19 responses: @@ -91652,7 +91899,7 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: default: value: @@ -91689,7 +91936,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91733,9 +91980,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: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 - name: name in: query required: true @@ -91761,7 +92008,7 @@ paths: description: Response for successful upload content: application/json: - schema: *567 + schema: *570 examples: response-for-successful-upload: value: @@ -91816,9 +92063,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 - 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. @@ -91842,11 +92089,11 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -91865,9 +92112,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 requestBody: required: true content: @@ -91897,16 +92144,16 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -91928,10 +92175,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *315 - - *316 - - *571 - - *513 + - *318 + - *319 + - *574 + - *516 responses: '204': description: Response @@ -91955,9 +92202,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 - *17 - *19 responses: @@ -91973,8 +92220,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *277 - - &572 + - *280 + - &575 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -91993,69 +92240,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *278 - - *572 - - allOf: - - *279 - - *572 - - allOf: - - *280 - - *572 - - allOf: - - *573 - - *572 - allOf: - *281 - - *572 + - *575 - allOf: - *282 - - *572 + - *575 - allOf: - *283 - - *572 + - *575 + - allOf: + - *576 + - *575 - allOf: - *284 - - *572 + - *575 - allOf: - *285 - - *572 + - *575 - allOf: - *286 - - *572 + - *575 - allOf: - *287 - - *572 + - *575 - allOf: - *288 - - *572 + - *575 - allOf: - *289 - - *572 + - *575 - allOf: - *290 - - *572 + - *575 - allOf: - *291 - - *572 + - *575 - allOf: - *292 - - *572 + - *575 - allOf: - *293 - - *572 + - *575 - allOf: - *294 - - *572 + - *575 - allOf: - *295 - - *572 + - *575 - allOf: - *296 - - *572 + - *575 - allOf: - *297 - - *572 + - *575 + - allOf: + - *298 + - *575 + - allOf: + - *299 + - *575 + - allOf: + - *300 + - *575 examples: default: value: @@ -92094,8 +92341,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - name: includes_parents @@ -92106,7 +92353,7 @@ paths: schema: type: boolean default: true - - *574 + - *577 responses: '200': description: Response @@ -92114,7 +92361,7 @@ paths: application/json: schema: type: array - items: *298 + items: *301 examples: default: value: @@ -92145,7 +92392,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *107 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -92161,8 +92408,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 requestBody: description: Request body required: true @@ -92182,16 +92429,16 @@ paths: - tag - push default: branch - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *272 + items: *278 + conditions: *275 rules: type: array description: An array of rules within the ruleset. - items: *575 + items: *578 required: - name - enforcement @@ -92222,9 +92469,9 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: &585 + default: &588 value: id: 42 name: super cool ruleset @@ -92258,7 +92505,7 @@ paths: updated_at: '2023-08-23T16:29:47Z' '404': *6 '422': *15 - '500': *105 + '500': *107 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -92272,12 +92519,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *315 - - *316 - - *576 - - *577 - - *578 + - *318 + - *319 - *579 + - *580 + - *581 + - *582 - *17 - *19 responses: @@ -92285,11 +92532,11 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: *581 + default: *584 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92308,19 +92555,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *315 - - *316 - - *582 + - *318 + - *319 + - *585 responses: '200': description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92346,8 +92593,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92367,11 +92614,11 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *585 + default: *588 '404': *6 - '500': *105 + '500': *107 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -92387,8 +92634,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92413,16 +92660,16 @@ paths: - branch - tag - push - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *272 + items: *278 + conditions: *275 rules: description: An array of rules within the ruleset. type: array - items: *575 + items: *578 examples: default: value: @@ -92450,12 +92697,12 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *585 + default: *588 '404': *6 '422': *15 - '500': *105 + '500': *107 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -92471,8 +92718,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92483,7 +92730,7 @@ paths: '204': description: Response '404': *6 - '500': *105 + '500': *107 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -92495,8 +92742,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - name: ruleset_id @@ -92512,11 +92759,11 @@ paths: application/json: schema: type: array - items: *301 + items: *304 examples: - default: *586 + default: *589 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92533,8 +92780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92552,7 +92799,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -92585,7 +92832,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92607,22 +92854,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *315 - - *316 - - *588 - - *589 - - *590 + - *318 + - *319 - *591 - *592 - - *51 - - *19 - - *17 - *593 - *594 - *595 + - *53 + - *19 + - *17 - *596 - *597 - *598 + - *599 + - *600 + - *601 responses: '200': description: Response @@ -92630,24 +92877,24 @@ paths: application/json: schema: type: array - items: &602 + items: &605 type: object properties: - number: *163 - created_at: *164 + number: *166 + created_at: *167 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *168 + url: *169 + html_url: *170 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *599 - resolution: *600 + state: *602 + resolution: *603 resolved_at: type: - string @@ -92741,7 +92988,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *601 + - *604 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -92864,7 +93111,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92886,16 +93133,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *315 - - *316 - - *412 - - *598 + - *318 + - *319 + - *415 + - *601 responses: '200': description: Response content: application/json: - schema: *602 + schema: *605 examples: default: value: @@ -92926,7 +93173,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92949,9 +93196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 requestBody: required: true content: @@ -92959,8 +93206,8 @@ paths: schema: type: object properties: - state: *599 - resolution: *600 + state: *602 + resolution: *603 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -92996,7 +93243,7 @@ paths: description: Response content: application/json: - schema: *602 + schema: *605 examples: default: value: @@ -93069,7 +93316,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -93091,9 +93338,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 - *19 - *17 responses: @@ -93104,7 +93351,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &753 + items: &756 type: object properties: type: @@ -93131,9 +93378,6 @@ paths: - commit details: oneOf: - - *603 - - *604 - - *605 - *606 - *607 - *608 @@ -93144,6 +93388,9 @@ paths: - *613 - *614 - *615 + - *616 + - *617 + - *618 examples: default: value: @@ -93203,11 +93450,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *57 + Link: *59 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93229,8 +93476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -93238,14 +93485,14 @@ paths: schema: type: object properties: - reason: &617 + reason: &620 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *616 + placeholder_id: *619 required: - reason - placeholder_id @@ -93262,7 +93509,7 @@ paths: schema: type: object properties: - reason: *617 + reason: *620 expire_at: type: - string @@ -93286,7 +93533,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -93309,13 +93556,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: - - *315 - - *316 + - *318 + - *319 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *106 + '503': *108 '200': description: Response content: @@ -93325,7 +93572,7 @@ paths: properties: incremental_scans: type: array - items: &618 + items: &621 description: Information on a single scan performed by secret scanning on the repository type: object @@ -93353,15 +93600,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *618 + items: *621 backfill_scans: type: array - items: *618 + items: *621 custom_pattern_backfill_scans: type: array items: allOf: - - *618 + - *621 - type: object properties: pattern_name: @@ -93431,9 +93678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *315 - - *316 - - *51 + - *318 + - *319 + - *53 - name: sort description: The property to sort the results by. in: query @@ -93445,8 +93692,8 @@ paths: - updated - published default: created - - *43 - - *44 + - *45 + - *46 - 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)." @@ -93476,9 +93723,9 @@ paths: application/json: schema: type: array - items: *619 + items: *622 examples: - default: *620 + default: *623 '400': *14 '404': *6 x-github: @@ -93501,8 +93748,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -93582,7 +93829,7 @@ paths: login: type: string description: The username of the user credited. - type: *304 + type: *307 required: - login - type @@ -93672,9 +93919,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *622 examples: - default: &622 + default: &625 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -93907,8 +94154,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -94021,7 +94268,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *622 examples: default: value: @@ -94168,17 +94415,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 responses: '200': description: Response content: application/json: - schema: *619 + schema: *622 examples: - default: *622 + default: *625 '403': *27 '404': *6 x-github: @@ -94202,9 +94449,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 requestBody: required: true content: @@ -94284,7 +94531,7 @@ paths: login: type: string description: The username of the user credited. - type: *304 + type: *307 required: - login - type @@ -94375,17 +94622,17 @@ paths: description: Response content: application/json: - schema: *619 + schema: *622 examples: - default: *622 - add_credit: *622 + default: *625 + add_credit: *625 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *114 + schema: *116 examples: invalid_state_transition: value: @@ -94416,9 +94663,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: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 responses: '202': *37 '400': *14 @@ -94445,17 +94692,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 responses: '202': description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 '400': *14 '422': *15 '403': *27 @@ -94481,8 +94728,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -94556,7 +94803,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -94578,8 +94825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -94588,7 +94835,7 @@ paths: application/json: schema: type: array - items: &623 + items: &626 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -94601,7 +94848,7 @@ paths: - 1124 - -435 '202': *37 - '204': *176 + '204': *179 '422': description: Repository contains more than 10,000 commits x-github: @@ -94621,8 +94868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -94673,7 +94920,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94700,8 +94947,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -94773,7 +95020,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94795,8 +95042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -94950,8 +95197,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -94961,7 +95208,7 @@ paths: application/json: schema: type: array - items: *623 + items: *626 examples: default: value: @@ -94974,7 +95221,7 @@ paths: - - 0 - 2 - 21 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94994,8 +95241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *315 - - *316 + - *318 + - *319 - name: sha in: path required: true @@ -95051,7 +95298,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *627 examples: default: value: @@ -95105,8 +95352,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -95118,9 +95365,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95138,14 +95385,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &625 + schema: &628 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -95218,8 +95465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -95245,7 +95492,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *628 examples: default: value: @@ -95272,8 +95519,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -95293,8 +95540,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -95353,7 +95600,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95376,8 +95623,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *315 - - *316 + - *318 + - *319 - name: ref in: path required: true @@ -95413,8 +95660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -95424,11 +95671,11 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -95446,8 +95693,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *315 - - *316 + - *318 + - *319 - *19 - *17 responses: @@ -95455,7 +95702,7 @@ paths: description: Response content: application/json: - schema: &626 + schema: &629 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -95467,7 +95714,7 @@ paths: required: - names examples: - default: &627 + default: &630 value: names: - octocat @@ -95490,8 +95737,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -95522,9 +95769,9 @@ paths: description: Response content: application/json: - schema: *626 + schema: *629 examples: - default: *627 + default: *630 '404': *6 '422': *7 x-github: @@ -95545,9 +95792,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *315 - - *316 - - &628 + - *318 + - *319 + - &631 name: per description: The time frame to display results for. in: query @@ -95578,7 +95825,7 @@ paths: - 128 clones: type: array - items: &629 + items: &632 title: Traffic type: object properties: @@ -95665,8 +95912,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -95760,8 +96007,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -95824,9 +96071,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *315 - - *316 - - *628 + - *318 + - *319 + - *631 responses: '200': description: Response @@ -95847,7 +96094,7 @@ paths: - 3782 views: type: array - items: *629 + items: *632 required: - uniques - count @@ -95924,8 +96171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -95961,7 +96208,7 @@ paths: description: Response content: application/json: - schema: *145 + schema: *148 examples: default: value: @@ -96199,8 +96446,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -96223,8 +96470,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -96246,8 +96493,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -96273,8 +96520,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *315 - - *316 + - *318 + - *319 - name: ref in: path required: true @@ -96366,9 +96613,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -96409,7 +96656,7 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: default: value: @@ -96515,8 +96762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *134 - - *516 + - *137 + - *519 requestBody: required: true content: @@ -96582,14 +96829,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *519 + items: *522 examples: - default: *630 + default: *633 '400': *14 '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -96620,8 +96867,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *134 - - *516 + - *137 + - *519 requestBody: required: true content: @@ -96688,14 +96935,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *519 + items: *522 examples: - default: *630 + default: *633 '400': *14 '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -96721,16 +96968,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: - - *134 - - *516 - - *219 + - *137 + - *519 + - *222 responses: '204': description: Issue field value deleted successfully '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -96844,7 +97091,7 @@ paths: html_url: type: string format: uri - repository: *145 + repository: *148 score: type: number file_size: @@ -96863,7 +97110,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &631 + text_matches: &634 title: Search Result Text Matches type: array items: @@ -96978,7 +97225,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *106 + '503': *108 '422': *15 '403': *27 x-github: @@ -97026,7 +97273,7 @@ paths: enum: - author-date - committer-date - - &632 + - &635 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 @@ -97095,7 +97342,7 @@ paths: committer: anyOf: - type: 'null' - - *380 + - *383 comment_count: type: integer message: @@ -97114,7 +97361,7 @@ paths: url: type: string format: uri - verification: *496 + verification: *499 required: - author - committer @@ -97129,7 +97376,7 @@ paths: committer: anyOf: - type: 'null' - - *380 + - *383 parents: type: array items: @@ -97141,12 +97388,12 @@ paths: type: string sha: type: string - repository: *145 + repository: *148 score: type: number node_id: type: string - text_matches: *631 + text_matches: *634 required: - sha - node_id @@ -97338,7 +97585,7 @@ paths: - interactions - created - updated - - *632 + - *635 - *17 - *19 - name: advanced_search @@ -97435,11 +97682,11 @@ paths: type: - string - 'null' - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: type: string state_reason: @@ -97449,7 +97696,7 @@ paths: milestone: anyOf: - type: 'null' - - *256 + - *259 comments: type: integer created_at: @@ -97463,7 +97710,7 @@ paths: - string - 'null' format: date-time - text_matches: *631 + text_matches: *634 pull_request: type: object properties: @@ -97501,10 +97748,10 @@ paths: type: string score: type: number - author_association: *70 + author_association: *72 draft: type: boolean - repository: *69 + repository: *71 body_html: type: string body_text: @@ -97512,7 +97759,7 @@ paths: timeline_url: type: string format: uri - type: *220 + type: *223 performed_via_github_app: anyOf: - type: 'null' @@ -97520,8 +97767,8 @@ paths: pinned_comment: anyOf: - type: 'null' - - *74 - reactions: *71 + - *76 + reactions: *73 required: - closed_at - comments @@ -97636,7 +97883,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *106 + '503': *108 '422': *15 '304': *35 '403': *27 @@ -97689,7 +97936,7 @@ paths: enum: - created - updated - - *632 + - *635 - *17 - *19 responses: @@ -97734,7 +97981,7 @@ paths: - 'null' score: type: number - text_matches: *631 + text_matches: *634 required: - id - node_id @@ -97819,7 +98066,7 @@ paths: - forks - help-wanted-issues - updated - - *632 + - *635 - *17 - *19 responses: @@ -98049,7 +98296,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 permissions: type: object properties: @@ -98067,7 +98314,7 @@ paths: - admin - pull - push - text_matches: *631 + text_matches: *634 temp_clone_token: type: string allow_merge_commit: @@ -98270,7 +98517,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *106 + '503': *108 '422': *15 '304': *35 x-github: @@ -98375,7 +98622,7 @@ paths: - string - 'null' format: uri - text_matches: *631 + text_matches: *634 related: type: - array @@ -98568,7 +98815,7 @@ paths: - followers - repositories - joined - - *632 + - *635 - *17 - *19 responses: @@ -98678,7 +98925,7 @@ paths: type: - boolean - 'null' - text_matches: *631 + text_matches: *634 blog: type: - string @@ -98740,7 +98987,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *106 + '503': *108 '422': *15 x-github: githubCloudOnly: false @@ -98760,7 +99007,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &635 + - &638 name: team_id description: The unique identifier of the team. in: path @@ -98772,9 +99019,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 x-github: githubCloudOnly: false @@ -98801,7 +99048,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *635 + - *638 requestBody: required: true content: @@ -98865,16 +99112,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '201': description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 '422': *15 '403': *27 @@ -98902,7 +99149,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *635 + - *638 responses: '204': description: Response @@ -98931,7 +99178,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *635 + - *638 - *17 - *19 responses: @@ -98941,11 +99188,11 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98969,7 +99216,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *635 + - *638 - name: role description: Filters members returned by their role in the team. in: query @@ -98992,9 +99239,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -99020,8 +99267,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: if user is a member @@ -99057,8 +99304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: Response @@ -99097,8 +99344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: Response @@ -99134,16 +99381,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '200': description: Response content: application/json: - schema: *314 + schema: *317 examples: - response-if-user-is-a-team-maintainer: *636 + response-if-user-is-a-team-maintainer: *639 '404': *6 x-github: githubCloudOnly: false @@ -99176,8 +99423,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *635 - - *61 + - *638 + - *63 requestBody: required: false content: @@ -99202,9 +99449,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - response-if-users-membership-with-team-is-now-pending: *637 + response-if-users-membership-with-team-is-now-pending: *640 '403': description: Forbidden if team synchronization is set up '422': @@ -99238,8 +99485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: Response @@ -99266,7 +99513,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *635 + - *638 - *17 - *19 responses: @@ -99276,11 +99523,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *250 + default: *253 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -99308,15 +99555,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *635 - - *315 - - *316 + - *638 + - *318 + - *319 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *638 + schema: *641 examples: alternative-response-with-extra-repository-information: value: @@ -99467,9 +99714,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *635 - - *315 - - *316 + - *638 + - *318 + - *319 requestBody: required: false content: @@ -99519,9 +99766,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *635 - - *315 - - *316 + - *638 + - *318 + - *319 responses: '204': description: Response @@ -99546,7 +99793,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *635 + - *638 - *17 - *19 responses: @@ -99556,11 +99803,11 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - response-if-child-teams-exist: *639 + response-if-child-teams-exist: *642 headers: - Link: *57 + Link: *59 '404': *6 '403': *27 '422': *15 @@ -99591,7 +99838,7 @@ paths: application/json: schema: oneOf: - - &640 + - &643 title: Private User description: Private User type: object @@ -99841,7 +100088,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &666 + - &669 title: Public User description: Public User type: object @@ -100175,7 +100422,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *643 examples: default: value: @@ -100254,7 +100501,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '304': *35 '404': *6 '403': *27 @@ -100277,7 +100524,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: - - *61 + - *63 responses: '204': description: If the user is blocked @@ -100305,7 +100552,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -100329,7 +100576,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -100378,11 +100625,11 @@ paths: type: integer codespaces: type: array - items: *225 + items: *228 examples: - default: *226 + default: *229 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -100519,21 +100766,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100573,7 +100820,7 @@ paths: type: integer secrets: type: array - items: &641 + items: &644 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -100615,9 +100862,9 @@ paths: - visibility - selected_repositories_url examples: - default: *437 + default: *440 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100687,13 +100934,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *153 + - *156 responses: '200': description: Response content: application/json: - schema: *641 + schema: *644 examples: default: value: @@ -100723,7 +100970,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *153 + - *156 requestBody: required: true content: @@ -100768,7 +101015,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -100796,7 +101043,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *153 + - *156 responses: '204': description: Response @@ -100821,7 +101068,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *153 + - *156 responses: '200': description: Response @@ -100837,13 +101084,13 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *642 + default: *645 '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100864,7 +101111,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *153 + - *156 requestBody: required: true content: @@ -100896,7 +101143,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100918,7 +101165,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *153 + - *156 - name: repository_id in: path required: true @@ -100930,7 +101177,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100951,7 +101198,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *153 + - *156 - name: repository_id in: path required: true @@ -100963,7 +101210,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100983,17 +101230,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -101017,7 +101264,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 requestBody: required: false content: @@ -101047,9 +101294,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '401': *23 '403': *27 '404': *6 @@ -101071,11 +101318,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '202': *37 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -101100,13 +101347,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '202': description: Response content: application/json: - schema: &643 + schema: &646 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -101159,7 +101406,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &644 + default: &647 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -101167,7 +101414,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -101191,7 +101438,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *227 + - *230 - name: export_id in: path required: true @@ -101204,9 +101451,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *646 examples: - default: *644 + default: *647 '404': *6 x-github: githubCloudOnly: false @@ -101227,7 +101474,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *227 + - *230 responses: '200': description: Response @@ -101243,11 +101490,11 @@ paths: type: integer machines: type: array - items: *436 + items: *439 examples: - default: *645 + default: *648 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -101274,7 +101521,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *227 + - *230 requestBody: required: true content: @@ -101330,11 +101577,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *318 + repository: *321 machine: anyOf: - type: 'null' - - *436 + - *439 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -102131,17 +102378,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '304': *35 - '500': *105 + '500': *107 '400': *14 '401': *23 '402': @@ -102151,7 +102398,7 @@ paths: schema: *3 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102171,16 +102418,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 - '500': *105 + default: *438 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -102209,9 +102456,9 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: &656 + default: &659 value: - id: 197 name: hello_docker @@ -102312,7 +102559,7 @@ paths: application/json: schema: type: array - items: &646 + items: &649 title: Email description: Email type: object @@ -102382,16 +102629,16 @@ paths: application/json: schema: type: array - items: *646 + items: *649 examples: - default: &658 + default: &661 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -102461,7 +102708,7 @@ paths: application/json: schema: type: array - items: *646 + items: *649 examples: default: value: @@ -102573,9 +102820,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -102606,9 +102853,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -102628,7 +102875,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: - - *61 + - *63 responses: '204': description: if the person is followed by the authenticated user @@ -102658,7 +102905,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -102683,7 +102930,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -102719,7 +102966,7 @@ paths: application/json: schema: type: array - items: &647 + items: &650 title: GPG Key description: A unique encryption key type: object @@ -102864,7 +103111,7 @@ paths: - subkeys - revoked examples: - default: &675 + default: &678 value: - id: 3 name: Octocat's GPG Key @@ -102896,7 +103143,7 @@ paths: revoked: false raw_key: string headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -102949,9 +103196,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *650 examples: - default: &648 + default: &651 value: id: 3 name: Octocat's GPG Key @@ -103008,7 +103255,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &649 + - &652 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -103020,9 +103267,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *650 examples: - default: *648 + default: *651 '404': *6 '304': *35 '403': *27 @@ -103045,7 +103292,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *649 + - *652 responses: '204': description: Response @@ -103188,7 +103435,7 @@ paths: suspended_at: suspended_by: headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -103236,11 +103483,11 @@ paths: type: array items: allOf: - - *69 + - *71 examples: - default: *137 + default: *140 headers: - Link: *57 + Link: *59 '404': *6 '403': *27 '304': *35 @@ -103263,7 +103510,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *134 + - *137 responses: '204': description: Response @@ -103289,7 +103536,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *134 + - *137 responses: '204': description: Response @@ -103323,12 +103570,12 @@ paths: application/json: schema: anyOf: - - *212 + - *215 - type: object properties: {} additionalProperties: false examples: - default: *213 + default: *216 '204': description: Response when there are no restrictions x-github: @@ -103352,7 +103599,7 @@ paths: required: true content: application/json: - schema: *507 + schema: *510 examples: default: value: @@ -103363,7 +103610,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *215 examples: default: value: @@ -103444,7 +103691,7 @@ paths: - closed - all default: open - - *223 + - *226 - name: sort description: What to sort results by. in: query @@ -103456,8 +103703,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - *17 - *19 responses: @@ -103467,11 +103714,11 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *224 + default: *227 headers: - Link: *57 + Link: *59 '404': *6 '304': *35 x-github: @@ -103502,7 +103749,7 @@ paths: application/json: schema: type: array - items: &650 + items: &653 title: Key description: Key type: object @@ -103554,7 +103801,7 @@ paths: verified: false read_only: false headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -103605,9 +103852,9 @@ paths: description: Response content: application/json: - schema: *650 + schema: *653 examples: - default: &651 + default: &654 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -103640,15 +103887,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *537 + - *540 responses: '200': description: Response content: application/json: - schema: *650 + schema: *653 examples: - default: *651 + default: *654 '404': *6 '304': *35 '403': *27 @@ -103671,7 +103918,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *537 + - *540 responses: '204': description: Response @@ -103704,7 +103951,7 @@ paths: application/json: schema: type: array - items: &652 + items: &655 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -103772,7 +104019,7 @@ paths: - id - type - login - plan: *89 + plan: *91 required: - billing_cycle - next_billing_date @@ -103783,7 +104030,7 @@ paths: - account - plan examples: - default: &653 + default: &656 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -103816,7 +104063,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *57 + Link: *59 '304': *35 '401': *23 '404': *6 @@ -103845,11 +104092,11 @@ paths: application/json: schema: type: array - items: *652 + items: *655 examples: - default: *653 + default: *656 headers: - Link: *57 + Link: *59 '304': *35 '401': *23 x-github: @@ -103887,7 +104134,7 @@ paths: application/json: schema: type: array - items: *229 + items: *232 examples: default: value: @@ -103970,7 +104217,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -103995,13 +104242,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *229 + schema: *232 examples: default: value: @@ -104063,7 +104310,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *65 + - *67 requestBody: required: true content: @@ -104088,7 +104335,7 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: default: value: @@ -104160,7 +104407,7 @@ paths: application/json: schema: type: array - items: *231 + items: *234 examples: default: value: @@ -104313,7 +104560,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -104422,7 +104669,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -104602,7 +104849,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *232 + - *235 - name: exclude in: query required: false @@ -104615,7 +104862,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -104809,7 +105056,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *232 + - *235 responses: '302': description: Response @@ -104835,7 +105082,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *232 + - *235 responses: '204': description: Response @@ -104864,8 +105111,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *232 - - *654 + - *235 + - *657 responses: '204': description: Response @@ -104889,7 +105136,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *232 + - *235 - *17 - *19 responses: @@ -104899,9 +105146,9 @@ paths: application/json: schema: type: array - items: *56 + items: *58 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -104934,11 +105181,11 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: *102 + default: *104 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -104978,7 +105225,7 @@ paths: - docker - nuget - container - - *655 + - *658 - *19 - *17 responses: @@ -104988,10 +105235,10 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *656 - '400': *657 + default: *659 + '400': *660 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105011,16 +105258,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *239 - - *240 + - *242 + - *243 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: &676 + default: &679 value: id: 40201 name: octo-name @@ -105133,8 +105380,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *239 - - *240 + - *242 + - *243 responses: '204': description: Response @@ -105164,8 +105411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *239 - - *240 + - *242 + - *243 - name: token description: package token schema: @@ -105197,8 +105444,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: - - *239 - - *240 + - *242 + - *243 - *19 - *17 - name: state @@ -105218,7 +105465,7 @@ paths: application/json: schema: type: array - items: *241 + items: *244 examples: default: value: @@ -105267,15 +105514,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *239 - - *240 - *242 + - *243 + - *245 responses: '200': description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -105311,9 +105558,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *239 - - *240 - *242 + - *243 + - *245 responses: '204': description: Response @@ -105343,9 +105590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *239 - - *240 - *242 + - *243 + - *245 responses: '204': description: Response @@ -105382,11 +105629,11 @@ paths: application/json: schema: type: array - items: *646 + items: *649 examples: - default: *658 + default: *661 headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -105495,9 +105742,9 @@ paths: application/json: schema: type: array - items: *69 + items: *71 examples: - default: &665 + default: &668 summary: Default response value: - id: 1296269 @@ -105618,7 +105865,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *57 + Link: *59 '422': *15 '304': *35 '403': *27 @@ -105815,9 +106062,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -105856,11 +106103,11 @@ paths: application/json: schema: type: array - items: *509 + items: *512 examples: - default: *659 + default: *662 headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -105881,12 +106128,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *216 + - *219 responses: '204': description: Response '403': *27 - '409': *50 + '409': *52 '404': *6 '304': *35 '451': *15 @@ -105905,11 +106152,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *216 + - *219 responses: '204': description: Response - '409': *50 + '409': *52 '304': *35 '404': *6 '403': *27 @@ -105938,7 +106185,7 @@ paths: application/json: schema: type: array - items: &660 + items: &663 title: Social account description: Social media account type: object @@ -105955,12 +106202,12 @@ paths: - provider - url examples: - default: &661 + default: &664 value: - provider: twitter url: https://twitter.com/github headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -106018,9 +106265,9 @@ paths: application/json: schema: type: array - items: *660 + items: *663 examples: - default: *661 + default: *664 '422': *15 '304': *35 '404': *6 @@ -106108,7 +106355,7 @@ paths: application/json: schema: type: array - items: &662 + items: &665 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -106128,7 +106375,7 @@ paths: - title - created_at examples: - default: &694 + default: &697 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -106139,7 +106386,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -106193,9 +106440,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *665 examples: - default: &663 + default: &666 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -106225,7 +106472,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: - - &664 + - &667 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -106237,9 +106484,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *665 examples: - default: *663 + default: *666 '404': *6 '304': *35 '403': *27 @@ -106262,7 +106509,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: - - *664 + - *667 responses: '204': description: Response @@ -106291,7 +106538,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &695 + - &698 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 @@ -106304,7 +106551,7 @@ paths: - created - updated default: created - - *51 + - *53 - *17 - *19 responses: @@ -106314,13 +106561,13 @@ paths: application/json: schema: type: array - items: *69 + items: *71 examples: - default-response: *665 + default-response: *668 application/vnd.github.v3.star+json: schema: type: array - items: &696 + items: &699 title: Starred Repository description: Starred Repository type: object @@ -106328,7 +106575,7 @@ paths: starred_at: type: string format: date-time - repo: *69 + repo: *71 required: - starred_at - repo @@ -106456,7 +106703,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -106476,8 +106723,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: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response if this repository is starred by you @@ -106505,8 +106752,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -106530,8 +106777,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -106564,11 +106811,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *250 + default: *253 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -106603,7 +106850,7 @@ paths: application/json: schema: type: array - items: *311 + items: *314 examples: default: value: @@ -106654,7 +106901,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -106681,7 +106928,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *91 + - *93 responses: '200': description: Response @@ -106689,10 +106936,10 @@ paths: application/json: schema: oneOf: - - *640 - - *666 + - *643 + - *669 examples: - default-response: &670 + default-response: &673 summary: Default response value: login: octocat @@ -106727,7 +106974,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &671 + response-with-git-hub-plan-information: &674 summary: Response with GitHub plan information value: login: octocat @@ -106784,14 +107031,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &668 + - &671 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *255 + - *258 requestBody: required: true description: Details of the draft item to create in the project. @@ -106825,9 +107072,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: - draft_issue: *261 + draft_issue: *264 '304': *35 '403': *27 '401': *23 @@ -106850,7 +107097,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *667 + - *670 - *17 responses: '200': @@ -106861,7 +107108,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: Link: example: ; rel="next" @@ -106885,8 +107132,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *668 - - *255 + - *671 + - *258 requestBody: required: true content: @@ -106960,17 +107207,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *669 + schema: *672 examples: table_view: summary: Response for creating a table view - value: *265 + value: *268 board_view: summary: Response for creating a board view with filter - value: *265 + value: *268 roadmap_view: summary: Response for creating a roadmap view - value: *265 + value: *268 '304': *35 '403': *27 '401': *23 @@ -107004,7 +107251,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *61 + - *63 responses: '200': description: Response @@ -107012,11 +107259,11 @@ paths: application/json: schema: oneOf: - - *640 - - *666 + - *643 + - *669 examples: - default-response: *670 - response-with-git-hub-plan-information: *671 + default-response: *673 + response-with-git-hub-plan-information: *674 '404': *6 x-github: githubCloudOnly: false @@ -107040,9 +107287,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *43 - - *44 - - *61 + - *45 + - *46 + - *63 requestBody: required: true content: @@ -107066,8 +107313,8 @@ paths: required: - subject_digests examples: - default: *672 - withPredicateType: *673 + default: *675 + withPredicateType: *676 responses: '200': description: Response @@ -107107,7 +107354,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *674 + default: *677 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107125,7 +107372,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *61 + - *63 requestBody: required: true content: @@ -107190,7 +107437,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *61 + - *63 - name: subject_digest description: Subject Digest in: path @@ -107221,7 +107468,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *61 + - *63 - name: attestation_id description: Attestation ID in: path @@ -107257,9 +107504,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations parameters: - *17 - - *43 - - *44 - - *61 + - *45 + - *46 + - *63 - name: subject_digest description: Subject Digest in: path @@ -107296,12 +107543,12 @@ paths: initiator: type: string examples: - default: *376 + default: *379 '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -107327,7 +107574,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: - - *61 + - *63 responses: '200': description: Response @@ -107335,9 +107582,9 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *656 + default: *659 '403': *27 '401': *23 x-github: @@ -107360,7 +107607,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107370,7 +107617,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -107432,8 +107679,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *61 - - *65 + - *63 + - *67 - *17 - *19 responses: @@ -107443,7 +107690,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -107520,7 +107767,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107530,7 +107777,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -107588,7 +107835,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107600,9 +107847,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107619,7 +107866,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107631,9 +107878,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107650,7 +107897,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *61 + - *63 - name: target_user in: path required: true @@ -107677,8 +107924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *61 - - *78 + - *63 + - *80 - *17 - *19 responses: @@ -107688,11 +107935,11 @@ paths: application/json: schema: type: array - items: *79 + items: *81 examples: - default: *80 + default: *82 headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -107711,7 +107958,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107721,11 +107968,11 @@ paths: application/json: schema: type: array - items: *647 + items: *650 examples: - default: *675 + default: *678 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107747,7 +107994,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *61 + - *63 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -107819,7 +108066,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *61 + - *63 responses: '200': description: Response @@ -107827,7 +108074,7 @@ paths: application/json: schema: *20 examples: - default: *506 + default: *509 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107845,7 +108092,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107881,7 +108128,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107901,7 +108148,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -107911,11 +108158,11 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: *102 + default: *104 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107952,8 +108199,8 @@ paths: - docker - nuget - container - - *655 - - *61 + - *658 + - *63 - *19 - *17 responses: @@ -107963,12 +108210,12 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *656 + default: *659 '403': *27 '401': *23 - '400': *657 + '400': *660 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107988,17 +108235,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *676 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108019,9 +108266,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 responses: '204': description: Response @@ -108053,9 +108300,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 - name: token description: package token schema: @@ -108087,9 +108334,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: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 responses: '200': description: Response @@ -108097,7 +108344,7 @@ paths: application/json: schema: type: array - items: *241 + items: *244 examples: default: value: @@ -108155,16 +108402,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *239 - - *240 - *242 - - *61 + - *243 + - *245 + - *63 responses: '200': description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -108199,10 +108446,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *239 - - *240 - - *61 - *242 + - *243 + - *63 + - *245 responses: '204': description: Response @@ -108234,10 +108481,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *239 - - *240 - - *61 - *242 + - *243 + - *63 + - *245 responses: '204': description: Response @@ -108261,15 +108508,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *61 + - *63 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -108278,11 +108525,11 @@ paths: application/json: schema: type: array - items: *253 + items: *256 examples: - default: *254 + default: *257 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108302,18 +108549,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *255 - - *61 + - *258 + - *63 responses: '200': description: Response content: application/json: - schema: *253 + schema: *256 examples: - default: *254 + default: *257 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108333,11 +108580,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *255 - - *61 + - *258 + - *63 - *17 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -108345,11 +108592,11 @@ paths: application/json: schema: type: array - items: *258 + items: *261 examples: - default: *677 + default: *680 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108368,8 +108615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *61 - - *255 + - *63 + - *258 requestBody: required: true content: @@ -108407,7 +108654,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *678 + items: *681 required: - name - data_type @@ -108423,7 +108670,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *679 + iteration_configuration: *682 required: - name - data_type @@ -108445,20 +108692,20 @@ paths: value: name: Due date data_type: date - single_select_field: *680 - iteration_field: *681 + single_select_field: *683 + iteration_field: *684 responses: '201': description: Response content: application/json: - schema: *258 + schema: *261 examples: - text_field: *682 - number_field: *683 - date_field: *684 - single_select_field: *685 - iteration_field: *686 + text_field: *685 + number_field: *686 + date_field: *687 + single_select_field: *688 + iteration_field: *689 '304': *35 '403': *27 '401': *23 @@ -108479,19 +108726,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *255 - - *687 - - *61 + - *258 + - *690 + - *63 responses: '200': description: Response content: application/json: - schema: *258 + schema: *261 examples: - default: *688 + default: *691 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108512,10 +108759,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *255 - - *61 - - *43 - - *44 + - *258 + - *63 + - *45 + - *46 - *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) @@ -108545,11 +108792,11 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108568,8 +108815,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *61 - - *255 + - *63 + - *258 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -108639,22 +108886,22 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *261 + value: *264 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *261 + value: *264 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *261 + value: *264 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *261 + value: *264 '304': *35 '403': *27 '401': *23 @@ -108674,9 +108921,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *255 - - *61 - - *264 + - *258 + - *63 + - *267 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -108696,11 +108943,11 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108719,9 +108966,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *255 - - *61 - - *264 + - *258 + - *63 + - *267 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -108794,13 +109041,13 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - text_field: *263 - number_field: *263 - date_field: *263 - single_select_field: *263 - iteration_field: *263 + text_field: *266 + number_field: *266 + date_field: *266 + single_select_field: *266 + iteration_field: *266 '401': *23 '403': *27 '404': *6 @@ -108820,9 +109067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *255 - - *61 - - *264 + - *258 + - *63 + - *267 responses: '204': description: Response @@ -108844,9 +109091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *255 - - *61 - - *689 + - *258 + - *63 + - *692 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -108862,8 +109109,8 @@ paths: maxItems: 50 items: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -108872,11 +109119,11 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -108902,7 +109149,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -108912,7 +109159,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -108977,7 +109224,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -108987,7 +109234,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -109050,7 +109297,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *61 + - *63 - name: type description: Limit results to repositories of the specified type. in: query @@ -109093,11 +109340,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *250 + default: *253 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109117,12 +109364,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *61 - - *108 + - *63 - *110 - - *109 - - *690 + - *112 - *111 + - *693 + - *113 responses: '200': description: Response when getting a billing premium request usage report @@ -109229,8 +109476,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109250,10 +109497,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *61 - - *108 - - *691 - - *109 + - *63 + - *110 + - *694 + - *111 responses: '200': description: Response when getting a billing usage report @@ -109323,8 +109570,8 @@ paths: repositoryName: user/example '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109347,13 +109594,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *61 - - *108 + - *63 - *110 - - *109 - - *692 + - *112 - *111 - - *693 + - *695 + - *113 + - *696 responses: '200': description: Response when getting a billing usage summary @@ -109458,8 +109705,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109477,7 +109724,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -109487,11 +109734,11 @@ paths: application/json: schema: type: array - items: *660 + items: *663 examples: - default: *661 + default: *664 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109509,7 +109756,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -109519,11 +109766,11 @@ paths: application/json: schema: type: array - items: *662 + items: *665 examples: - default: *694 + default: *697 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109545,9 +109792,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *61 - - *695 - - *51 + - *63 + - *698 + - *53 - *17 - *19 responses: @@ -109558,13 +109805,13 @@ paths: schema: anyOf: - type: array - items: *696 + items: *699 - type: array - items: *69 + items: *71 examples: - default-response: *665 + default-response: *668 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109581,7 +109828,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -109591,11 +109838,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *250 + default: *253 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109722,7 +109969,7 @@ webhooks: type: string enum: - disabled - enterprise: &697 + enterprise: &700 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -109791,7 +110038,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &698 + installation: &701 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -109812,7 +110059,7 @@ webhooks: required: - id - node_id - organization: &699 + organization: &702 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -109885,7 +110132,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &700 + repository: &703 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -109914,7 +110161,7 @@ webhooks: license: anyOf: - type: 'null' - - *75 + - *77 organization: anyOf: - type: 'null' @@ -110806,10 +111053,10 @@ webhooks: type: string enum: - enabled - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -110885,11 +111132,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - rule: &701 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + rule: &704 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) @@ -111112,11 +111359,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - rule: *701 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + rule: *704 sender: *4 required: - action @@ -111304,11 +111551,11 @@ webhooks: - everyone required: - from - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - rule: *701 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + rule: *704 sender: *4 required: - action @@ -111392,7 +111639,7 @@ webhooks: type: string enum: - completed - check_run: &703 + check_run: &706 title: CheckRun description: A check performed on the code of a given code change type: object @@ -111457,8 +111704,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *76 - repository: *145 + items: *78 + repository: *148 status: type: string enum: @@ -111502,7 +111749,7 @@ webhooks: - examples: - neutral - deployment: *702 + deployment: *705 details_url: type: string examples: @@ -111562,7 +111809,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *76 + items: *78 started_at: type: string format: date-time @@ -111600,10 +111847,10 @@ webhooks: - output - app - pull_requests - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 sender: *4 required: - check_run @@ -111994,11 +112241,11 @@ webhooks: type: string enum: - created - check_run: *703 - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + check_run: *706 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 sender: *4 required: - check_run @@ -112392,11 +112639,11 @@ webhooks: type: string enum: - requested_action - check_run: *703 - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + check_run: *706 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 requested_action: description: The action requested by the user. type: object @@ -112799,11 +113046,11 @@ webhooks: type: string enum: - rerequested - check_run: *703 - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + check_run: *706 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 sender: *4 required: - check_run @@ -113788,10 +114035,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -114495,10 +114742,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -115196,10 +115443,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -115368,7 +115615,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -115520,20 +115767,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &704 + commit_oid: &707 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: *697 - installation: *698 - organization: *699 - ref: &705 + enterprise: *700 + installation: *701 + organization: *702 + ref: &708 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: *700 + repository: *703 sender: *4 required: - action @@ -115700,7 +115947,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -115941,12 +116188,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -116044,7 +116291,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116229,12 +116476,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -116403,7 +116650,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -116580,12 +116827,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -116686,7 +116933,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -116875,9 +117122,9 @@ webhooks: type: - string - 'null' - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -116885,7 +117132,7 @@ webhooks: type: - string - 'null' - repository: *700 + repository: *703 sender: *4 required: - action @@ -116984,7 +117231,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117131,12 +117378,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -117305,7 +117552,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -117457,10 +117704,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -117720,10 +117967,10 @@ webhooks: - updated_at - author_association - body - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -117804,18 +118051,18 @@ webhooks: type: - string - 'null' - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *699 - pusher_type: &706 + organization: *702 + pusher_type: &709 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &707 + ref: &710 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -117825,7 +118072,7 @@ webhooks: enum: - tag - branch - repository: *700 + repository: *703 sender: *4 required: - ref @@ -117907,10 +118154,10 @@ webhooks: type: string enum: - created - definition: *266 - enterprise: *697 - installation: *698 - organization: *699 + definition: *269 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -117995,9 +118242,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -118074,10 +118321,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *266 - enterprise: *697 - installation: *698 - organization: *699 + definition: *269 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -118154,10 +118401,10 @@ webhooks: type: string enum: - updated - definition: *266 - enterprise: *697 - installation: *698 - organization: *699 + definition: *269 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -118234,19 +118481,19 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - repository: *700 - organization: *699 + enterprise: *700 + installation: *701 + repository: *703 + organization: *702 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *270 + items: *273 old_property_values: type: array description: The old custom property values for the repository. - items: *270 + items: *273 required: - action - repository @@ -118322,18 +118569,18 @@ webhooks: title: delete event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - pusher_type: *706 - ref: *707 + enterprise: *700 + installation: *701 + organization: *702 + pusher_type: *709 + ref: *710 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *700 + repository: *703 sender: *4 required: - ref @@ -118413,11 +118660,11 @@ webhooks: type: string enum: - assignees_changed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -118497,11 +118744,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -118582,11 +118829,11 @@ webhooks: type: string enum: - auto_reopened - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -118667,11 +118914,11 @@ webhooks: type: string enum: - created - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -118750,11 +118997,11 @@ webhooks: type: string enum: - dismissed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -118833,11 +119080,11 @@ webhooks: type: string enum: - fixed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -118917,11 +119164,11 @@ webhooks: type: string enum: - reintroduced - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119000,11 +119247,11 @@ webhooks: type: string enum: - reopened - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119081,9 +119328,9 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - key: &708 + enterprise: *700 + installation: *701 + key: &711 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -119121,8 +119368,8 @@ webhooks: - verified - created_at - read_only - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -119199,11 +119446,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - key: *708 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + key: *711 + organization: *702 + repository: *703 sender: *4 required: - action @@ -119770,12 +120017,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: &712 + workflow: &715 title: Workflow type: - object @@ -120526,13 +120773,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *471 + - *474 pull_requests: type: array - items: *555 - repository: *700 - organization: *699 - installation: *698 + items: *558 + repository: *703 + organization: *702 + installation: *701 sender: *4 responses: '200': @@ -120603,7 +120850,7 @@ webhooks: type: string enum: - approved - approver: &709 + approver: &712 type: object properties: avatar_url: @@ -120646,11 +120893,11 @@ webhooks: type: string comment: type: string - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - reviewers: &710 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + reviewers: &713 type: array items: type: object @@ -120731,7 +120978,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &711 + workflow_job_run: &714 type: object properties: conclusion: @@ -121477,18 +121724,18 @@ webhooks: type: string enum: - rejected - approver: *709 + approver: *712 comment: type: string - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - reviewers: *710 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + reviewers: *713 sender: *4 since: type: string - workflow_job_run: *711 + workflow_job_run: *714 workflow_job_runs: type: array items: @@ -122205,13 +122452,13 @@ webhooks: type: string enum: - requested - enterprise: *697 + enterprise: *700 environment: type: string - installation: *698 - organization: *699 - repository: *700 - requestor: &717 + installation: *701 + organization: *702 + repository: *703 + requestor: &720 title: User type: - object @@ -124144,12 +124391,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Deployment Workflow Run type: @@ -124840,7 +125087,7 @@ webhooks: type: string enum: - answered - answer: &715 + answer: &718 type: object properties: author_association: @@ -125000,11 +125247,11 @@ webhooks: - created_at - updated_at - body - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125131,11 +125378,11 @@ webhooks: - from required: - category - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125218,11 +125465,11 @@ webhooks: type: string enum: - closed - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125304,7 +125551,7 @@ webhooks: type: string enum: - created - comment: &714 + comment: &717 type: object properties: author_association: @@ -125464,11 +125711,11 @@ webhooks: - updated_at - body - reactions - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125551,12 +125798,12 @@ webhooks: type: string enum: - deleted - comment: *714 - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + comment: *717 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125651,12 +125898,12 @@ webhooks: - from required: - body - comment: *714 - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + comment: *717 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125740,11 +125987,11 @@ webhooks: type: string enum: - created - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125826,11 +126073,11 @@ webhooks: type: string enum: - deleted - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -125930,11 +126177,11 @@ webhooks: type: string required: - from - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126016,10 +126263,10 @@ webhooks: type: string enum: - labeled - discussion: *713 - enterprise: *697 - installation: *698 - label: &716 + discussion: *716 + enterprise: *700 + installation: *701 + label: &719 title: Label type: object properties: @@ -126052,8 +126299,8 @@ webhooks: - color - default - description - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126136,11 +126383,11 @@ webhooks: type: string enum: - locked - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126222,11 +126469,11 @@ webhooks: type: string enum: - pinned - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126308,11 +126555,11 @@ webhooks: type: string enum: - reopened - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126397,16 +126644,16 @@ webhooks: changes: type: object properties: - new_discussion: *713 - new_repository: *700 + new_discussion: *716 + new_repository: *703 required: - new_discussion - new_repository - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126489,10 +126736,10 @@ webhooks: type: string enum: - unanswered - discussion: *713 - old_answer: *715 - organization: *699 - repository: *700 + discussion: *716 + old_answer: *718 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126574,12 +126821,12 @@ webhooks: type: string enum: - unlabeled - discussion: *713 - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126662,11 +126909,11 @@ webhooks: type: string enum: - unlocked - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126748,11 +126995,11 @@ webhooks: type: string enum: - unpinned - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126825,7 +127072,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *697 + enterprise: *700 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -127503,9 +127750,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *698 - organization: *699 - repository: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - forkee @@ -127651,9 +127898,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pages: description: The pages that were updated. type: array @@ -127691,7 +127938,7 @@ webhooks: - action - sha - html_url - repository: *700 + repository: *703 sender: *4 required: - pages @@ -127767,10 +128014,10 @@ webhooks: type: string enum: - created - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: &718 + organization: *702 + repositories: &721 description: An array of repository objects that the installation can access. type: array @@ -127796,8 +128043,8 @@ webhooks: - name - full_name - private - repository: *700 - requester: *717 + repository: *703 + requester: *720 sender: *4 required: - action @@ -127872,11 +128119,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -127953,11 +128200,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -128034,10 +128281,10 @@ webhooks: type: string enum: - added - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories_added: &719 + organization: *702 + repositories_added: &722 description: An array of repository objects, which were added to the installation. type: array @@ -128083,15 +128330,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *700 - repository_selection: &720 + repository: *703 + repository_selection: &723 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *717 + requester: *720 sender: *4 required: - action @@ -128170,10 +128417,10 @@ webhooks: type: string enum: - removed - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories_added: *719 + organization: *702 + repositories_added: *722 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -128200,9 +128447,9 @@ webhooks: - name - full_name - private - repository: *700 - repository_selection: *720 - requester: *717 + repository: *703 + repository_selection: *723 + requester: *720 sender: *4 required: - action @@ -128281,11 +128528,11 @@ webhooks: type: string enum: - suspend - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -128467,10 +128714,10 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 target_type: type: string @@ -128549,11 +128796,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -128719,7 +128966,7 @@ webhooks: pin: anyOf: - type: 'null' - - *534 + - *537 user: title: User type: @@ -128805,8 +129052,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129618,8 +129865,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129636,7 +129883,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -129980,8 +130227,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -130061,7 +130308,7 @@ webhooks: type: string enum: - deleted - comment: &721 + comment: &724 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -130218,7 +130465,7 @@ webhooks: pin: anyOf: - type: 'null' - - *534 + - *537 required: - url - html_url @@ -130232,8 +130479,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131041,8 +131288,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131059,7 +131306,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -131405,8 +131652,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -131486,7 +131733,7 @@ webhooks: type: string enum: - edited - changes: &745 + changes: &748 description: The changes to the comment. type: object properties: @@ -131498,9 +131745,9 @@ webhooks: type: string required: - from - comment: *721 - enterprise: *697 - installation: *698 + comment: *724 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132311,8 +132558,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132329,7 +132576,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -132673,8 +132920,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -132755,9 +133002,9 @@ webhooks: type: string enum: - pinned - comment: *721 - enterprise: *697 - installation: *698 + comment: *724 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133570,8 +133817,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133588,7 +133835,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -133934,8 +134181,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -134015,9 +134262,9 @@ webhooks: type: string enum: - unpinned - comment: *721 - enterprise: *697 - installation: *698 + comment: *724 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134830,8 +135077,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134848,7 +135095,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -135194,8 +135441,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135278,15 +135525,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 + blocked_issue: *75 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - blocking_issue_repo: *69 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + blocking_issue_repo: *71 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135369,15 +135616,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 + blocked_issue: *75 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - blocking_issue_repo: *69 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + blocking_issue_repo: *71 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135459,15 +135706,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 - blocked_issue_repo: *69 + blocked_issue: *75 + blocked_issue_repo: *71 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135550,15 +135797,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 - blocked_issue_repo: *69 + blocked_issue: *75 + blocked_issue_repo: *71 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135638,10 +135885,10 @@ webhooks: type: string enum: - assigned - assignee: *717 - enterprise: *697 - installation: *698 - issue: &724 + assignee: *720 + enterprise: *700 + installation: *701 + issue: &727 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136451,12 +136698,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136473,7 +136720,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -136576,8 +136823,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -136657,8 +136904,8 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -137473,12 +137720,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137495,7 +137742,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -137741,8 +137988,8 @@ webhooks: required: - state - closed_at - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -137821,8 +138068,8 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138628,12 +138875,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138650,7 +138897,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -138752,8 +138999,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -138832,8 +139079,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139662,12 +139909,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139684,7 +139931,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -139765,7 +140012,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &722 + milestone: &725 title: Milestone description: A collection of related issues and pull requests. type: object @@ -139908,8 +140155,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -140008,8 +140255,8 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140819,12 +141066,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140838,7 +141085,7 @@ webhooks: timeline_url: type: string format: uri - type: *220 + type: *223 title: description: Title of the issue type: string @@ -140944,9 +141191,9 @@ webhooks: - active_lock_reason - body - reactions - label: *716 - organization: *699 - repository: *700 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -141026,8 +141273,8 @@ webhooks: type: string enum: - labeled - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141836,12 +142083,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141855,7 +142102,7 @@ webhooks: timeline_url: type: string format: uri - type: *220 + type: *223 title: description: Title of the issue type: string @@ -141961,9 +142208,9 @@ webhooks: - active_lock_reason - body - reactions - label: *716 - organization: *699 - repository: *700 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -142043,8 +142290,8 @@ webhooks: type: string enum: - locked - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142878,12 +143125,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142897,7 +143144,7 @@ webhooks: timeline_url: type: string format: uri - type: *220 + type: *223 title: description: Title of the issue type: string @@ -142980,8 +143227,8 @@ webhooks: format: uri user_view_type: type: string - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -143060,8 +143307,8 @@ webhooks: type: string enum: - milestoned - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143889,12 +144136,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143911,7 +144158,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -143991,9 +144238,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *722 - organization: *699 - repository: *700 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -144880,11 +145127,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144911,7 +145158,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 + - *76 user: title: User type: @@ -144984,7 +145231,7 @@ webhooks: required: - login - id - type: *220 + type: *223 required: - id - number @@ -145480,8 +145727,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146288,11 +146535,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146309,7 +146556,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -146320,7 +146567,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 + - *76 user: title: User type: @@ -146415,8 +146662,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -146496,9 +146743,9 @@ webhooks: type: string enum: - pinned - enterprise: *697 - installation: *698 - issue: &723 + enterprise: *700 + installation: *701 + issue: &726 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -147302,12 +147549,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147324,7 +147571,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -147426,8 +147673,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -147506,8 +147753,8 @@ webhooks: type: string enum: - reopened - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148339,12 +148586,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148441,9 +148688,9 @@ webhooks: format: uri user_view_type: type: string - type: *220 - organization: *699 - repository: *700 + type: *223 + organization: *702 + repository: *703 sender: *4 required: - action @@ -149330,12 +149577,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149352,7 +149599,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -149949,11 +150196,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *697 - installation: *698 - issue: *723 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *726 + organization: *702 + repository: *703 sender: *4 required: - action @@ -150033,12 +150280,12 @@ webhooks: type: string enum: - typed - enterprise: *697 - installation: *698 - issue: *724 - type: *220 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + type: *223 + organization: *702 + repository: *703 sender: *4 required: - action @@ -150119,7 +150366,7 @@ webhooks: type: string enum: - unassigned - assignee: &748 + assignee: &751 title: User type: - object @@ -150191,11 +150438,11 @@ webhooks: required: - login - id - enterprise: *697 - installation: *698 - issue: *724 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + organization: *702 + repository: *703 sender: *4 required: - action @@ -150274,12 +150521,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *697 - installation: *698 - issue: *724 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -150359,8 +150606,8 @@ webhooks: type: string enum: - unlocked - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151192,12 +151439,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151214,7 +151461,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -151294,8 +151541,8 @@ webhooks: format: uri user_view_type: type: string - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151375,11 +151622,11 @@ webhooks: type: string enum: - unpinned - enterprise: *697 - installation: *698 - issue: *723 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *726 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151458,12 +151705,12 @@ webhooks: type: string enum: - untyped - enterprise: *697 - installation: *698 - issue: *724 - type: *220 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + type: *223 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151543,11 +151790,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151625,11 +151872,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151739,11 +151986,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151825,9 +152072,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: &725 + enterprise: *700 + installation: *701 + marketplace_purchase: &728 title: Marketplace Purchase type: object required: @@ -151915,8 +152162,8 @@ webhooks: type: integer unit_count: type: integer - organization: *699 - previous_marketplace_purchase: &726 + organization: *702 + previous_marketplace_purchase: &729 title: Marketplace Purchase type: object properties: @@ -152000,7 +152247,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *700 + repository: *703 sender: *4 required: - action @@ -152080,10 +152327,10 @@ webhooks: - changed effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: *725 - organization: *699 + enterprise: *700 + installation: *701 + marketplace_purchase: *728 + organization: *702 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152171,7 +152418,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *700 + repository: *703 sender: *4 required: - action @@ -152253,10 +152500,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: *725 - organization: *699 + enterprise: *700 + installation: *701 + marketplace_purchase: *728 + organization: *702 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152342,7 +152589,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *700 + repository: *703 sender: *4 required: - action @@ -152423,8 +152670,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 marketplace_purchase: title: Marketplace Purchase type: object @@ -152510,9 +152757,9 @@ webhooks: type: integer unit_count: type: integer - organization: *699 - previous_marketplace_purchase: *726 - repository: *700 + organization: *702 + previous_marketplace_purchase: *729 + repository: *703 sender: *4 required: - action @@ -152592,12 +152839,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: *725 - organization: *699 - previous_marketplace_purchase: *726 - repository: *700 + enterprise: *700 + installation: *701 + marketplace_purchase: *728 + organization: *702 + previous_marketplace_purchase: *729 + repository: *703 sender: *4 required: - action @@ -152699,11 +152946,11 @@ webhooks: type: string required: - to - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 sender: *4 required: - action @@ -152805,11 +153052,11 @@ webhooks: type: - string - 'null' - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 sender: *4 required: - action @@ -152888,11 +153135,11 @@ webhooks: type: string enum: - removed - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 sender: *4 required: - action @@ -152970,11 +153217,11 @@ webhooks: type: string enum: - added - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153052,7 +153299,7 @@ webhooks: required: - login - id - team: &727 + team: &730 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -153282,11 +153529,11 @@ webhooks: type: string enum: - removed - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153365,7 +153612,7 @@ webhooks: required: - login - id - team: *727 + team: *730 required: - action - scope @@ -153447,8 +153694,8 @@ webhooks: type: string enum: - checks_requested - installation: *698 - merge_group: &728 + installation: *701 + merge_group: &731 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -153467,15 +153714,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *396 + head_commit: *399 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -153561,10 +153808,10 @@ webhooks: - merged - invalidated - dequeued - installation: *698 - merge_group: *728 - organization: *699 - repository: *700 + installation: *701 + merge_group: *731 + organization: *702 + repository: *703 sender: *4 required: - action @@ -153637,7 +153884,7 @@ webhooks: type: string enum: - deleted - enterprise: *697 + enterprise: *700 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -153746,12 +153993,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *698 - organization: *699 + installation: *701 + organization: *702 repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -153831,11 +154078,11 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 - milestone: *722 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -153914,9 +154161,9 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - milestone: &729 + enterprise: *700 + installation: *701 + milestone: &732 title: Milestone description: A collection of related issues and pull requests. type: object @@ -154058,8 +154305,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154138,11 +154385,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - milestone: *722 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154252,11 +154499,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - milestone: *722 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154336,11 +154583,11 @@ webhooks: type: string enum: - opened - enterprise: *697 - installation: *698 - milestone: *729 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *732 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154419,11 +154666,11 @@ webhooks: type: string enum: - blocked - blocked_user: *717 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + blocked_user: *720 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154502,11 +154749,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *717 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + blocked_user: *720 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154585,9 +154832,9 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - membership: &730 + enterprise: *700 + installation: *701 + membership: &733 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -154697,8 +154944,8 @@ webhooks: - role - organization_url - user - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154776,11 +155023,11 @@ webhooks: type: string enum: - member_added - enterprise: *697 - installation: *698 - membership: *730 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + membership: *733 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154859,8 +155106,8 @@ webhooks: type: string enum: - member_invited - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -154982,10 +155229,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 - user: *717 + user: *720 required: - action - invitation @@ -155063,11 +155310,11 @@ webhooks: type: string enum: - member_removed - enterprise: *697 - installation: *698 - membership: *730 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + membership: *733 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155154,11 +155401,11 @@ webhooks: properties: from: type: string - enterprise: *697 - installation: *698 - membership: *730 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + membership: *733 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155235,9 +155482,9 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 package: description: Information about the package. type: object @@ -155760,7 +156007,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &731 + items: &734 title: Ruby Gems metadata type: object properties: @@ -155857,7 +156104,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -155933,9 +156180,9 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 package: description: Information about the package. type: object @@ -156297,7 +156544,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *731 + items: *734 source_url: type: string format: uri @@ -156368,7 +156615,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -156548,12 +156795,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *697 + enterprise: *700 id: type: integer - installation: *698 - organization: *699 - repository: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - id @@ -156630,7 +156877,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &732 + personal_access_token_request: &735 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -156780,10 +157027,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *697 - organization: *699 + enterprise: *700 + organization: *702 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -156860,11 +157107,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *732 - enterprise: *697 - organization: *699 + personal_access_token_request: *735 + enterprise: *700 + organization: *702 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -156940,11 +157187,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *732 - enterprise: *697 - organization: *699 + personal_access_token_request: *735 + enterprise: *700 + organization: *702 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -157019,11 +157266,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *732 - organization: *699 - enterprise: *697 + personal_access_token_request: *735 + organization: *702 + enterprise: *700 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -157128,7 +157375,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *733 + last_response: *736 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -157160,8 +157407,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 zen: description: Random string of GitHub zen. @@ -157406,10 +157653,10 @@ webhooks: - from required: - note - enterprise: *697 - installation: *698 - organization: *699 - project_card: &734 + enterprise: *700 + installation: *701 + organization: *702 + project_card: &737 title: Project Card type: object properties: @@ -157532,7 +157779,7 @@ webhooks: - creator - created_at - updated_at - repository: *700 + repository: *703 sender: *4 required: - action @@ -157613,11 +157860,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - project_card: *734 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_card: *737 + repository: *703 sender: *4 required: - action @@ -157697,9 +157944,9 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 project_card: title: Project Card type: object @@ -157829,7 +158076,7 @@ webhooks: repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -157923,11 +158170,11 @@ webhooks: - from required: - note - enterprise: *697 - installation: *698 - organization: *699 - project_card: *734 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_card: *737 + repository: *703 sender: *4 required: - action @@ -158021,9 +158268,9 @@ webhooks: - from required: - column_id - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 project_card: allOf: - title: Project Card @@ -158220,7 +158467,7 @@ webhooks: type: string required: - after_id - repository: *700 + repository: *703 sender: *4 required: - action @@ -158300,10 +158547,10 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 - organization: *699 - project: &736 + enterprise: *700 + installation: *701 + organization: *702 + project: &739 title: Project type: object properties: @@ -158430,7 +158677,7 @@ webhooks: - creator - created_at - updated_at - repository: *700 + repository: *703 sender: *4 required: - action @@ -158510,10 +158757,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - project_column: &735 + enterprise: *700 + installation: *701 + organization: *702 + project_column: &738 title: Project Column type: object properties: @@ -158553,7 +158800,7 @@ webhooks: - name - created_at - updated_at - repository: *700 + repository: *703 sender: *4 required: - action @@ -158632,14 +158879,14 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - project_column: *735 + enterprise: *700 + installation: *701 + organization: *702 + project_column: *738 repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -158728,11 +158975,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - project_column: *735 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_column: *738 + repository: *703 sender: *4 required: - action @@ -158812,11 +159059,11 @@ webhooks: type: string enum: - moved - enterprise: *697 - installation: *698 - organization: *699 - project_column: *735 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_column: *738 + repository: *703 sender: *4 required: - action @@ -158896,11 +159143,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - project: *736 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 + repository: *703 sender: *4 required: - action @@ -158980,14 +159227,14 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - project: *736 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -159088,11 +159335,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - project: *736 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 + repository: *703 sender: *4 required: - action @@ -159171,11 +159418,11 @@ webhooks: type: string enum: - reopened - enterprise: *697 - installation: *698 - organization: *699 - project: *736 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 + repository: *703 sender: *4 required: - action @@ -159256,9 +159503,9 @@ webhooks: type: string enum: - closed - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -159339,9 +159586,9 @@ webhooks: type: string enum: - created - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -159422,9 +159669,9 @@ webhooks: type: string enum: - deleted - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -159545,9 +159792,9 @@ webhooks: type: string to: type: string - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -159630,7 +159877,7 @@ webhooks: type: string enum: - archived - changes: &740 + changes: &743 type: object properties: archived_at: @@ -159646,9 +159893,9 @@ webhooks: - string - 'null' format: date-time - installation: *698 - organization: *699 - projects_v2_item: &737 + installation: *701 + organization: *702 + projects_v2_item: &740 title: Projects v2 Item description: An item belonging to a project type: object @@ -159666,7 +159913,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *259 + content_type: *262 creator: *4 created_at: type: string @@ -159788,9 +160035,9 @@ webhooks: - 'null' to: type: string - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -159872,9 +160119,9 @@ webhooks: type: string enum: - created - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -159955,9 +160202,9 @@ webhooks: type: string enum: - deleted - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -160062,7 +160309,7 @@ webhooks: oneOf: - type: string - type: integer - - &738 + - &741 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -160086,7 +160333,7 @@ webhooks: required: - id - name - - &739 + - &742 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -160126,8 +160373,8 @@ webhooks: oneOf: - type: string - type: integer - - *738 - - *739 + - *741 + - *742 type: - 'null' - string @@ -160150,9 +160397,9 @@ webhooks: - 'null' required: - body - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -160249,9 +160496,9 @@ webhooks: type: - string - 'null' - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -160334,10 +160581,10 @@ webhooks: type: string enum: - restored - changes: *740 - installation: *698 - organization: *699 - projects_v2_item: *737 + changes: *743 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -160419,9 +160666,9 @@ webhooks: type: string enum: - reopened - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -160502,9 +160749,9 @@ webhooks: type: string enum: - created - installation: *698 - organization: *699 - projects_v2_status_update: *741 + installation: *701 + organization: *702 + projects_v2_status_update: *744 sender: *4 required: - action @@ -160585,9 +160832,9 @@ webhooks: type: string enum: - deleted - installation: *698 - organization: *699 - projects_v2_status_update: *741 + installation: *701 + organization: *702 + projects_v2_status_update: *744 sender: *4 required: - action @@ -160733,9 +160980,9 @@ webhooks: - string - 'null' format: date - installation: *698 - organization: *699 - projects_v2_status_update: *741 + installation: *701 + organization: *702 + projects_v2_status_update: *744 sender: *4 required: - action @@ -160806,10 +161053,10 @@ webhooks: title: public event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - repository @@ -160886,13 +161133,13 @@ webhooks: type: string enum: - assigned - assignee: *717 - enterprise: *697 - installation: *698 - number: &742 + assignee: *720 + enterprise: *700 + installation: *701 + number: &745 description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -163252,7 +163499,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -163334,11 +163581,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -165691,7 +165938,7 @@ webhooks: - draft reason: type: string - repository: *700 + repository: *703 sender: *4 required: - action @@ -165773,11 +166020,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -168130,7 +168377,7 @@ webhooks: - draft reason: type: string - repository: *700 + repository: *703 sender: *4 required: - action @@ -168212,13 +168459,13 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: &743 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: &746 allOf: - - *555 + - *558 - type: object properties: allow_auto_merge: @@ -168280,7 +168527,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *700 + repository: *703 sender: *4 required: - action @@ -168361,12 +168608,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -168446,11 +168693,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *697 - milestone: *256 - number: *742 - organization: *699 - pull_request: &744 + enterprise: *700 + milestone: *259 + number: *745 + organization: *702 + pull_request: &747 title: Pull Request type: object properties: @@ -170802,7 +171049,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -170881,11 +171128,11 @@ webhooks: type: string enum: - dequeued - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -173256,7 +173503,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *700 + repository: *703 sender: *4 required: - action @@ -173380,12 +173627,12 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -173465,11 +173712,11 @@ webhooks: type: string enum: - enqueued - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -175825,7 +176072,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -175905,11 +176152,11 @@ webhooks: type: string enum: - labeled - enterprise: *697 - installation: *698 - label: *716 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + label: *719 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -178268,7 +178515,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -178349,10 +178596,10 @@ webhooks: type: string enum: - locked - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -180709,7 +180956,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -180789,12 +181036,12 @@ webhooks: type: string enum: - milestoned - enterprise: *697 - milestone: *256 - number: *742 - organization: *699 - pull_request: *744 - repository: *700 + enterprise: *700 + milestone: *259 + number: *745 + organization: *702 + pull_request: *747 + repository: *703 sender: *4 required: - action @@ -180873,12 +181120,12 @@ webhooks: type: string enum: - opened - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -180959,12 +181206,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -181044,12 +181291,12 @@ webhooks: type: string enum: - reopened - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -181424,9 +181671,9 @@ webhooks: - start_side - side - reactions - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: type: object properties: @@ -183667,7 +183914,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *700 + repository: *703 sender: *4 required: - action @@ -183747,7 +183994,7 @@ webhooks: type: string enum: - deleted - comment: &746 + comment: &749 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -184040,9 +184287,9 @@ webhooks: - start_side - side - reactions - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: type: object properties: @@ -186271,7 +186518,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *700 + repository: *703 sender: *4 required: - action @@ -186351,11 +186598,11 @@ webhooks: type: string enum: - edited - changes: *745 - comment: *746 - enterprise: *697 - installation: *698 - organization: *699 + changes: *748 + comment: *749 + enterprise: *700 + installation: *701 + organization: *702 pull_request: type: object properties: @@ -188587,7 +188834,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *700 + repository: *703 sender: *4 required: - action @@ -188668,9 +188915,9 @@ webhooks: type: string enum: - dismissed - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -190914,7 +191161,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 + repository: *703 review: description: The review that was affected. type: object @@ -191165,9 +191412,9 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -193276,8 +193523,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 - review: &747 + repository: *703 + review: &750 description: The review that was affected. type: object properties: @@ -193515,12 +193762,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -195878,7 +196125,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_reviewer: title: User type: @@ -195964,12 +196211,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -198334,7 +198581,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_team: title: Team description: Groups of organization members that gives permissions @@ -198529,12 +198776,12 @@ webhooks: type: string enum: - review_requested - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -200894,7 +201141,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_reviewer: title: User type: @@ -200981,12 +201228,12 @@ webhooks: type: string enum: - review_requested - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -203337,7 +203584,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_team: title: Team description: Groups of organization members that gives permissions @@ -203521,9 +203768,9 @@ webhooks: type: string enum: - submitted - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -205770,8 +206017,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 - review: *747 + repository: *703 + review: *750 sender: *4 required: - action @@ -205851,9 +206098,9 @@ webhooks: type: string enum: - resolved - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -208009,7 +208256,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 + repository: *703 sender: *4 thread: type: object @@ -208406,9 +208653,9 @@ webhooks: type: string enum: - unresolved - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -210547,7 +210794,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 + repository: *703 sender: *4 thread: type: object @@ -210946,10 +211193,10 @@ webhooks: type: string before: type: string - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -213295,7 +213542,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -213377,11 +213624,11 @@ webhooks: type: string enum: - unassigned - assignee: *748 - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + assignee: *751 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -215742,7 +215989,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -215821,11 +216068,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *697 - installation: *698 - label: *716 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + label: *719 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -218175,7 +218422,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -218256,10 +218503,10 @@ webhooks: type: string enum: - unlocked - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -220599,7 +220846,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -220802,7 +221049,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *697 + enterprise: *700 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -220897,8 +221144,8 @@ webhooks: - url - author - committer - installation: *698 - organization: *699 + installation: *701 + organization: *702 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -221501,9 +221748,9 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 registry_package: type: object properties: @@ -221980,7 +222227,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *731 + items: *734 summary: type: string tag_name: @@ -222036,7 +222283,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -222114,9 +222361,9 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 registry_package: type: object properties: @@ -222428,7 +222675,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *731 + items: *734 summary: type: string tag_name: @@ -222478,7 +222725,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -222555,10 +222802,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - release: &749 + enterprise: *700 + installation: *701 + organization: *702 + release: &752 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -222889,7 +223136,7 @@ webhooks: - updated_at - zipball_url - body - repository: *700 + repository: *703 sender: *4 required: - action @@ -222966,11 +223213,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - release: *749 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *752 + repository: *703 sender: *4 required: - action @@ -223087,11 +223334,11 @@ webhooks: type: boolean required: - to - enterprise: *697 - installation: *698 - organization: *699 - release: *749 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *752 + repository: *703 sender: *4 required: - action @@ -223169,9 +223416,9 @@ webhooks: type: string enum: - prereleased - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -223507,7 +223754,7 @@ webhooks: - string - 'null' format: uri - repository: *700 + repository: *703 sender: *4 required: - action @@ -223583,10 +223830,10 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 - release: &750 + enterprise: *700 + installation: *701 + organization: *702 + release: &753 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -223919,7 +224166,7 @@ webhooks: - string - 'null' format: uri - repository: *700 + repository: *703 sender: *4 required: - action @@ -223995,11 +224242,11 @@ webhooks: type: string enum: - released - enterprise: *697 - installation: *698 - organization: *699 - release: *749 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *752 + repository: *703 sender: *4 required: - action @@ -224075,11 +224322,11 @@ webhooks: type: string enum: - unpublished - enterprise: *697 - installation: *698 - organization: *699 - release: *750 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *753 + repository: *703 sender: *4 required: - action @@ -224155,11 +224402,11 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_advisory: *619 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_advisory: *622 sender: *4 required: - action @@ -224235,11 +224482,11 @@ webhooks: type: string enum: - reported - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_advisory: *619 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_advisory: *622 sender: *4 required: - action @@ -224315,10 +224562,10 @@ webhooks: type: string enum: - archived - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -224395,10 +224642,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -224476,10 +224723,10 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -224564,10 +224811,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -224682,10 +224929,10 @@ webhooks: - 'null' items: type: string - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -224757,10 +225004,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 status: type: string @@ -224841,10 +225088,10 @@ webhooks: type: string enum: - privatized - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -224921,10 +225168,10 @@ webhooks: type: string enum: - publicized - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225018,10 +225265,10 @@ webhooks: - name required: - repository - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225101,11 +225348,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_ruleset: *298 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_ruleset: *301 sender: *4 required: - action @@ -225183,11 +225430,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_ruleset: *298 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_ruleset: *301 sender: *4 required: - action @@ -225265,11 +225512,11 @@ webhooks: type: string enum: - edited - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_ruleset: *298 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_ruleset: *301 changes: type: object properties: @@ -225288,16 +225535,16 @@ webhooks: properties: added: type: array - items: *272 + items: *275 deleted: type: array - items: *272 + items: *275 updated: type: array items: type: object properties: - condition: *272 + condition: *275 changes: type: object properties: @@ -225330,16 +225577,16 @@ webhooks: properties: added: type: array - items: *575 + items: *578 deleted: type: array - items: *575 + items: *578 updated: type: array items: type: object properties: - rule: *575 + rule: *578 changes: type: object properties: @@ -225576,10 +225823,10 @@ webhooks: - from required: - owner - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225657,10 +225904,10 @@ webhooks: type: string enum: - unarchived - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -225738,7 +225985,7 @@ webhooks: type: string enum: - create - alert: &751 + alert: &754 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -225863,10 +226110,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226076,10 +226323,10 @@ webhooks: type: string enum: - dismissed - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226157,11 +226404,11 @@ webhooks: type: string enum: - reopen - alert: *751 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *754 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226363,10 +226610,10 @@ webhooks: enum: - fixed - open - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226444,17 +226691,17 @@ webhooks: type: string enum: - assigned - alert: &752 + alert: &755 type: object properties: - number: *163 - created_at: *164 + number: *166 + created_at: *167 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *168 + url: *169 + html_url: *170 locations_url: type: string format: uri @@ -226559,10 +226806,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226640,11 +226887,11 @@ webhooks: type: string enum: - created - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226725,11 +226972,11 @@ webhooks: type: string enum: - created - alert: *752 - installation: *698 - location: *753 - organization: *699 - repository: *700 + alert: *755 + installation: *701 + location: *756 + organization: *702 + repository: *703 sender: *4 required: - location @@ -226967,11 +227214,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227049,11 +227296,11 @@ webhooks: type: string enum: - reopened - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227131,11 +227378,11 @@ webhooks: type: string enum: - resolved - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227213,12 +227460,12 @@ webhooks: type: string enum: - unassigned - alert: *752 + alert: *755 assignee: *4 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227296,11 +227543,11 @@ webhooks: type: string enum: - validated - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227430,10 +227677,10 @@ webhooks: - organization - enterprise - - repository: *700 - enterprise: *697 - installation: *698 - organization: *699 + repository: *703 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -227511,16 +227758,16 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - security_advisory: &754 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + security_advisory: &757 description: The details of the security advisory, including summary, description, and severity. type: object properties: - cvss_severities: *53 + cvss_severities: *55 cwes: type: array items: @@ -227688,11 +227935,11 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - security_advisory: *754 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + security_advisory: *757 sender: *4 required: - action @@ -227765,16 +228012,16 @@ webhooks: type: string enum: - withdrawn - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 security_advisory: description: The details of the security advisory, including summary, description, and severity. type: object properties: - cvss_severities: *53 + cvss_severities: *55 cwes: type: array items: @@ -227941,11 +228188,11 @@ webhooks: from: type: object properties: - security_and_analysis: *271 - enterprise: *697 - installation: *698 - organization: *699 - repository: *318 + security_and_analysis: *274 + enterprise: *700 + installation: *701 + organization: *702 + repository: *321 sender: *4 required: - changes @@ -228023,12 +228270,12 @@ webhooks: type: string enum: - cancelled - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: &755 + sponsorship: &758 type: object properties: created_at: @@ -228333,12 +228580,12 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - sponsorship @@ -228426,12 +228673,12 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - changes @@ -228508,17 +228755,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &756 + effective_date: &759 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: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - sponsorship @@ -228592,7 +228839,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &757 + changes: &760 type: object properties: tier: @@ -228636,13 +228883,13 @@ webhooks: - from required: - tier - effective_date: *756 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + effective_date: *759 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - changes @@ -228719,13 +228966,13 @@ webhooks: type: string enum: - tier_changed - changes: *757 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + changes: *760 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - changes @@ -228799,10 +229046,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -228886,10 +229133,10 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -229323,15 +229570,15 @@ webhooks: type: - string - 'null' - enterprise: *697 + enterprise: *700 id: description: The unique identifier of the status. type: integer - installation: *698 + installation: *701 name: type: string - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 sha: description: The Commit SHA. @@ -229441,15 +229688,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - parent_issue_repo: *69 + parent_issue: *75 + parent_issue_repo: *71 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - installation: *698 - organization: *699 - repository: *700 + sub_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -229533,15 +229780,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - parent_issue_repo: *69 + parent_issue: *75 + parent_issue_repo: *71 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - installation: *698 - organization: *699 - repository: *700 + sub_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -229625,15 +229872,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - sub_issue_repo: *69 + sub_issue: *75 + sub_issue_repo: *71 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - installation: *698 - organization: *699 - repository: *700 + parent_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -229717,15 +229964,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - sub_issue_repo: *69 + sub_issue: *75 + sub_issue_repo: *71 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - installation: *698 - organization: *699 - repository: *700 + parent_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -229802,12 +230049,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - team: &758 + team: &761 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -230037,9 +230284,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -230509,7 +230756,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -230585,9 +230832,9 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -231057,7 +231304,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -231134,9 +231381,9 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -231606,7 +231853,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -231750,9 +231997,9 @@ webhooks: - from required: - permissions - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -232222,7 +232469,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - changes @@ -232300,9 +232547,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -232772,7 +233019,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -232848,10 +233095,10 @@ webhooks: type: string enum: - started - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -232924,17 +233171,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *697 + enterprise: *700 inputs: type: - object - 'null' additionalProperties: true - installation: *698 - organization: *699 + installation: *701 + organization: *702 ref: type: string - repository: *700 + repository: *703 sender: *4 workflow: type: string @@ -233016,10 +233263,10 @@ webhooks: type: string enum: - completed - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: allOf: @@ -233275,7 +233522,7 @@ webhooks: type: string required: - conclusion - deployment: *471 + deployment: *474 required: - action - repository @@ -233354,10 +233601,10 @@ webhooks: type: string enum: - in_progress - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: allOf: @@ -233639,7 +233886,7 @@ webhooks: required: - status - steps - deployment: *471 + deployment: *474 required: - action - repository @@ -233718,10 +233965,10 @@ webhooks: type: string enum: - queued - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: type: object @@ -233867,7 +234114,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *471 + deployment: *474 required: - action - repository @@ -233946,10 +234193,10 @@ webhooks: type: string enum: - waiting - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: type: object @@ -234096,7 +234343,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *471 + deployment: *474 required: - action - repository @@ -234176,12 +234423,12 @@ webhooks: type: string enum: - completed - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Workflow Run type: object @@ -235200,12 +235447,12 @@ webhooks: type: string enum: - in_progress - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Workflow Run type: object @@ -236209,12 +236456,12 @@ webhooks: type: string enum: - requested - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 8723498e8..01a64c68e 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -19357,6 +19357,349 @@ } } }, + "/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" + ], + "examples": [ + "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" + ], + "examples": [ + "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", @@ -91155,6 +91498,344 @@ } } }, + "/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" + ], + "examples": [ + "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" + ], + "examples": [ + "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-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index dabbf64ff..716f9cd7e 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -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 - - &43 + - &45 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 - - &44 + - &46 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 - - &51 + - &53 name: direction description: The direction to sort the results by. in: query @@ -719,7 +719,7 @@ paths: required: - vector_string - score - cvss_severities: &53 + cvss_severities: &55 type: - object - 'null' @@ -766,7 +766,7 @@ paths: required: - vector_string - score - epss: &54 + epss: &56 type: - object - 'null' @@ -929,7 +929,7 @@ paths: - subscriptions_url - type - url - type: &304 + type: &307 type: string description: The type of credit the user is receiving. enum: @@ -1089,7 +1089,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &115 + schema: &117 title: Validation Error Simple description: Validation Error Simple type: object @@ -1122,7 +1122,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &621 + - &624 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1707,7 +1707,7 @@ paths: schema: type: integer default: 30 - - &195 + - &198 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 @@ -1723,7 +1723,7 @@ paths: application/json: schema: type: array - items: &196 + items: &199 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1819,7 +1819,7 @@ paths: - installation_id - repository_id examples: - default: &197 + default: &200 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1882,7 +1882,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &114 + schema: &116 title: Validation Error description: Validation Error type: object @@ -1954,7 +1954,7 @@ paths: description: Response content: application/json: - schema: &198 + schema: &201 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2089,7 +2089,7 @@ paths: - request - response examples: - default: &199 + default: &202 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2293,7 +2293,7 @@ paths: parameters: - *17 - *19 - - &78 + - &80 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) @@ -2881,7 +2881,7 @@ paths: suspended_at: suspended_by: headers: - Link: &57 + Link: &59 example: ; rel="next", ; rel="last" schema: @@ -3079,7 +3079,7 @@ paths: - selected repositories: type: array - items: &69 + items: &71 title: Repository description: A repository on GitHub. type: object @@ -3106,7 +3106,7 @@ paths: license: anyOf: - type: 'null' - - &75 + - &77 title: License Simple description: License Simple type: object @@ -5594,7 +5594,7 @@ paths: responses: '202': *37 '422': *7 - '500': &105 + '500': &107 description: Internal Error content: application/json: @@ -7669,6 +7669,148 @@ 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: + - *38 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &43 + 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 + examples: + - 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': *27 + 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: + - *38 + requestBody: + required: true + content: + application/json: + schema: &129 + 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: &44 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *43 + examples: + default: *44 + '400': + description: Invalid input + '403': *27 + '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: + - *38 + - 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': *27 + '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 @@ -7694,8 +7836,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -7703,7 +7845,7 @@ paths: application/json: schema: type: array - items: &45 + items: &47 type: object description: A code security configuration properties: @@ -8101,7 +8243,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &49 + code_scanning_options: &51 type: - object - 'null' @@ -8120,7 +8262,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &48 + code_scanning_default_setup_options: &50 type: - object - 'null' @@ -8247,9 +8389,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *45 + schema: *47 examples: - default: &46 + default: &48 value: id: 1325 target_type: enterprise @@ -8307,7 +8449,7 @@ paths: description: Response content: application/json: - schema: &174 + schema: &177 type: array description: A list of default code security configurations items: @@ -8321,9 +8463,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *45 + configuration: *47 examples: - default: &175 + default: &178 value: - default_for_new_repos: public configuration: @@ -8412,7 +8554,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *38 - - &47 + - &49 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -8424,9 +8566,9 @@ paths: description: Response content: application/json: - schema: *45 + schema: *47 examples: - default: *46 + default: *48 '304': *35 '403': *27 '404': *6 @@ -8451,7 +8593,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *38 - - *47 + - *49 requestBody: required: true content: @@ -8530,8 +8672,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *48 - code_scanning_options: *49 + code_scanning_default_setup_options: *50 + code_scanning_options: *51 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -8627,13 +8769,13 @@ paths: description: Response content: application/json: - schema: *45 + schema: *47 examples: - default: *46 + default: *48 '304': *35 '403': *27 '404': *6 - '409': &50 + '409': &52 description: Conflict content: application/json: @@ -8661,14 +8803,14 @@ paths: url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *38 - - *47 + - *49 responses: - '204': &176 + '204': &179 description: A header with no content is returned. '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -8693,7 +8835,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *38 - - *47 + - *49 requestBody: required: true content: @@ -8720,7 +8862,7 @@ paths: '202': *37 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -8745,7 +8887,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *38 - - *47 + - *49 requestBody: required: true content: @@ -8785,12 +8927,12 @@ paths: - none - private_and_internal - public - configuration: *45 + configuration: *47 examples: default: value: default_for_new_repos: all - configuration: &173 + configuration: &176 value: id: 1325 target_type: organization @@ -8847,7 +8989,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *38 - - *47 + - *49 - 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)." @@ -8856,8 +8998,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -8875,7 +9017,7 @@ paths: application/json: schema: type: array - items: &177 + items: &180 type: object description: Repositories associated with a code security configuration and attachment status @@ -8893,7 +9035,7 @@ paths: - failed - updating - removed_by_enterprise - repository: &56 + repository: &58 title: Simple Repository description: A GitHub repository. type: object @@ -9220,7 +9362,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &178 + repository: &181 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -9314,7 +9456,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *38 - - &181 + - &184 name: state in: query description: |- @@ -9323,7 +9465,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &182 + - &185 name: severity in: query description: |- @@ -9332,7 +9474,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &183 + - &186 name: ecosystem in: query description: |- @@ -9341,14 +9483,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &184 + - &187 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 - - &185 + - &188 name: epss_percentage in: query description: |- @@ -9360,7 +9502,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 - - &461 + - &464 name: has in: query description: |- @@ -9374,7 +9516,7 @@ paths: type: string enum: - patch - - &186 + - &189 name: assignee in: query description: |- @@ -9383,7 +9525,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &187 + - &190 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -9393,7 +9535,7 @@ paths: enum: - development - runtime - - &188 + - &191 name: sort in: query description: |- @@ -9408,9 +9550,9 @@ paths: - updated - epss_percentage default: created - - *51 - - *43 - - *44 + - *53 + - *45 + - *46 - *17 responses: '200': @@ -9419,11 +9561,11 @@ paths: application/json: schema: type: array - items: &189 + items: &192 type: object description: A Dependabot alert. properties: - number: &163 + number: &166 type: integer description: The security alert number. readOnly: true @@ -9441,7 +9583,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &52 + package: &54 type: object description: Details for the vulnerable package. readOnly: true @@ -9489,7 +9631,7 @@ paths: - direct - transitive - - security_advisory: &462 + security_advisory: &465 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9520,13 +9662,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &55 + items: &57 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *52 + package: *54 severity: type: string description: The severity of the vulnerability. @@ -9594,8 +9736,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *53 - epss: *54 + cvss_severities: *55 + epss: *56 cwes: type: array description: Details for the advisory pertaining to Common @@ -9714,30 +9856,30 @@ paths: - updated_at - withdrawn_at version: '2026-03-10' - security_vulnerability: *55 - url: &166 + security_vulnerability: *57 + url: &169 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &167 + html_url: &170 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &164 + created_at: &167 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: &165 + updated_at: &168 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: &169 + dismissed_at: &172 type: - string - 'null' @@ -9768,7 +9910,7 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: &168 + fixed_at: &171 type: - string - 'null' @@ -9776,7 +9918,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &463 + auto_dismissed_at: &466 type: - string - 'null' @@ -9784,7 +9926,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &464 + dismissal_request: &467 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -9828,7 +9970,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *56 + repository: *58 required: - number - state @@ -9847,7 +9989,7 @@ paths: - repository additionalProperties: false examples: - default: &190 + default: &193 value: - number: 2 state: dismissed @@ -10216,7 +10358,7 @@ paths: application/json: schema: type: array - items: &58 + items: &60 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -10294,7 +10436,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -10369,9 +10511,9 @@ paths: description: Response content: application/json: - schema: *58 + schema: *60 examples: - default: &66 + default: &68 value: id: 1 name: Justice League @@ -10400,7 +10542,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *38 - - &59 + - &61 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -10419,7 +10561,7 @@ paths: type: array items: *4 examples: - default: &60 + default: &62 value: - login: octocat id: 1 @@ -10440,7 +10582,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10458,7 +10600,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10489,7 +10631,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10507,7 +10649,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10538,7 +10680,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10556,8 +10698,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *38 - - *59 - - &61 + - *61 + - &63 name: username description: The handle for the GitHub user account. in: path @@ -10571,7 +10713,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &62 + exampleKey1: &64 value: login: octocat id: 1 @@ -10607,8 +10749,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *38 - - *59 - *61 + - *63 responses: '201': description: Successfully added team member @@ -10616,7 +10758,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *62 + exampleKey1: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10634,8 +10776,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *38 - - *59 - *61 + - *63 responses: '204': description: Response @@ -10657,7 +10799,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *38 - - *59 + - *61 - *17 - *19 responses: @@ -10667,7 +10809,7 @@ paths: application/json: schema: type: array - items: &63 + items: &65 title: Organization Simple description: A GitHub organization. type: object @@ -10739,7 +10881,7 @@ paths: - avatar_url - description examples: - default: &64 + default: &66 value: login: github id: 1 @@ -10770,7 +10912,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10798,9 +10940,9 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: &102 + default: &104 value: - login: github id: 1 @@ -10831,7 +10973,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *38 - - *59 + - *61 requestBody: required: true content: @@ -10872,8 +11014,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *38 - - *59 - - &65 + - *61 + - &67 name: org description: The organization name. The name is not case sensitive. in: path @@ -10885,9 +11027,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *63 + schema: *65 examples: - default: *64 + default: *66 '404': description: The team is not assigned to the organization x-github: @@ -10906,16 +11048,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *38 - - *59 - - *65 + - *61 + - *67 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *63 + schema: *65 examples: - default: *64 + default: *66 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10932,8 +11074,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *38 - - *59 - - *65 + - *61 + - *67 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -10957,7 +11099,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *38 - - &67 + - &69 name: team_slug description: The slug of the team name. in: path @@ -10969,11 +11111,11 @@ paths: description: Response content: application/json: - schema: *58 + schema: *60 examples: - default: *66 + default: *68 headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -10991,7 +11133,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *38 - - *67 + - *69 requestBody: required: true content: @@ -11049,11 +11191,11 @@ paths: description: Response content: application/json: - schema: *58 + schema: *60 examples: - default: *66 + default: *68 headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -11074,7 +11216,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *38 - - *67 + - *69 responses: '204': description: Response @@ -11112,7 +11254,7 @@ paths: application/json: schema: type: array - items: &97 + items: &99 title: Event description: Event type: object @@ -11123,7 +11265,7 @@ paths: type: - string - 'null' - actor: &68 + actor: &70 title: Actor description: Actor type: object @@ -11164,7 +11306,7 @@ paths: - id - name - url - org: *68 + org: *70 payload: oneOf: - title: CreateEvent @@ -11211,7 +11353,7 @@ paths: properties: action: type: string - discussion: &713 + discussion: &716 title: Discussion description: A Discussion in a repository. type: object @@ -11508,7 +11650,7 @@ paths: - id labels: type: array - items: &72 + items: &74 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -11591,7 +11733,7 @@ paths: properties: action: type: string - issue: &73 + issue: &75 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -11712,7 +11854,7 @@ paths: milestone: anyOf: - type: 'null' - - &256 + - &259 title: Milestone description: A collection of related issues and pull requests. @@ -11884,7 +12026,7 @@ paths: timeline_url: type: string format: uri - type: &220 + type: &223 title: Issue Type description: The type of issue. type: @@ -11938,12 +12080,12 @@ paths: - node_id - name - description - repository: *69 + repository: *71 performed_via_github_app: anyOf: - type: 'null' - *5 - author_association: &70 + author_association: &72 title: author_association type: string description: How the author is associated with the @@ -11959,7 +12101,7 @@ paths: - OWNER examples: - OWNER - reactions: &71 + reactions: &73 title: Reaction Rollup type: object properties: @@ -11995,7 +12137,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &633 + sub_issues_summary: &636 title: Sub-issues Summary type: object properties: @@ -12019,7 +12161,7 @@ paths: pinned_comment: anyOf: - type: 'null' - - &74 + - &76 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -12070,16 +12212,16 @@ paths: issue_url: type: string format: uri - author_association: *70 + author_association: *72 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *71 + reactions: *73 pin: anyOf: - type: 'null' - - &534 + - &537 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -12106,7 +12248,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &634 + issue_dependencies_summary: &637 title: Issue Dependencies Summary type: object properties: @@ -12125,7 +12267,7 @@ paths: - total_blocking issue_field_values: type: array - items: &519 + items: &522 title: Issue Field Value description: A value assigned to an issue field type: object @@ -12268,10 +12410,10 @@ paths: assignees: type: array items: *4 - label: *72 + label: *74 labels: type: array - items: *72 + items: *74 required: - action - issue @@ -12280,8 +12422,8 @@ paths: properties: action: type: string - issue: *73 - comment: *74 + issue: *75 + comment: *76 required: - action - issue @@ -12462,7 +12604,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 allow_forking: type: boolean is_template: @@ -12553,7 +12695,7 @@ paths: type: string number: type: integer - pull_request: &76 + pull_request: &78 title: Pull Request Minimal type: object properties: @@ -12624,10 +12766,10 @@ paths: assignees: type: array items: *4 - label: *72 + label: *74 labels: type: array - items: *72 + items: *74 required: - action - number @@ -12637,7 +12779,7 @@ paths: properties: action: type: string - pull_request: *76 + pull_request: *78 comment: type: object properties: @@ -12891,7 +13033,7 @@ paths: - pull_request updated_at: type: string - pull_request: *76 + pull_request: *78 required: - action - review @@ -12940,7 +13082,7 @@ paths: updated_at: type: string format: date-time - reactions: *71 + reactions: *73 required: - action - comment @@ -12951,7 +13093,7 @@ paths: type: string release: allOf: - - &566 + - &569 title: Release description: A release. type: object @@ -13033,7 +13175,7 @@ paths: author: *4 assets: type: array - items: &567 + items: &570 title: Release Asset description: Data related to a release. type: object @@ -13108,7 +13250,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *71 + reactions: *73 required: - assets_url - upload_url @@ -13201,7 +13343,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': &106 + '503': &108 description: Service unavailable content: application/json: @@ -13303,7 +13445,7 @@ paths: _links: type: object properties: - timeline: &77 + timeline: &79 title: Link With Type description: Hypermedia Link with Type type: object @@ -13315,17 +13457,17 @@ paths: required: - href - type - user: *77 - security_advisories: *77 - current_user: *77 - current_user_public: *77 - current_user_actor: *77 - current_user_organization: *77 + user: *79 + security_advisories: *79 + current_user: *79 + current_user_public: *79 + current_user_actor: *79 + current_user_organization: *79 current_user_organizations: type: array - items: *77 - repository_discussions: *77 - repository_discussions_category: *77 + items: *79 + repository_discussions: *79 + repository_discussions_category: *79 required: - timeline - user @@ -13387,7 +13529,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *78 + - *80 - *17 - *19 responses: @@ -13397,7 +13539,7 @@ paths: application/json: schema: type: array - items: &79 + items: &81 title: Base Gist description: Base Gist type: object @@ -13523,7 +13665,7 @@ paths: path: "/properties/history" version: '2026-03-10' examples: - default: &80 + default: &82 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -13568,7 +13710,7 @@ paths: site_admin: false truncated: false headers: - Link: *57 + Link: *59 '304': *35 '403': *27 x-github: @@ -13647,7 +13789,7 @@ paths: description: Response content: application/json: - schema: &81 + schema: &83 title: Gist Simple description: Gist Simple type: object @@ -13665,7 +13807,7 @@ paths: url: type: string format: uri - user: &640 + user: &643 title: Public User description: Public User type: object @@ -14047,7 +14189,7 @@ paths: path: "/properties/history" version: '2026-03-10' examples: - default: &82 + default: &84 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -14151,7 +14293,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *78 + - *80 - *17 - *19 responses: @@ -14161,11 +14303,11 @@ paths: application/json: schema: type: array - items: *79 + items: *81 examples: - default: *80 + default: *82 headers: - Link: *57 + Link: *59 '422': *15 '304': *35 '403': *27 @@ -14185,7 +14327,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *78 + - *80 - *17 - *19 responses: @@ -14195,11 +14337,11 @@ paths: application/json: schema: type: array - items: *79 + items: *81 examples: - default: *80 + default: *82 headers: - Link: *57 + Link: *59 '401': *23 '304': *35 '403': *27 @@ -14225,7 +14367,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &83 + - &85 name: gist_id description: The unique identifier of the gist. in: path @@ -14237,10 +14379,10 @@ paths: description: Response content: application/json: - schema: *81 + schema: *83 examples: - default: *82 - '403': &86 + default: *84 + '403': &88 description: Forbidden Gist content: application/json: @@ -14289,7 +14431,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *83 + - *85 requestBody: required: true content: @@ -14353,9 +14495,9 @@ paths: description: Response content: application/json: - schema: *81 + schema: *83 examples: - updateGist: *82 + updateGist: *84 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -14513,7 +14655,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *83 + - *85 responses: '204': description: Response @@ -14542,7 +14684,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *83 + - *85 - *17 - *19 responses: @@ -14552,7 +14694,7 @@ paths: application/json: schema: type: array - items: &84 + items: &86 title: Gist Comment description: A comment made to a gist. type: object @@ -14590,7 +14732,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *70 + author_association: *72 required: - url - id @@ -14630,7 +14772,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -14655,7 +14797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *83 + - *85 requestBody: required: true content: @@ -14681,9 +14823,9 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: &85 + default: &87 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -14741,8 +14883,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *83 - - &87 + - *85 + - &89 name: comment_id description: The unique identifier of the comment. in: path @@ -14755,12 +14897,12 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *85 + default: *87 '304': *35 '404': *6 - '403': *86 + '403': *88 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14782,8 +14924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *83 - - *87 + - *85 + - *89 requestBody: required: true content: @@ -14809,9 +14951,9 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *85 + default: *87 '404': *6 x-github: githubCloudOnly: false @@ -14828,8 +14970,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *83 - - *87 + - *85 + - *89 responses: '204': description: Response @@ -14852,7 +14994,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *83 + - *85 - *17 - *19 responses: @@ -14953,7 +15095,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *83 + - *85 - *17 - *19 responses: @@ -14963,7 +15105,7 @@ paths: application/json: schema: type: array - items: *81 + items: *83 examples: default: value: @@ -15009,7 +15151,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '404': *6 '304': *35 '403': *27 @@ -15028,13 +15170,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *83 + - *85 responses: '201': description: Response content: application/json: - schema: *79 + schema: *81 examples: default: value: @@ -15105,7 +15247,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *83 + - *85 responses: '204': description: Response if gist is starred @@ -15135,7 +15277,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *83 + - *85 responses: '204': description: Response @@ -15157,7 +15299,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *83 + - *85 responses: '204': description: Response @@ -15186,7 +15328,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *83 + - *85 - name: sha in: path required: true @@ -15197,9 +15339,9 @@ paths: description: Response content: application/json: - schema: *81 + schema: *83 examples: - default: *82 + default: *84 '422': *15 '404': *6 '403': *27 @@ -15362,7 +15504,7 @@ paths: type: array items: allOf: - - *69 + - *71 repository_selection: type: string examples: @@ -15486,7 +15628,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *57 + Link: *59 '403': *27 '304': *35 '401': *23 @@ -15570,7 +15712,7 @@ paths: - closed - all default: open - - &223 + - &226 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -15588,8 +15730,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - name: collab in: query required: false @@ -15619,9 +15761,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: &224 + default: &227 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15866,7 +16008,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *57 + Link: *59 '422': *15 '304': *35 '404': *6 @@ -15901,7 +16043,7 @@ paths: application/json: schema: type: array - items: *75 + items: *77 examples: default: value: @@ -16199,7 +16341,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &88 + X-CommonMarker-Version: &90 example: 0.17.4 schema: type: string @@ -16254,7 +16396,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *88 + X-CommonMarker-Version: *90 content: text/html: schema: @@ -16283,7 +16425,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &91 + - &93 name: account_id description: account_id parameter in: path @@ -16295,7 +16437,7 @@ paths: description: Response content: application/json: - schema: &90 + schema: &92 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -16329,7 +16471,7 @@ paths: - 'null' id: type: integer - plan: &89 + plan: &91 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -16432,7 +16574,7 @@ paths: - 'null' updated_at: type: string - plan: *89 + plan: *91 required: - url - id @@ -16440,7 +16582,7 @@ paths: - login - marketplace_purchase examples: - default: &92 + default: &94 value: url: https://api.github.com/orgs/github type: Organization @@ -16525,9 +16667,9 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: - default: &93 + default: &95 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -16545,7 +16687,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *57 + Link: *59 '404': *6 '401': *23 x-github: @@ -16567,14 +16709,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &94 + - &96 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &95 + - &97 name: sort description: The property to sort the results by. in: query @@ -16604,9 +16746,9 @@ paths: application/json: schema: type: array - items: *90 + items: *92 examples: - default: &96 + default: &98 value: - url: https://api.github.com/orgs/github type: Organization @@ -16657,7 +16799,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *57 + Link: *59 '404': *6 '422': *15 '401': *23 @@ -16680,15 +16822,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *91 + - *93 responses: '200': description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *92 + default: *94 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -16720,11 +16862,11 @@ paths: application/json: schema: type: array - items: *89 + items: *91 examples: - default: *93 + default: *95 headers: - Link: *57 + Link: *59 '401': *23 x-github: githubCloudOnly: false @@ -16745,8 +16887,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *94 - - *95 + - *96 + - *97 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -16766,11 +16908,11 @@ paths: application/json: schema: type: array - items: *90 + items: *92 examples: - default: *96 + default: *98 headers: - Link: *57 + Link: *59 '401': *23 x-github: githubCloudOnly: false @@ -17033,14 +17175,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &315 + - &318 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &316 + - &319 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -17057,7 +17199,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -17102,7 +17244,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &319 + '301': &322 description: Moved permanently content: application/json: @@ -17124,7 +17266,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &542 + - &545 name: all description: If `true`, show notifications marked as read. in: query @@ -17132,7 +17274,7 @@ paths: schema: type: boolean default: false - - &543 + - &546 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -17141,8 +17283,8 @@ paths: schema: type: boolean default: false - - *78 - - &544 + - *80 + - &547 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: @@ -17167,14 +17309,14 @@ paths: application/json: schema: type: array - items: &98 + items: &100 title: Thread description: Thread type: object properties: id: type: string - repository: &145 + repository: &148 title: Minimal Repository description: Minimal Repository type: object @@ -17526,7 +17668,7 @@ paths: type: boolean examples: - false - security_and_analysis: &271 + security_and_analysis: &274 type: - object - 'null' @@ -17736,7 +17878,7 @@ paths: - url - subscription_url examples: - default: &545 + default: &548 value: - id: '1' repository: @@ -17818,7 +17960,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -17902,7 +18044,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &99 + - &101 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 @@ -17916,7 +18058,7 @@ paths: description: Response content: application/json: - schema: *98 + schema: *100 examples: default: value: @@ -18018,7 +18160,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *99 + - *101 responses: '205': description: Reset Content @@ -18040,7 +18182,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *99 + - *101 responses: '204': description: No content @@ -18063,13 +18205,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *99 + - *101 responses: '200': description: Response content: application/json: - schema: &100 + schema: &102 title: Thread Subscription description: Thread Subscription type: object @@ -18113,7 +18255,7 @@ paths: - url - subscribed examples: - default: &101 + default: &103 value: subscribed: true ignored: false @@ -18144,7 +18286,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *99 + - *101 requestBody: required: false content: @@ -18165,9 +18307,9 @@ paths: description: Response content: application/json: - schema: *100 + schema: *102 examples: - default: *101 + default: *103 '304': *35 '403': *27 '401': *23 @@ -18190,7 +18332,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *99 + - *101 responses: '204': description: Response @@ -18285,9 +18427,9 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: *102 + default: *104 headers: Link: example: ; rel="next" @@ -18314,13 +18456,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &103 + schema: &105 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -18354,12 +18496,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: *103 + schema: *105 examples: selected_actions: *40 responses: @@ -18388,13 +18530,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &104 + schema: &106 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -18428,12 +18570,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: *104 + schema: *106 examples: selected_actions: *42 responses: @@ -18462,7 +18604,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: - - *65 + - *67 - name: page in: query description: The page number of results to fetch. @@ -18508,7 +18650,7 @@ paths: items: anyOf: - type: 'null' - - *56 + - *58 additionalProperties: false examples: default: @@ -18613,7 +18755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -18679,7 +18821,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *65 + - *67 requestBody: required: true content: @@ -18729,7 +18871,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *65 + - *67 - name: page description: The page number of the results to fetch. in: query @@ -18886,7 +19028,7 @@ paths: total_count: 3 '404': *6 '403': *27 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18907,8 +19049,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *65 - - &107 + - *67 + - &109 name: budget_id description: The ID corresponding to the budget. in: path @@ -19010,8 +19152,8 @@ paths: '400': *14 '404': *6 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19031,8 +19173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *65 - - *107 + - *67 + - *109 requestBody: required: true content: @@ -19224,8 +19366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *65 - - *107 + - *67 + - *109 responses: '200': description: Response when deleting a budget @@ -19251,8 +19393,8 @@ paths: '400': *14 '404': *6 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19272,8 +19414,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *65 - - &108 + - *67 + - &110 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, @@ -19282,7 +19424,7 @@ paths: required: false schema: type: integer - - &110 + - &112 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 @@ -19291,7 +19433,7 @@ paths: required: false schema: type: integer - - &109 + - &111 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 @@ -19306,14 +19448,14 @@ paths: required: false schema: type: string - - &690 + - &693 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &111 + - &113 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -19429,8 +19571,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19450,9 +19592,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *65 - - *108 - - &691 + - *67 + - *110 + - &694 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 @@ -19461,7 +19603,7 @@ paths: required: false schema: type: integer - - *109 + - *111 responses: '200': description: Billing usage report response for an organization @@ -19536,8 +19678,8 @@ paths: repositoryName: github/example '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19560,19 +19702,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *65 - - *108 + - *67 - *110 - - *109 - - &692 + - *112 + - *111 + - &695 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *111 - - &693 + - *113 + - &696 name: sku description: The SKU to query for usage. in: query @@ -19682,8 +19824,8 @@ paths: netAmount: 8.0 '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19709,13 +19851,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &112 + schema: &114 title: Organization Full description: Organization Full type: object @@ -20116,7 +20258,7 @@ paths: path: "/properties/secret_scanning_push_protection_custom_link_enabled" version: '2026-03-10' examples: - default-response: &113 + default-response: &115 value: login: github id: 1 @@ -20222,7 +20364,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *65 + - *67 requestBody: required: false content: @@ -20439,18 +20581,18 @@ paths: description: Response content: application/json: - schema: *112 + schema: *114 examples: - default: *113 + default: *115 '422': description: Validation failed content: application/json: schema: oneOf: - - *114 - - *115 - '409': *50 + - *116 + - *117 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20483,7 +20625,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *65 + - *67 responses: '202': *37 '404': *6 @@ -20514,7 +20656,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -20540,7 +20682,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20561,7 +20703,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: - - *65 + - *67 - *17 - *19 responses: @@ -20579,7 +20721,7 @@ paths: type: integer repository_cache_usages: type: array - items: &326 + items: &329 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -20617,7 +20759,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20637,7 +20779,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -20655,7 +20797,7 @@ paths: type: integer runners: type: array - items: &116 + items: &118 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -20718,7 +20860,7 @@ paths: - size_gb - display_name - source - machine_size_details: &124 + machine_size_details: &126 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -20827,7 +20969,7 @@ paths: - public_ip_enabled - platform examples: - default: &144 + default: &147 value: total_count: 2 runners: @@ -20869,7 +21011,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20887,7 +21029,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -20965,9 +21107,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: &125 + default: &127 value: id: 5 name: My hosted ubuntu runner @@ -21008,7 +21150,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -21024,7 +21166,7 @@ paths: type: integer images: type: array - items: &117 + items: &119 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -21083,7 +21225,7 @@ paths: - latest_version - state examples: - default: &119 + default: &121 value: total_count: 2 image_versions: @@ -21114,8 +21256,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: - - *65 - - &118 + - *67 + - &120 name: image_definition_id description: Image definition ID of custom image in: path @@ -21127,7 +21269,7 @@ paths: description: Response content: application/json: - schema: *117 + schema: *119 examples: default: value: @@ -21157,8 +21299,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *65 - - *118 + - *67 + - *120 responses: '204': description: Response @@ -21181,8 +21323,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: - - *118 - - *65 + - *120 + - *67 responses: '200': description: Response @@ -21198,7 +21340,7 @@ paths: type: integer image_versions: type: array - items: &120 + items: &122 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -21236,7 +21378,7 @@ paths: - created_on - state_details examples: - default: *119 + default: *121 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21256,9 +21398,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: - - *65 - - *118 - - &121 + - *67 + - *120 + - &123 name: version description: Version of a custom image in: path @@ -21271,7 +21413,7 @@ paths: description: Response content: application/json: - schema: *120 + schema: *122 examples: default: value: @@ -21297,9 +21439,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: - - *65 - - *118 - - *121 + - *67 + - *120 + - *123 responses: '204': description: Response @@ -21320,7 +21462,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: - - *65 + - *67 responses: '200': description: Response @@ -21336,7 +21478,7 @@ paths: type: integer images: type: array - items: &122 + items: &124 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -21376,7 +21518,7 @@ paths: - display_name - source examples: - default: &123 + default: &125 value: id: ubuntu-20.04 platform: linux-x64 @@ -21400,7 +21542,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: - - *65 + - *67 responses: '200': description: Response @@ -21416,9 +21558,9 @@ paths: type: integer images: type: array - items: *122 + items: *124 examples: - default: *123 + default: *125 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21435,7 +21577,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: - - *65 + - *67 responses: '200': description: Response @@ -21490,7 +21632,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: - - *65 + - *67 responses: '200': description: Response @@ -21506,7 +21648,7 @@ paths: type: integer machine_specs: type: array - items: *124 + items: *126 examples: default: value: @@ -21531,7 +21673,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: - - *65 + - *67 responses: '200': description: Response @@ -21575,8 +21717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *65 - - &126 + - *67 + - &128 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -21588,11 +21730,11 @@ paths: description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: *125 + default: *127 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21610,8 +21752,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *65 - - *126 + - *67 + - *128 requestBody: required: true content: @@ -21664,9 +21806,9 @@ paths: description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: *125 + default: *127 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21682,21 +21824,126 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *65 - - *126 + - *67 + - *128 responses: '202': description: Response content: application/json: - schema: *116 + schema: *118 examples: - default: *125 + default: *127 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: + - *67 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *43 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *27 + 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: + - *67 + requestBody: + required: true + content: + application/json: + schema: *129 + examples: + default: *44 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *43 + examples: + default: *44 + '400': + description: Invalid input + '403': *27 + '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: + - *67 + - 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': *27 + '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 @@ -21711,13 +21958,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: - - *65 + - *67 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &127 + schema: &130 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -21731,7 +21978,7 @@ paths: required: - include_claim_keys examples: - default: &128 + default: &131 value: include_claim_keys: - repo @@ -21753,20 +22000,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: - - *65 + - *67 requestBody: required: true content: application/json: - schema: *127 + schema: *130 examples: - default: *128 + default: *131 responses: '201': description: Empty response content: application/json: - schema: &154 + schema: &157 title: Empty Object description: An object without any properties. type: object @@ -21796,7 +22043,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -21805,7 +22052,7 @@ paths: schema: type: object properties: - enabled_repositories: &129 + enabled_repositories: &132 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -21818,7 +22065,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: &130 + allowed_actions: &133 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -21826,12 +22073,12 @@ paths: - all - local_only - selected - selected_actions_url: &332 + selected_actions_url: &335 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: &131 + sha_pinning_required: &134 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -21862,7 +22109,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -21873,9 +22120,9 @@ paths: schema: type: object properties: - enabled_repositories: *129 - allowed_actions: *130 - sha_pinning_required: *131 + enabled_repositories: *132 + allowed_actions: *133 + sha_pinning_required: *134 required: - enabled_repositories examples: @@ -21903,13 +22150,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &336 + schema: &339 type: object properties: days: @@ -21946,12 +22193,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: &337 + schema: &340 type: object properties: days: @@ -21968,7 +22215,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -21988,13 +22235,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &132 + schema: &135 type: object properties: approval_policy: @@ -22008,7 +22255,7 @@ paths: required: - approval_policy examples: - default: &338 + default: &341 value: approval_policy: first_time_contributors '404': *6 @@ -22029,7 +22276,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -22039,7 +22286,7 @@ paths: required: true content: application/json: - schema: *132 + schema: *135 examples: default: summary: Set approval policy to first time contributors @@ -22061,13 +22308,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: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &339 + schema: &342 type: object required: - run_workflows_from_fork_pull_requests @@ -22093,7 +22340,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &133 + default: &136 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -22116,12 +22363,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: - - *65 + - *67 requestBody: required: true content: application/json: - schema: &340 + schema: &343 type: object required: - run_workflows_from_fork_pull_requests @@ -22144,7 +22391,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *133 + default: *136 responses: '204': description: Empty response for successful settings update @@ -22174,7 +22421,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: - - *65 + - *67 - *17 - *19 responses: @@ -22192,9 +22439,9 @@ paths: type: number repositories: type: array - items: *69 + items: *71 examples: - default: &137 + default: &140 value: total_count: 1 repositories: @@ -22334,7 +22581,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: - - *65 + - *67 responses: '204': description: Response @@ -22378,8 +22625,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: - - *65 - - &134 + - *67 + - &137 name: repository_id description: The unique identifier of the repository. in: path @@ -22407,8 +22654,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: Response @@ -22431,13 +22678,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &135 + schema: &138 type: object properties: github_owned_allowed: @@ -22459,7 +22706,7 @@ paths: items: type: string examples: - default: &136 + default: &139 value: github_owned_allowed: true verified_allowed: false @@ -22484,7 +22731,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -22492,9 +22739,9 @@ paths: required: false content: application/json: - schema: *135 + schema: *138 examples: - selected_actions: *136 + selected_actions: *139 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22514,7 +22761,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -22562,7 +22809,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -22589,7 +22836,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -22609,7 +22856,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: - - *65 + - *67 - *17 - *19 responses: @@ -22624,9 +22871,9 @@ paths: type: integer repositories: type: array - items: *69 + items: *71 examples: - default: *137 + default: *140 '403': *27 '404': *6 x-github: @@ -22646,7 +22893,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: - - *65 + - *67 requestBody: required: true content: @@ -22694,14 +22941,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -22721,14 +22968,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: No content '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 x-github: enabledForGitHubApps: true @@ -22750,23 +22997,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &341 + schema: &344 type: object properties: - default_workflow_permissions: &138 + default_workflow_permissions: &141 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &139 + can_approve_pull_request_reviews: &142 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -22774,7 +23021,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &140 + default: &143 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -22799,7 +23046,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Success response @@ -22807,13 +23054,13 @@ paths: required: false content: application/json: - schema: &342 + schema: &345 type: object properties: - default_workflow_permissions: *138 - can_approve_pull_request_reviews: *139 + default_workflow_permissions: *141 + can_approve_pull_request_reviews: *142 examples: - default: *140 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22833,7 +23080,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: - - *65 + - *67 - *17 - *19 - name: visible_to_repository @@ -22858,7 +23105,7 @@ paths: type: number runner_groups: type: array - items: &141 + items: &144 type: object properties: id: @@ -22975,7 +23222,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: - - *65 + - *67 requestBody: required: true content: @@ -23048,9 +23295,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: &143 + default: &146 value: id: 2 name: octo-runner-group @@ -23085,8 +23332,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: - - *65 - - &142 + - *67 + - &145 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -23098,7 +23345,7 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: default: value: @@ -23134,8 +23381,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: - - *65 - - *142 + - *67 + - *145 requestBody: required: true content: @@ -23191,9 +23438,9 @@ paths: description: Response content: application/json: - schema: *141 + schema: *144 examples: - default: *143 + default: *146 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -23212,8 +23459,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: - - *65 - - *142 + - *67 + - *145 responses: '204': description: Response @@ -23236,8 +23483,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: - - *65 - - *142 + - *67 + - *145 - *17 - *19 responses: @@ -23255,11 +23502,11 @@ paths: type: number runners: type: array - items: *116 + items: *118 examples: - default: *144 + default: *147 headers: - Link: *57 + Link: *59 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -23279,8 +23526,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: - - *65 - - *142 + - *67 + - *145 - *19 - *17 responses: @@ -23298,9 +23545,9 @@ paths: type: number repositories: type: array - items: *145 + items: *148 examples: - default: &643 + default: &646 value: total_count: 1 repositories: @@ -23552,8 +23799,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: - - *65 - - *142 + - *67 + - *145 requestBody: required: true content: @@ -23597,9 +23844,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: - - *65 - - *142 - - *134 + - *67 + - *145 + - *137 responses: '204': description: Response @@ -23621,9 +23868,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: - - *65 - - *142 - - *134 + - *67 + - *145 + - *137 responses: '204': description: Response @@ -23646,8 +23893,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: - - *65 - - *142 + - *67 + - *145 - *17 - *19 responses: @@ -23665,7 +23912,7 @@ paths: type: number runners: type: array - items: &147 + items: &150 title: Self hosted runners description: A self hosted runner type: object @@ -23699,7 +23946,7 @@ paths: type: boolean labels: type: array - items: &150 + items: &153 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -23729,7 +23976,7 @@ paths: - busy - labels examples: - default: &148 + default: &151 value: total_count: 2 runners: @@ -23769,7 +24016,7 @@ paths: name: no-gpu type: custom headers: - Link: *57 + Link: *59 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -23788,8 +24035,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: - - *65 - - *142 + - *67 + - *145 requestBody: required: true content: @@ -23833,9 +24080,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: - - *65 - - *142 - - &146 + - *67 + - *145 + - &149 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -23863,9 +24110,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: - - *65 - - *142 - - *146 + - *67 + - *145 + - *149 responses: '204': description: Response @@ -23895,7 +24142,7 @@ paths: in: query schema: type: string - - *65 + - *67 - *17 - *19 responses: @@ -23913,11 +24160,11 @@ paths: type: integer runners: type: array - items: *147 + items: *150 examples: - default: *148 + default: *151 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23939,7 +24186,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -23947,7 +24194,7 @@ paths: application/json: schema: type: array - items: &343 + items: &346 title: Runner Application description: Runner Application type: object @@ -23972,7 +24219,7 @@ paths: - download_url - filename examples: - default: &344 + default: &347 value: - os: osx architecture: x64 @@ -24015,7 +24262,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: - - *65 + - *67 requestBody: required: true content: @@ -24058,7 +24305,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &345 + '201': &348 description: Response content: application/json: @@ -24068,7 +24315,7 @@ paths: - runner - encoded_jit_config properties: - runner: *147 + runner: *150 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -24097,7 +24344,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24125,13 +24372,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *65 + - *67 responses: '201': description: Response content: application/json: - schema: &149 + schema: &152 title: Authentication Token description: Authentication Token type: object @@ -24155,7 +24402,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *69 + items: *71 single_file: type: - string @@ -24173,7 +24420,7 @@ paths: - token - expires_at examples: - default: &346 + default: &349 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -24204,15 +24451,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *65 + - *67 responses: '201': description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: &347 + default: &350 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -24237,16 +24484,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: - - *65 - - *146 + - *67 + - *149 responses: '200': description: Response content: application/json: - schema: *147 + schema: *150 examples: - default: &348 + default: &351 value: id: 23 name: MBP @@ -24287,8 +24534,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: - - *65 - - *146 + - *67 + - *149 responses: '204': description: Response @@ -24314,10 +24561,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: - - *65 - - *146 + - *67 + - *149 responses: - '200': &151 + '200': &154 description: Response content: application/json: @@ -24331,7 +24578,7 @@ paths: type: integer labels: type: array - items: *150 + items: *153 examples: default: value: @@ -24370,8 +24617,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: - - *65 - - *146 + - *67 + - *149 requestBody: required: true content: @@ -24395,7 +24642,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -24419,8 +24666,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: - - *65 - - *146 + - *67 + - *149 requestBody: required: true content: @@ -24445,7 +24692,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -24469,10 +24716,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: - - *65 - - *146 + - *67 + - *149 responses: - '200': &349 + '200': &352 description: Response content: application/json: @@ -24486,7 +24733,7 @@ paths: type: integer labels: type: array - items: *150 + items: *153 examples: default: value: @@ -24527,9 +24774,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: - - *65 - - *146 - - &350 + - *67 + - *149 + - &353 name: name description: The name of a self-hosted runner's custom label. in: path @@ -24537,7 +24784,7 @@ paths: schema: type: string responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -24562,7 +24809,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *65 + - *67 - *17 - *19 responses: @@ -24580,7 +24827,7 @@ paths: type: integer secrets: type: array - items: &152 + items: &155 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -24632,7 +24879,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24655,13 +24902,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &362 + schema: &365 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -24696,7 +24943,7 @@ paths: - key_id - key examples: - default: &363 + default: &366 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24721,8 +24968,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *65 - - &153 + - *67 + - &156 name: secret_name description: The name of the secret. in: path @@ -24734,7 +24981,7 @@ paths: description: Response content: application/json: - schema: *152 + schema: *155 examples: default: value: @@ -24764,8 +25011,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -24822,7 +25069,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -24848,8 +25095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -24875,8 +25122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - *19 - *17 responses: @@ -24894,9 +25141,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: &157 + default: &160 value: total_count: 1 repositories: @@ -24988,8 +25235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -25041,8 +25288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -25075,8 +25322,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -25108,8 +25355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *65 - - &331 + - *67 + - &334 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)." @@ -25133,7 +25380,7 @@ paths: type: integer variables: type: array - items: &155 + items: &158 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -25202,7 +25449,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25223,7 +25470,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *65 + - *67 requestBody: required: true content: @@ -25271,7 +25518,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -25296,8 +25543,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *65 - - &156 + - *67 + - &159 name: name description: The name of the variable. in: path @@ -25309,7 +25556,7 @@ paths: description: Response content: application/json: - schema: *155 + schema: *158 examples: default: value: @@ -25339,8 +25586,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 requestBody: required: true content: @@ -25402,8 +25649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 responses: '204': description: Response @@ -25429,8 +25676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 - *19 - *17 responses: @@ -25448,9 +25695,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 '409': description: Response when the visibility of the variable is not set to `selected` @@ -25476,8 +25723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 requestBody: required: true content: @@ -25526,8 +25773,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 - name: repository_id in: path required: true @@ -25561,8 +25808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *65 - - *156 + - *67 + - *159 - name: repository_id in: path required: true @@ -25603,7 +25850,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *65 + - *67 requestBody: required: true content: @@ -25722,7 +25969,7 @@ paths: type: integer deployment_records: type: array - items: &158 + items: &161 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -25767,7 +26014,7 @@ paths: description: The ID of the provenance attestation associated with the deployment record. examples: - default: &159 + default: &162 value: total_count: 1 deployment_records: @@ -25802,7 +26049,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *65 + - *67 - name: cluster in: path description: The cluster name. @@ -25940,9 +26187,9 @@ paths: type: integer deployment_records: type: array - items: *158 + items: *161 examples: - default: *159 + default: *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25962,7 +26209,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *65 + - *67 requestBody: required: true content: @@ -26126,7 +26373,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *65 + - *67 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -26152,9 +26399,9 @@ paths: - 3 deployment_records: type: array - items: *158 + items: *161 examples: - default: *159 + default: *162 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26174,7 +26421,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *65 + - *67 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -26258,9 +26505,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *43 - - *44 - - *65 + - *45 + - *46 + - *67 requestBody: required: true content: @@ -26284,12 +26531,12 @@ paths: required: - subject_digests examples: - default: &672 + default: &675 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &673 + withPredicateType: &676 value: subject_digests: - sha256:abc123 @@ -26348,7 +26595,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &674 + default: &677 value: attestations_subject_digests: - sha256:abc: @@ -26472,7 +26719,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *65 + - *67 requestBody: required: true content: @@ -26537,7 +26784,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *65 + - *67 - name: subject_digest description: Subject Digest in: path @@ -26570,9 +26817,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *43 - - *44 - - *65 + - *45 + - *46 + - *67 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -26620,7 +26867,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *65 + - *67 - name: attestation_id description: Attestation ID in: path @@ -26656,9 +26903,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations parameters: - *17 - - *43 - - *44 - - *65 + - *45 + - *46 + - *67 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -26714,7 +26961,7 @@ paths: initiator: type: string examples: - default: &376 + default: &379 value: attestations: - bundle: @@ -26835,7 +27082,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -26847,7 +27094,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26866,8 +27113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: If the user is blocked @@ -26892,8 +27139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -26913,8 +27160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -26939,15 +27186,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *65 + - *67 - *19 - *17 - - *51 + - *53 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &160 + schema: &163 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -26973,7 +27220,7 @@ paths: application/json: schema: type: array - items: &161 + items: &164 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -27004,7 +27251,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &180 + items: &183 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -27081,7 +27328,7 @@ paths: parent: anyOf: - type: 'null' - - &235 + - &238 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -27217,7 +27464,7 @@ paths: - string - 'null' format: date-time - state: *160 + state: *163 contact_link: description: The contact link of the campaign. type: @@ -27313,9 +27560,9 @@ paths: closed_at: state: open headers: - Link: *57 + Link: *59 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27339,7 +27586,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -27440,9 +27687,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *164 examples: - default: &162 + default: &165 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -27491,7 +27738,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27513,7 +27760,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *65 + - *67 - name: campaign_number description: The campaign number. in: path @@ -27525,16 +27772,16 @@ paths: description: Response content: application/json: - schema: *161 + schema: *164 examples: - default: *162 + default: *165 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27555,7 +27802,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *65 + - *67 - name: campaign_number description: The campaign number. in: path @@ -27605,7 +27852,7 @@ paths: - string - 'null' format: uri - state: *160 + state: *163 examples: default: value: @@ -27615,9 +27862,9 @@ paths: description: Response content: application/json: - schema: *161 + schema: *164 examples: - default: *162 + default: *165 '400': description: Bad Request content: @@ -27629,7 +27876,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27650,7 +27897,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *65 + - *67 - name: campaign_number description: The campaign number. in: path @@ -27661,7 +27908,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27683,18 +27930,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *65 - - &400 + - *67 + - &403 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: &170 + schema: &173 type: string description: The name of the tool used to generate the code scanning analysis. - - &401 + - &404 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 @@ -27702,23 +27949,23 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &171 + schema: &174 type: - string - 'null' description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *43 - - *44 + - *45 + - *46 - *19 - *17 - - *51 + - *53 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &403 + schema: &406 type: string description: State of a code scanning alert. enum: @@ -27741,7 +27988,7 @@ paths: be returned. in: query required: false - schema: &404 + schema: &407 type: string description: Severity of a code scanning alert. enum: @@ -27770,18 +28017,18 @@ paths: items: type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 - instances_url: &405 + number: *166 + created_at: *167 + updated_at: *168 + url: *169 + html_url: *170 + instances_url: &408 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &172 + state: &175 type: - string - 'null' @@ -27791,13 +28038,13 @@ paths: - dismissed - fixed - - fixed_at: *168 + fixed_at: *171 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 - dismissed_reason: &406 + dismissed_at: *172 + dismissed_reason: &409 type: - string - 'null' @@ -27808,14 +28055,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &407 + dismissed_comment: &410 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &408 + rule: &411 type: object properties: id: @@ -27876,43 +28123,43 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &409 + tool: &412 type: object properties: - name: *170 + name: *173 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *171 - most_recent_instance: &410 + guid: *174 + most_recent_instance: &413 type: object properties: - ref: &402 + ref: &405 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &420 + analysis_key: &423 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: &421 + environment: &424 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: &422 + category: &425 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: *172 + state: *175 commit_sha: type: string message: @@ -27920,7 +28167,7 @@ paths: properties: text: type: string - location: &423 + location: &426 type: object description: Describe a region within a file for the alert. properties: @@ -27941,7 +28188,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: &424 + items: &427 type: - string - 'null' @@ -27953,7 +28200,7 @@ paths: - test - library - - repository: *56 + repository: *58 dismissal_approved_by: anyOf: - type: 'null' @@ -28205,9 +28452,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: *57 + Link: *59 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28229,7 +28476,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *65 + - *67 - name: target_type in: query description: The target type of the code security configuration @@ -28248,8 +28495,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -28257,7 +28504,7 @@ paths: application/json: schema: type: array - items: *45 + items: *47 examples: default: value: @@ -28340,7 +28587,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *65 + - *67 requestBody: required: true content: @@ -28427,7 +28674,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *49 + code_scanning_options: *51 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -28436,7 +28683,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *48 + code_scanning_default_setup_options: *50 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -28575,9 +28822,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *45 + schema: *47 examples: - default: *173 + default: *176 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28599,15 +28846,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *174 + schema: *177 examples: - default: *175 + default: *178 '304': *35 '403': *27 '404': *6 @@ -28633,7 +28880,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *65 + - *67 requestBody: required: true content: @@ -28659,11 +28906,11 @@ paths: - 32 - 91 responses: - '204': *176 + '204': *179 '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28685,16 +28932,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 responses: '200': description: Response content: application/json: - schema: *45 + schema: *47 examples: - default: *173 + default: *176 '304': *35 '403': *27 '404': *6 @@ -28718,8 +28965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 requestBody: required: true content: @@ -28806,8 +29053,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *48 - code_scanning_options: *49 + code_scanning_default_setup_options: *50 + code_scanning_options: *51 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -28932,7 +29179,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *45 + schema: *47 examples: default: value: @@ -28991,14 +29238,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 responses: - '204': *176 + '204': *179 '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29022,8 +29269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *65 - - *47 + - *67 + - *49 requestBody: required: true content: @@ -29086,8 +29333,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: - - *65 - - *47 + - *67 + - *49 requestBody: required: true content: @@ -29127,12 +29374,12 @@ paths: - none - private_and_internal - public - configuration: *45 + configuration: *47 examples: default: value: default_for_new_repos: all - configuration: *173 + configuration: *176 '403': *27 '404': *6 x-github: @@ -29156,8 +29403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *65 - - *47 + - *67 + - *49 - 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)." @@ -29166,8 +29413,8 @@ paths: schema: type: integer default: 30 - - *43 - - *44 + - *45 + - *46 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -29185,13 +29432,13 @@ paths: application/json: schema: type: array - items: *177 + items: *180 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *178 + repository: *181 '403': *27 '404': *6 x-github: @@ -29215,7 +29462,7 @@ paths: parameters: - *17 - *19 - - *65 + - *67 responses: '200': description: Response @@ -29231,7 +29478,7 @@ paths: type: integer codespaces: type: array - items: &225 + items: &228 type: object title: Codespace description: A codespace. @@ -29262,11 +29509,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *145 + repository: *148 machine: anyOf: - type: 'null' - - &436 + - &439 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -29553,7 +29800,7 @@ paths: - pulls_url - recent_folders examples: - default: &226 + default: &229 value: total_count: 3 codespaces: @@ -29963,7 +30210,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -29985,7 +30232,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *65 + - *67 deprecated: true requestBody: required: true @@ -30029,7 +30276,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -30052,7 +30299,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *65 + - *67 deprecated: true requestBody: required: true @@ -30084,7 +30331,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -30107,7 +30354,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *65 + - *67 requestBody: required: true content: @@ -30138,7 +30385,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -30159,7 +30406,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *65 + - *67 - *17 - *19 responses: @@ -30177,7 +30424,7 @@ paths: type: integer secrets: type: array - items: &179 + items: &182 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -30218,7 +30465,7 @@ paths: - updated_at - visibility examples: - default: &437 + default: &440 value: total_count: 2 secrets: @@ -30231,7 +30478,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -30250,13 +30497,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &438 + schema: &441 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -30291,7 +30538,7 @@ paths: - key_id - key examples: - default: &439 + default: &442 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -30314,23 +30561,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '200': description: Response content: application/json: - schema: *179 + schema: *182 examples: - default: &441 + default: &444 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -30350,8 +30597,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -30406,7 +30653,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -30432,8 +30679,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -30458,8 +30705,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - *19 - *17 responses: @@ -30477,9 +30724,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 '404': *6 x-github: githubCloudOnly: false @@ -30501,8 +30748,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -30552,8 +30799,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -30586,8 +30833,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -30626,7 +30873,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: - - *65 + - *67 responses: '200': description: OK @@ -30735,7 +30982,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30767,7 +31014,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: - - *65 + - *67 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -30790,7 +31037,7 @@ paths: currently being billed. seats: type: array - items: &228 + items: &231 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -30803,13 +31050,13 @@ paths: organization: anyOf: - type: 'null' - - *63 + - *65 assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *180 - - *58 + - *183 + - *60 type: - 'null' - object @@ -30939,8 +31186,8 @@ paths: type: User site_admin: false headers: - Link: *57 - '500': *105 + Link: *59 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -30973,7 +31220,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: - - *65 + - *67 requestBody: content: application/json: @@ -31015,7 +31262,7 @@ paths: default: value: seats_created: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -31051,7 +31298,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: - - *65 + - *67 requestBody: content: application/json: @@ -31093,7 +31340,7 @@ paths: default: value: seats_cancelled: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -31131,7 +31378,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: - - *65 + - *67 requestBody: content: application/json: @@ -31172,7 +31419,7 @@ paths: default: value: seats_created: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -31208,7 +31455,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: - - *65 + - *67 requestBody: content: application/json: @@ -31250,7 +31497,7 @@ paths: default: value: seats_cancelled: 5 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -31290,7 +31537,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: - - *65 + - *67 responses: '200': description: OK @@ -31310,7 +31557,7 @@ paths: value: octo-repo: - "/src/some-dir/kernel.rs" - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -31343,7 +31590,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: - - *65 + - *67 requestBody: description: The content exclusion rules to set required: true @@ -31395,7 +31642,7 @@ paths: default: value: message: Content exclusion rules updated successfully. - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -31434,7 +31681,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *65 + - *67 - 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`). @@ -31466,7 +31713,7 @@ paths: application/json: schema: type: array - items: &308 + items: &311 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -31781,7 +32028,7 @@ paths: - date additionalProperties: true examples: - default: &309 + default: &312 value: - date: '2024-06-24' total_active_users: 24 @@ -31880,10 +32127,10 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *105 + '500': *107 '403': *27 '404': *6 - '422': &310 + '422': &313 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -31910,12 +32157,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *65 - - *181 - - *182 - - *183 + - *67 - *184 - *185 + - *186 + - *187 + - *188 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -31945,7 +32192,7 @@ paths: enum: - patch - deployment - - *186 + - *189 - name: runtime_risk in: query description: |- @@ -31954,11 +32201,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *187 - - *188 - - *51 - - *43 - - *44 + - *190 + - *191 + - *53 + - *45 + - *46 - *17 responses: '200': @@ -31967,9 +32214,9 @@ paths: application/json: schema: type: array - items: *189 + items: *192 examples: - default: *190 + default: *193 '304': *35 '400': *14 '403': *27 @@ -31995,7 +32242,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *65 + - *67 - *17 - *19 responses: @@ -32013,7 +32260,7 @@ paths: type: integer secrets: type: array - items: &191 + items: &194 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -32065,7 +32312,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32086,13 +32333,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: &467 + schema: &470 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -32111,7 +32358,7 @@ paths: - key_id - key examples: - default: &468 + default: &471 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32134,14 +32381,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '200': description: Response content: application/json: - schema: *191 + schema: *194 examples: default: value: @@ -32169,8 +32416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -32227,7 +32474,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -32259,8 +32506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -32284,8 +32531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - *19 - *17 responses: @@ -32303,9 +32550,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32326,8 +32573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -32377,8 +32624,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -32409,8 +32656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *65 - - *153 + - *67 + - *156 - name: repository_id in: path required: true @@ -32440,7 +32687,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: - - *65 + - *67 responses: '200': description: Response @@ -32448,7 +32695,7 @@ paths: application/json: schema: type: array - items: &237 + items: &240 title: Package description: A software package type: object @@ -32501,7 +32748,7 @@ paths: repository: anyOf: - type: 'null' - - *145 + - *148 created_at: type: string format: date-time @@ -32519,7 +32766,7 @@ paths: - created_at - updated_at examples: - default: &238 + default: &241 value: - id: 197 name: hello_docker @@ -32597,7 +32844,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *65 + - *67 - *17 - *19 responses: @@ -32607,7 +32854,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: 200-response: value: @@ -32679,7 +32926,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *65 + - *67 - *17 - *19 responses: @@ -32689,7 +32936,7 @@ paths: application/json: schema: type: array - items: &214 + items: &217 title: Organization Invitation description: Organization Invitation type: object @@ -32743,7 +32990,7 @@ paths: - invitation_teams_url - node_id examples: - default: &215 + default: &218 value: - id: 1 login: monalisa @@ -32776,7 +33023,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -32800,7 +33047,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *65 + - *67 - *17 - *19 responses: @@ -32810,7 +33057,7 @@ paths: application/json: schema: type: array - items: &192 + items: &195 title: Org Hook description: Org Hook type: object @@ -32910,7 +33157,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -32933,7 +33180,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *65 + - *67 requestBody: required: true content: @@ -32995,9 +33242,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: &193 + default: &196 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -33044,8 +33291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *65 - - &194 + - *67 + - &197 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. @@ -33058,9 +33305,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: - default: *193 + default: *196 '404': *6 x-github: githubCloudOnly: false @@ -33087,8 +33334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 requestBody: required: false content: @@ -33134,7 +33381,7 @@ paths: description: Response content: application/json: - schema: *192 + schema: *195 examples: default: value: @@ -33175,8 +33422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 responses: '204': description: Response @@ -33203,8 +33450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *65 - - *194 + - *67 + - *197 responses: '200': description: Response @@ -33234,8 +33481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *65 - - *194 + - *67 + - *197 requestBody: required: false content: @@ -33285,10 +33532,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 - *17 - - *195 + - *198 responses: '200': description: Response @@ -33296,9 +33543,9 @@ paths: application/json: schema: type: array - items: *196 + items: *199 examples: - default: *197 + default: *200 '400': *14 '422': *15 x-github: @@ -33323,17 +33570,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 - *16 responses: '200': description: Response content: application/json: - schema: *198 + schema: *201 examples: - default: *199 + default: *202 '400': *14 '422': *15 x-github: @@ -33358,8 +33605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 - *16 responses: '202': *37 @@ -33388,8 +33635,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *65 - - *194 + - *67 + - *197 responses: '204': description: Response @@ -33411,8 +33658,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *65 - - &204 + - *67 + - &207 name: actor_type in: path description: The type of the actor @@ -33425,14 +33672,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &205 + - &208 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &200 + - &203 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`.' @@ -33440,7 +33687,7 @@ paths: required: true schema: type: string - - &201 + - &204 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) @@ -33451,7 +33698,7 @@ paths: type: string - *19 - *17 - - *51 + - *53 - name: sort description: The property to sort the results by. in: query @@ -33534,13 +33781,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *65 - - *200 - - *201 + - *67 + - *203 + - *204 - *19 - *17 - - *51 - - &210 + - *53 + - &213 name: sort description: The property to sort the results by. in: query @@ -33618,15 +33865,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *65 - - *200 - - *201 + - *67 + - *203 + - *204 responses: '200': description: Response content: application/json: - schema: &202 + schema: &205 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -33642,7 +33889,7 @@ paths: type: integer format: int64 examples: - default: &203 + default: &206 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -33662,24 +33909,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *65 - - &206 + - *67 + - &209 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *200 - - *201 + - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *202 + schema: *205 examples: - default: *203 + default: *206 x-github: enabledForGitHubApps: true category: orgs @@ -33697,19 +33944,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *65 - - *200 - - *201 + - *67 + - *203 - *204 - - *205 + - *207 + - *208 responses: '200': description: Response content: application/json: - schema: *202 + schema: *205 examples: - default: *203 + default: *206 x-github: enabledForGitHubApps: true category: orgs @@ -33726,10 +33973,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *65 - - *200 - - *201 - - &207 + - *67 + - *203 + - *204 + - &210 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -33742,7 +33989,7 @@ paths: description: Response content: application/json: - schema: &208 + schema: &211 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -33758,7 +34005,7 @@ paths: type: integer format: int64 examples: - default: &209 + default: &212 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -33794,19 +34041,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *65 - - *206 - - *200 - - *201 - - *207 + - *67 + - *209 + - *203 + - *204 + - *210 responses: '200': description: Response content: application/json: - schema: *208 + schema: *211 examples: - default: *209 + default: *212 x-github: enabledForGitHubApps: true category: orgs @@ -33823,20 +34070,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *65 - - *204 - - *205 - - *200 - - *201 + - *67 - *207 + - *208 + - *203 + - *204 + - *210 responses: '200': description: Response content: application/json: - schema: *208 + schema: *211 examples: - default: *209 + default: *212 x-github: enabledForGitHubApps: true category: orgs @@ -33853,14 +34100,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *65 - - *206 - - *200 - - *201 + - *67 + - *209 + - *203 + - *204 - *19 - *17 - - *51 - - *210 + - *53 + - *213 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -33936,7 +34183,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *65 + - *67 responses: '200': description: Response @@ -33944,7 +34191,7 @@ paths: application/json: schema: *20 examples: - default: &506 + default: &509 value: id: 1 account: @@ -34013,7 +34260,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -34083,7 +34330,7 @@ paths: suspended_at: suspended_by: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34102,7 +34349,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -34110,12 +34357,12 @@ paths: application/json: schema: anyOf: - - &212 + - &215 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &211 + limit: &214 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -34143,7 +34390,7 @@ paths: properties: {} additionalProperties: false examples: - default: &213 + default: &216 value: limit: collaborators_only origin: organization @@ -34167,18 +34414,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: application/json: - schema: &507 + schema: &510 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *211 + limit: *214 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -34203,9 +34450,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *215 examples: - default: *213 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -34223,7 +34470,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -34247,7 +34494,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *65 + - *67 - *17 - *19 - name: role @@ -34281,11 +34528,11 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -34306,7 +34553,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *65 + - *67 requestBody: required: false content: @@ -34360,7 +34607,7 @@ paths: description: Response content: application/json: - schema: *214 + schema: *217 examples: default: value: @@ -34414,8 +34661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *65 - - &216 + - *67 + - &219 name: invitation_id description: The unique identifier of the invitation. in: path @@ -34445,8 +34692,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *65 - - *216 + - *67 + - *219 - *17 - *19 responses: @@ -34456,9 +34703,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: &236 + default: &239 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -34474,7 +34721,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -34493,7 +34740,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -34501,7 +34748,7 @@ paths: application/json: schema: type: array - items: &217 + items: &220 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -34651,7 +34898,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -34744,9 +34991,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *220 examples: - default: &218 + default: &221 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -34801,8 +35048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *65 - - &219 + - *67 + - &222 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -34903,9 +35150,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *220 examples: - default: *218 + default: *221 '404': *6 '422': *7 x-github: @@ -34929,10 +35176,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *65 - - *219 + - *67 + - *222 responses: - '204': *176 + '204': *179 '404': *6 '422': *7 x-github: @@ -34952,7 +35199,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -34960,7 +35207,7 @@ paths: application/json: schema: type: array - items: *220 + items: *223 examples: default: value: @@ -34998,7 +35245,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -35048,9 +35295,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: &221 + default: &224 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -35082,8 +35329,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *65 - - &222 + - *67 + - &225 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -35139,9 +35386,9 @@ paths: description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 '404': *6 '422': *7 x-github: @@ -35165,8 +35412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *65 - - *222 + - *67 + - *225 responses: '204': description: Response @@ -35199,7 +35446,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *65 + - *67 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -35229,7 +35476,7 @@ paths: - closed - all default: open - - *223 + - *226 - name: type description: Can be the name of an issue type. in: query @@ -35247,8 +35494,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - *17 - *19 responses: @@ -35258,11 +35505,11 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *224 + default: *227 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -35282,7 +35529,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *65 + - *67 - 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) @@ -35320,9 +35567,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -35340,8 +35587,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response if requester is an organization member and user is @@ -35375,8 +35622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -35408,8 +35655,8 @@ paths: parameters: - *17 - *19 - - *65 - - *61 + - *67 + - *63 responses: '200': description: Response @@ -35425,11 +35672,11 @@ paths: type: integer codespaces: type: array - items: *225 + items: *228 examples: - default: *226 + default: *229 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -35452,9 +35699,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *65 - - *61 - - &227 + - *67 + - *63 + - &230 name: codespace_name in: path required: true @@ -35464,7 +35711,7 @@ paths: responses: '202': *37 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -35487,17 +35734,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *65 - - *61 - - *227 + - *67 + - *63 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: &435 + default: &438 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -35639,7 +35886,7 @@ paths: recent_folders: [] template: '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -35670,14 +35917,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: - - *65 - - *61 + - *67 + - *63 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *228 + schema: *231 examples: default: value: @@ -35721,7 +35968,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -35746,14 +35993,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '200': description: Response content: application/json: - schema: &229 + schema: &232 title: Org Membership description: Org Membership type: object @@ -35802,7 +36049,7 @@ paths: format: uri examples: - https://api.github.com/orgs/octocat - organization: *63 + organization: *65 user: anyOf: - type: 'null' @@ -35822,7 +36069,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &230 + response-if-user-has-an-active-admin-membership-with-organization: &233 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -35894,8 +36141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 requestBody: required: false content: @@ -35923,9 +36170,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - response-if-user-already-had-membership-with-organization: *230 + response-if-user-already-had-membership-with-organization: *233 '422': *15 '403': *27 x-github: @@ -35955,8 +36202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -35981,7 +36228,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *65 + - *67 - *17 - *19 - name: exclude @@ -36003,7 +36250,7 @@ paths: application/json: schema: type: array - items: &231 + items: &234 title: Migration description: A migration. type: object @@ -36045,7 +36292,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *69 + items: *71 url: type: string format: uri @@ -36101,7 +36348,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *56 + items: *58 version: '2026-03-10' examples: default: @@ -36255,7 +36502,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -36271,7 +36518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *65 + - *67 requestBody: required: true content: @@ -36352,7 +36599,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -36530,8 +36777,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *65 - - &232 + - *67 + - &235 name: migration_id description: The unique identifier of the migration. in: path @@ -36559,7 +36806,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -36728,8 +36975,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *65 - - *232 + - *67 + - *235 responses: '302': description: Response @@ -36750,8 +36997,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *65 - - *232 + - *67 + - *235 responses: '204': description: Response @@ -36774,9 +37021,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *65 - - *232 - - &655 + - *67 + - *235 + - &658 name: repo_name description: repo_name parameter in: path @@ -36803,8 +37050,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *65 - - *232 + - *67 + - *235 - *17 - *19 responses: @@ -36814,9 +37061,9 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: &243 + default: &246 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -36929,7 +37176,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -36944,7 +37191,7 @@ paths: content: application/json: schema: - items: *56 + items: *58 version: '2026-03-10' - changeset: restrict_repo_fields_in_migration_resource patch: @@ -36973,7 +37220,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response - list of organization roles @@ -36989,7 +37236,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &234 + items: &237 title: Organization Role description: Organization roles type: object @@ -37138,8 +37385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response @@ -37164,9 +37411,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *65 - *67 - - &233 + - *69 + - &236 name: role_id description: The unique identifier of the role. in: path @@ -37201,9 +37448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *65 - *67 - - *233 + - *69 + - *236 responses: '204': description: Response @@ -37228,8 +37475,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -37254,9 +37501,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *65 - - *61 - - *233 + - *67 + - *63 + - *236 responses: '204': description: Response @@ -37286,9 +37533,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *65 - - *61 - - *233 + - *67 + - *63 + - *236 responses: '204': description: Response @@ -37316,14 +37563,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *65 - - *233 + - *67 + - *236 responses: '200': description: Response content: application/json: - schema: *234 + schema: *237 examples: default: value: @@ -37373,8 +37620,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: - - *65 - - *233 + - *67 + - *236 - *17 - *19 responses: @@ -37453,7 +37700,7 @@ paths: parent: anyOf: - type: 'null' - - *235 + - *238 type: description: The ownership type of the team type: string @@ -37486,9 +37733,9 @@ paths: - type - parent examples: - default: *236 + default: *239 headers: - Link: *57 + Link: *59 '404': description: Response if the organization or role does not exist. '422': @@ -37515,8 +37762,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: - - *65 - - *233 + - *67 + - *236 - *17 - *19 responses: @@ -37545,7 +37792,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *235 + items: *238 name: type: - string @@ -37662,9 +37909,9 @@ paths: - type - url examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '404': description: Response if the organization or role does not exist. '422': @@ -37686,7 +37933,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *65 + - *67 - 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) @@ -37713,9 +37960,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37738,8 +37985,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *65 - - *61 + - *67 + - *63 requestBody: required: false content: @@ -37796,8 +38043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -37854,8 +38101,8 @@ paths: - docker - nuget - container - - *65 - - &656 + - *67 + - &659 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -37891,12 +38138,12 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '403': *27 '401': *23 - '400': &658 + '400': &661 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -37918,7 +38165,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &239 + - &242 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 @@ -37936,20 +38183,20 @@ paths: - docker - nuget - container - - &240 + - &243 name: package_name description: The name of the package. in: path required: true schema: type: string - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: default: value: @@ -38001,9 +38248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *239 - - *240 - - *65 + - *242 + - *243 + - *67 responses: '204': description: Response @@ -38035,9 +38282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *239 - - *240 - - *65 + - *242 + - *243 + - *67 - name: token description: package token schema: @@ -38069,9 +38316,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: - - *239 - - *240 - - *65 + - *242 + - *243 + - *67 - *19 - *17 - name: state @@ -38091,7 +38338,7 @@ paths: application/json: schema: type: array - items: &241 + items: &244 title: Package Version description: A version of a software package type: object @@ -38226,10 +38473,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *239 - - *240 - - *65 - - &242 + - *242 + - *243 + - *67 + - &245 name: package_version_id description: Unique identifier of the package version. in: path @@ -38241,7 +38488,7 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -38277,10 +38524,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *239 - - *240 - - *65 - *242 + - *243 + - *67 + - *245 responses: '204': description: Response @@ -38312,10 +38559,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *239 - - *240 - - *65 - *242 + - *243 + - *67 + - *245 responses: '204': description: Response @@ -38342,10 +38589,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: - - *65 + - *67 - *17 - *19 - - &244 + - &247 name: sort description: The property by which to sort the results. in: query @@ -38355,8 +38602,8 @@ paths: enum: - created_at default: created_at - - *51 - - &245 + - *53 + - &248 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -38368,7 +38615,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &246 + - &249 name: repository description: The name of the repository to use to filter the results. in: query @@ -38377,7 +38624,7 @@ paths: type: string examples: - Hello-World - - &247 + - &250 name: permission description: The permission to use to filter the results. in: query @@ -38386,7 +38633,7 @@ paths: type: string examples: - issues_read - - &248 + - &251 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) @@ -38396,7 +38643,7 @@ paths: schema: type: string format: date-time - - &249 + - &252 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) @@ -38406,7 +38653,7 @@ paths: schema: type: string format: date-time - - &250 + - &253 name: token_id description: The ID of the token in: query @@ -38419,7 +38666,7 @@ paths: examples: - token_id[]=1,token_id[]=2 responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 @@ -38554,7 +38801,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38574,7 +38821,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: - - *65 + - *67 requestBody: required: true content: @@ -38616,7 +38863,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 @@ -38641,7 +38888,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: - - *65 + - *67 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -38678,11 +38925,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38703,7 +38950,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: - - *65 + - *67 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -38714,7 +38961,7 @@ paths: - *17 - *19 responses: - '500': *105 + '500': *107 '404': *6 '403': *27 '200': @@ -38723,11 +38970,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38748,19 +38995,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: - - *65 + - *67 - *17 - *19 - - *244 - - *51 - - *245 - - *246 - *247 + - *53 - *248 - *249 - *250 + - *251 + - *252 + - *253 responses: - '500': *105 + '500': *107 '422': *15 '404': *6 '403': *27 @@ -38889,7 +39136,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38909,7 +39156,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: - - *65 + - *67 requestBody: required: true content: @@ -38944,7 +39191,7 @@ paths: - 1296269 - 1296280 responses: - '500': *105 + '500': *107 '404': *6 '202': *37 '403': *27 @@ -38969,7 +39216,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: - - *65 + - *67 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -38997,9 +39244,9 @@ paths: value: action: revoke responses: - '500': *105 + '500': *107 '404': *6 - '204': *176 + '204': *179 '403': *27 '422': *15 x-github: @@ -39021,7 +39268,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: - - *65 + - *67 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -39031,7 +39278,7 @@ paths: - *17 - *19 responses: - '500': *105 + '500': *107 '404': *6 '403': *27 '200': @@ -39040,11 +39287,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39066,7 +39313,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -39084,7 +39331,7 @@ paths: type: integer configurations: type: array - items: &251 + items: &254 title: Organization private registry description: Private registry configuration for an organization type: object @@ -39167,7 +39414,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *57 + Link: *59 '400': *14 '404': *6 x-github: @@ -39189,7 +39436,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -39380,7 +39627,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &252 + org-private-registry-with-selected-visibility: &255 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -39421,7 +39668,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: - - *65 + - *67 responses: '200': description: Response @@ -39449,7 +39696,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -39471,16 +39718,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *65 - - *153 + - *67 + - *156 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *251 + schema: *254 examples: - default: *252 + default: *255 '404': *6 x-github: githubCloudOnly: false @@ -39501,8 +39748,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *65 - - *153 + - *67 + - *156 requestBody: required: true content: @@ -39607,8 +39854,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *65 - - *153 + - *67 + - *156 responses: '204': description: Response @@ -39631,15 +39878,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *65 + - *67 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -39648,7 +39895,7 @@ paths: application/json: schema: type: array - items: &253 + items: &256 title: Projects v2 Project description: A projects v2 project type: object @@ -39722,7 +39969,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &741 + - &744 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -39807,7 +40054,7 @@ paths: - deleted_at - deleted_by examples: - default: &254 + default: &257 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -39890,7 +40137,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -39910,24 +40157,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &255 + - &258 name: project_number description: The project's number. in: path required: true schema: type: integer - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *253 + schema: *256 examples: - default: *254 + default: *257 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -39947,8 +40194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *65 - - *255 + - *67 + - *258 requestBody: required: true description: Details of the draft item to create in the project. @@ -39982,7 +40229,7 @@ paths: description: Response content: application/json: - schema: &260 + schema: &263 title: Projects v2 Item description: An item belonging to a project type: object @@ -39995,8 +40242,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *73 - - &450 + - *75 + - &453 title: Pull Request Simple description: Pull Request Simple type: object @@ -40116,7 +40363,7 @@ paths: milestone: anyOf: - type: 'null' - - *256 + - *259 active_lock_reason: type: - string @@ -40165,7 +40412,7 @@ paths: items: *4 requested_teams: type: array - items: *180 + items: *183 head: type: object properties: @@ -40173,7 +40420,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: @@ -40193,7 +40440,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: @@ -40209,7 +40456,7 @@ paths: _links: type: object properties: - comments: &257 + comments: &260 title: Link description: Hypermedia Link type: object @@ -40218,13 +40465,13 @@ paths: type: string required: - href - commits: *257 - statuses: *257 - html: *257 - issue: *257 - review_comments: *257 - review_comment: *257 - self: *257 + commits: *260 + statuses: *260 + html: *260 + issue: *260 + review_comments: *260 + review_comment: *260 + self: *260 required: - comments - commits @@ -40234,8 +40481,8 @@ paths: - review_comments - review_comment - self - author_association: *70 - auto_merge: &552 + author_association: *72 + auto_merge: &555 title: Auto merge description: The status of auto merging a pull request. type: @@ -40409,7 +40656,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &259 + content_type: &262 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -40453,7 +40700,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &261 + draft_issue: &264 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -40527,11 +40774,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *255 - - *65 + - *258 + - *67 - *17 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -40539,7 +40786,7 @@ paths: application/json: schema: type: array - items: &258 + items: &261 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -40692,7 +40939,7 @@ paths: - updated_at - project_url examples: - default: &677 + default: &680 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -40803,7 +41050,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -40822,8 +41069,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *255 - - *65 + - *258 + - *67 requestBody: required: true content: @@ -40869,7 +41116,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &678 + items: &681 type: object properties: name: @@ -40906,7 +41153,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &679 + iteration_configuration: &682 type: object description: The configuration for iteration fields. properties: @@ -40956,7 +41203,7 @@ paths: value: name: Due date data_type: date - single_select_field: &680 + single_select_field: &683 summary: Create a single select field value: name: Priority @@ -40983,7 +41230,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &681 + iteration_field: &684 summary: Create an iteration field value: name: Sprint @@ -41007,9 +41254,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *258 + schema: *261 examples: - text_field: &682 + text_field: &685 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -41018,7 +41265,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: &683 + number_field: &686 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -41027,7 +41274,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: &684 + date_field: &687 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -41036,7 +41283,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: &685 + single_select_field: &688 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41070,7 +41317,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &686 + iteration_field: &689 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -41115,23 +41362,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *255 - - &687 + - *258 + - &690 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *258 + schema: *261 examples: - default: &688 + default: &691 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -41166,7 +41413,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -41187,8 +41434,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *255 - - *65 + - *258 + - *67 - 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. @@ -41210,8 +41457,8 @@ paths: maxItems: 50 items: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -41220,7 +41467,7 @@ paths: application/json: schema: type: array - items: &262 + items: &265 title: Projects v2 Item description: An item belonging to a project type: object @@ -41237,7 +41484,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *259 + content_type: *262 content: type: - object @@ -41287,7 +41534,7 @@ paths: - updated_at - archived_at examples: - default: &263 + default: &266 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -41964,7 +42211,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -41984,8 +42231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *65 - - *255 + - *67 + - *258 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -42055,22 +42302,22 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *261 + value: *264 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *261 + value: *264 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *261 + value: *264 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *261 + value: *264 '304': *35 '403': *27 '401': *23 @@ -42090,9 +42337,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *255 - - *65 - - &264 + - *258 + - *67 + - &267 name: item_id description: The unique identifier of the project item. in: path @@ -42118,11 +42365,11 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -42141,9 +42388,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *255 - - *65 - - *264 + - *258 + - *67 + - *267 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -42216,13 +42463,13 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - text_field: *263 - number_field: *263 - date_field: *263 - single_select_field: *263 - iteration_field: *263 + text_field: *266 + number_field: *266 + date_field: *266 + single_select_field: *266 + iteration_field: *266 '401': *23 '403': *27 '404': *6 @@ -42242,9 +42489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *255 - - *65 - - *264 + - *258 + - *67 + - *267 responses: '204': description: Response @@ -42267,8 +42514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *65 - - *255 + - *67 + - *258 requestBody: required: true content: @@ -42342,7 +42589,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &669 + schema: &672 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -42446,7 +42693,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &265 + value: &268 value: id: 1 number: 1 @@ -42492,10 +42739,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *265 + value: *268 roadmap_view: summary: Response for creating a roadmap view - value: *265 + value: *268 '304': *35 '403': *27 '401': *23 @@ -42523,9 +42770,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *255 - - *65 - - &689 + - *258 + - *67 + - &692 name: view_number description: The number that identifies the project view. in: path @@ -42547,8 +42794,8 @@ paths: maxItems: 50 items: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -42557,11 +42804,11 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -42584,7 +42831,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Response @@ -42592,7 +42839,7 @@ paths: application/json: schema: type: array - items: &266 + items: &269 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -42670,7 +42917,7 @@ paths: - property_name - value_type examples: - default: &267 + default: &270 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -42719,7 +42966,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *65 + - *67 requestBody: required: true content: @@ -42730,7 +42977,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *266 + items: *269 minItems: 1 maxItems: 100 required: @@ -42760,9 +43007,9 @@ paths: application/json: schema: type: array - items: *266 + items: *269 examples: - default: *267 + default: *270 '403': *27 '404': *6 x-github: @@ -42783,8 +43030,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *65 - - &268 + - *67 + - &271 name: custom_property_name description: The custom property name in: path @@ -42796,9 +43043,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: &269 + default: &272 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -42832,8 +43079,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: - - *65 - - *268 + - *67 + - *271 requestBody: required: true content: @@ -42913,9 +43160,9 @@ paths: description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *269 + default: *272 '403': *27 '404': *6 x-github: @@ -42938,10 +43185,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *65 - - *268 + - *67 + - *271 responses: - '204': *176 + '204': *179 '403': *27 '404': *6 x-github: @@ -42962,7 +43209,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *65 + - *67 - *17 - *19 - name: repository_query @@ -43003,7 +43250,7 @@ paths: - octocat/Hello-World properties: type: array - items: &270 + items: &273 title: Custom Property Value description: Custom property name and associated value type: object @@ -43045,7 +43292,7 @@ paths: - property_name: team value: octocat headers: - Link: *57 + Link: *59 '403': *27 '404': *6 x-github: @@ -43073,7 +43320,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: - - *65 + - *67 requestBody: required: true content: @@ -43093,7 +43340,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *270 + items: *273 required: - repository_names - properties @@ -43134,7 +43381,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *65 + - *67 - *17 - *19 responses: @@ -43146,9 +43393,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43165,8 +43412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response if user is a public member @@ -43190,8 +43437,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -43212,8 +43459,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *65 - - *61 + - *67 + - *63 responses: '204': description: Response @@ -43237,7 +43484,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *65 + - *67 - name: type description: Specifies the types of repositories you want returned. in: query @@ -43283,11 +43530,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43306,7 +43553,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *65 + - *67 requestBody: required: true content: @@ -43488,7 +43735,7 @@ paths: description: Response content: application/json: - schema: &318 + schema: &321 title: Full Repository description: Full Repository type: object @@ -43851,7 +44098,7 @@ paths: template_repository: anyOf: - type: 'null' - - *69 + - *71 temp_clone_token: type: - string @@ -43951,13 +44198,13 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 organization: anyOf: - type: 'null' - *4 - parent: *69 - source: *69 + parent: *71 + source: *71 forks: type: integer master_branch: @@ -43970,7 +44217,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &455 + code_of_conduct: &458 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -44000,7 +44247,7 @@ paths: - key - name - html_url - security_and_analysis: *271 + security_and_analysis: *274 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -44095,7 +44342,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &320 + default: &323 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -44619,10 +44866,10 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - *17 - *19 - - &574 + - &577 name: targets description: | A comma-separated list of rule targets to filter by. @@ -44641,7 +44888,7 @@ paths: application/json: schema: type: array - items: &298 + items: &301 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -44676,7 +44923,7 @@ paths: source: type: string description: The name of the source - enforcement: &274 + enforcement: &277 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -44689,7 +44936,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &275 + items: &278 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -44760,7 +45007,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &272 + - &275 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -44784,7 +45031,7 @@ paths: match. items: type: string - - &276 + - &279 title: Organization ruleset conditions type: object description: |- @@ -44798,7 +45045,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *272 + - *275 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -44832,7 +45079,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *272 + - *275 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -44854,7 +45101,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *272 + - *275 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -44867,7 +45114,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &273 + items: &276 title: Repository ruleset property targeting definition type: object @@ -44900,7 +45147,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *273 + items: *276 required: - repository_property type: @@ -44908,12 +45155,12 @@ paths: - object rules: type: array - items: &575 + items: &578 title: Repository Rule type: object description: A repository rule. oneOf: - - &277 + - &280 title: creation description: Only allow users with bypass permission to create matching refs. @@ -44925,7 +45172,7 @@ paths: type: string enum: - creation - - &278 + - &281 title: update description: Only allow users with bypass permission to update matching refs. @@ -44946,7 +45193,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &279 + - &282 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -44958,7 +45205,7 @@ paths: type: string enum: - deletion - - &280 + - &283 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -44970,7 +45217,7 @@ paths: type: string enum: - required_linear_history - - &573 + - &576 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -45048,7 +45295,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &281 + - &284 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -45072,7 +45319,7 @@ paths: type: string required: - required_deployment_environments - - &282 + - &285 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -45084,7 +45331,7 @@ paths: type: string enum: - required_signatures - - &283 + - &286 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -45190,7 +45437,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &284 + - &287 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -45238,7 +45485,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &285 + - &288 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -45250,7 +45497,7 @@ paths: type: string enum: - non_fast_forward - - &286 + - &289 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -45287,7 +45534,7 @@ paths: required: - operator - pattern - - &287 + - &290 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -45324,7 +45571,7 @@ paths: required: - operator - pattern - - &288 + - &291 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -45361,7 +45608,7 @@ paths: required: - operator - pattern - - &289 + - &292 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -45398,7 +45645,7 @@ paths: required: - operator - pattern - - &290 + - &293 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -45435,7 +45682,7 @@ paths: required: - operator - pattern - - &291 + - &294 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -45460,7 +45707,7 @@ paths: type: string required: - restricted_file_paths - - &292 + - &295 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -45484,7 +45731,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &293 + - &296 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -45507,7 +45754,7 @@ paths: type: string required: - restricted_file_extensions - - &294 + - &297 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -45532,7 +45779,7 @@ paths: maximum: 100 required: - max_file_size - - &295 + - &298 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -45582,7 +45829,7 @@ paths: - repository_id required: - workflows - - &296 + - &299 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -45643,7 +45890,7 @@ paths: - tool required: - code_scanning_tools - - &297 + - &300 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -45705,7 +45952,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *107 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -45721,7 +45968,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 requestBody: description: Request body required: true @@ -45742,23 +45989,20 @@ paths: - push - repository default: branch - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *276 + items: *278 + conditions: *279 rules: type: array description: An array of rules within the ruleset. - items: &300 + items: &303 title: Repository Rule type: object description: A repository rule. oneOf: - - *277 - - *278 - - *279 - *280 - *281 - *282 @@ -45777,6 +46021,9 @@ paths: - *295 - *296 - *297 + - *298 + - *299 + - *300 required: - name - enforcement @@ -45814,9 +46061,9 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: &299 + default: &302 value: id: 21 name: super cool ruleset @@ -45857,7 +46104,7 @@ paths: updated_at: '2023-09-23T16:29:47Z' '404': *6 '422': *15 - '500': *105 + '500': *107 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -45871,8 +46118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *65 - - &576 + - *67 + - &579 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 @@ -45887,7 +46134,7 @@ paths: in: query schema: type: string - - &577 + - &580 name: time_period description: |- The time period to filter by. @@ -45903,14 +46150,14 @@ paths: - week - month default: day - - &578 + - &581 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 - - &579 + - &582 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -45930,7 +46177,7 @@ paths: description: Response content: application/json: - schema: &580 + schema: &583 title: Rule Suites description: Response type: array @@ -45986,7 +46233,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &581 + default: &584 value: - id: 21 actor_id: 12 @@ -46010,7 +46257,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46029,8 +46276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *65 - - &582 + - *67 + - &585 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -46046,7 +46293,7 @@ paths: description: Response content: application/json: - schema: &583 + schema: &586 title: Rule Suite description: Response type: object @@ -46153,7 +46400,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &584 + default: &587 value: id: 21 actor_id: 12 @@ -46188,7 +46435,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46214,7 +46461,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46226,11 +46473,11 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *299 + default: *302 '404': *6 - '500': *105 + '500': *107 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -46246,7 +46493,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46272,16 +46519,16 @@ paths: - tag - push - repository - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *276 + items: *278 + conditions: *279 rules: description: An array of rules within the ruleset. type: array - items: *300 + items: *303 examples: default: value: @@ -46316,12 +46563,12 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *299 + default: *302 '404': *6 '422': *15 - '500': *105 + '500': *107 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -46337,7 +46584,7 @@ paths: category: orgs subcategory: rules parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46348,7 +46595,7 @@ paths: '204': description: Response '404': *6 - '500': *105 + '500': *107 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -46360,7 +46607,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *65 + - *67 - *17 - *19 - name: ruleset_id @@ -46376,7 +46623,7 @@ paths: application/json: schema: type: array - items: &301 + items: &304 title: Ruleset version type: object description: The historical version of a ruleset @@ -46400,7 +46647,7 @@ paths: type: string format: date-time examples: - default: &586 + default: &589 value: - version_id: 3 actor: @@ -46418,7 +46665,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46435,7 +46682,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *65 + - *67 - name: ruleset_id description: The ID of the ruleset. in: path @@ -46453,9 +46700,9 @@ paths: description: Response content: application/json: - schema: &587 + schema: &590 allOf: - - *301 + - *304 - type: object required: - state @@ -46502,7 +46749,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46524,8 +46771,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *65 - - &588 + - *67 + - &591 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -46536,7 +46783,7 @@ paths: enum: - open - resolved - - &589 + - &592 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -46546,7 +46793,7 @@ paths: required: false schema: type: string - - &590 + - &593 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -46555,7 +46802,7 @@ paths: required: false schema: type: string - - &591 + - &594 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -46574,7 +46821,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &592 + - &595 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. @@ -46586,10 +46833,10 @@ paths: - created - updated default: created - - *51 + - *53 - *19 - *17 - - &593 + - &596 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 @@ -46599,7 +46846,7 @@ paths: required: false schema: type: string - - &594 + - &597 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 @@ -46609,7 +46856,7 @@ paths: required: false schema: type: string - - &595 + - &598 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -46618,7 +46865,7 @@ paths: required: false schema: type: string - - &596 + - &599 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -46627,7 +46874,7 @@ paths: schema: type: boolean default: false - - &597 + - &600 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -46636,7 +46883,7 @@ paths: schema: type: boolean default: false - - &598 + - &601 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -46655,27 +46902,27 @@ paths: items: type: object properties: - number: *163 - created_at: *164 + number: *166 + created_at: *167 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *168 + url: *169 + html_url: *170 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &599 + state: &602 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: &600 + resolution: &603 type: - string - 'null' @@ -46709,7 +46956,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *56 + repository: *58 push_protection_bypassed: type: - boolean @@ -46782,14 +47029,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &601 + - &604 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &603 + - &606 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -46846,7 +47093,7 @@ paths: - blob_url - commit_sha - commit_url - - &604 + - &607 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. @@ -46907,7 +47154,7 @@ paths: - page_url - commit_sha - commit_url - - &605 + - &608 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -46922,7 +47169,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &606 + - &609 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -46937,7 +47184,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &607 + - &610 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -46952,7 +47199,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &608 + - &611 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -46967,7 +47214,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &609 + - &612 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -46982,7 +47229,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &610 + - &613 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -46997,7 +47244,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &611 + - &614 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. @@ -47012,7 +47259,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &612 + - &615 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. @@ -47027,7 +47274,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &613 + - &616 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. @@ -47042,7 +47289,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &614 + - &617 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. @@ -47057,7 +47304,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &615 + - &618 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 @@ -47258,9 +47505,9 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47285,7 +47532,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *65 + - *67 responses: '200': description: Response @@ -47297,7 +47544,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &303 + pattern_config_version: &306 type: - string - 'null' @@ -47307,7 +47554,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &302 + items: &305 type: object properties: token_type: @@ -47376,7 +47623,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *302 + items: *305 examples: default: value: @@ -47425,7 +47672,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *65 + - *67 requestBody: required: true content: @@ -47433,7 +47680,7 @@ paths: schema: type: object properties: - pattern_config_version: *303 + pattern_config_version: *306 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -47459,7 +47706,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *303 + custom_pattern_version: *306 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -47495,7 +47742,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *15 "/orgs/{org}/security-advisories": get: @@ -47513,8 +47760,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *65 - - *51 + - *67 + - *53 - name: sort description: The property to sort the results by. in: query @@ -47526,8 +47773,8 @@ paths: - updated - published default: created - - *43 - - *44 + - *45 + - *46 - 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)." @@ -47557,7 +47804,7 @@ paths: application/json: schema: type: array - items: &619 + items: &622 description: A repository security advisory. type: object properties: @@ -47765,7 +48012,7 @@ paths: required: - vector_string - score - cvss_severities: *53 + cvss_severities: *55 cwes: type: - array @@ -47801,7 +48048,7 @@ paths: login: type: string description: The username of the user credited. - type: *304 + type: *307 credits_detailed: type: - array @@ -47812,7 +48059,7 @@ paths: type: object properties: user: *4 - type: *304 + type: *307 state: type: string description: The state of the user's acceptance of the @@ -47838,13 +48085,13 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *180 + items: *183 private_fork: readOnly: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *56 + - *58 type: - 'null' required: @@ -47908,7 +48155,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &620 + default: &623 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -48287,7 +48534,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *65 + - *67 responses: '200': description: Response @@ -48295,7 +48542,7 @@ paths: application/json: schema: type: array - items: *235 + items: *238 examples: default: value: @@ -48335,8 +48582,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response @@ -48361,8 +48608,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response @@ -48389,7 +48636,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *65 + - *67 responses: '200': description: Immutable releases settings response @@ -48439,7 +48686,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *65 + - *67 responses: '204': description: Response @@ -48497,7 +48744,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *65 + - *67 - *19 - *17 responses: @@ -48515,9 +48762,9 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *157 + default: *160 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48536,7 +48783,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *65 + - *67 requestBody: required: true content: @@ -48585,8 +48832,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: Response @@ -48608,8 +48855,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: - - *65 - - *134 + - *67 + - *137 responses: '204': description: Response @@ -48632,7 +48879,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *65 + - *67 - *17 - *19 responses: @@ -48650,7 +48897,7 @@ paths: type: integer network_configurations: type: array - items: &305 + items: &308 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -48728,7 +48975,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48747,7 +48994,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: - - *65 + - *67 requestBody: required: true content: @@ -48790,9 +49037,9 @@ paths: description: Response content: application/json: - schema: *305 + schema: *308 examples: - default: &306 + default: &309 value: id: 123456789ABCDEF name: My network configuration @@ -48820,8 +49067,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: - - *65 - - &307 + - *67 + - &310 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -48833,11 +49080,11 @@ paths: description: Response content: application/json: - schema: *305 + schema: *308 examples: - default: *306 + default: *309 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48856,8 +49103,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: - - *65 - - *307 + - *67 + - *310 requestBody: required: true content: @@ -48897,9 +49144,9 @@ paths: description: Response content: application/json: - schema: *305 + schema: *308 examples: - default: *306 + default: *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48918,8 +49165,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: - - *65 - - *307 + - *67 + - *310 responses: '204': description: Response @@ -48942,7 +49189,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: - - *65 + - *67 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -49001,7 +49248,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49031,8 +49278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *65 - *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`). @@ -49064,13 +49311,13 @@ paths: application/json: schema: type: array - items: *308 + items: *311 examples: - default: *309 - '500': *105 + default: *312 + '500': *107 '403': *27 '404': *6 - '422': *310 + '422': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49088,7 +49335,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *65 + - *67 - *17 - *19 - name: team_type @@ -49110,11 +49357,11 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 headers: - Link: *57 + Link: *59 '403': *27 x-github: githubCloudOnly: false @@ -49134,7 +49381,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *65 + - *67 requestBody: required: true content: @@ -49206,7 +49453,7 @@ paths: description: Response content: application/json: - schema: &311 + schema: &314 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -49280,7 +49527,7 @@ paths: parent: anyOf: - type: 'null' - - *235 + - *238 members_count: type: integer examples: @@ -49605,7 +49852,7 @@ paths: - repos_count - organization examples: - default: &312 + default: &315 value: id: 1 node_id: MDQ6VGVhbTE= @@ -49686,16 +49933,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *65 - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 x-github: githubCloudOnly: false @@ -49716,8 +49963,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *65 - *67 + - *69 requestBody: required: false content: @@ -49780,16 +50027,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '201': description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 '422': *15 '403': *27 @@ -49814,12 +50061,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *65 - *67 + - *69 responses: '204': description: Response - '422': &313 + '422': &316 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -49842,8 +50089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *65 - *67 + - *69 - *17 - *19 responses: @@ -49853,12 +50100,12 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 headers: - Link: *57 - '422': *313 + Link: *59 + '422': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49878,8 +50125,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *65 - *67 + - *69 - name: role description: Filters members returned by their role in the team. in: query @@ -49902,9 +50149,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49932,15 +50179,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *65 - *67 - - *61 + - *69 + - *63 responses: '200': description: Response content: application/json: - schema: &314 + schema: &317 title: Team Membership description: Team Membership type: object @@ -49968,7 +50215,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &636 + response-if-user-is-a-team-maintainer: &639 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -50004,9 +50251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *65 - *67 - - *61 + - *69 + - *63 requestBody: required: false content: @@ -50031,9 +50278,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - response-if-users-membership-with-team-is-now-pending: &637 + response-if-users-membership-with-team-is-now-pending: &640 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -50068,9 +50315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *65 - *67 - - *61 + - *69 + - *63 responses: '204': description: Response @@ -50096,8 +50343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *65 - *67 + - *69 - *17 - *19 responses: @@ -50107,11 +50354,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50138,16 +50385,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *65 - *67 - - *315 - - *316 + - *69 + - *318 + - *319 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &638 + schema: &641 title: Team Repository description: A team's access to a repository. type: object @@ -50173,7 +50420,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 forks: type: integer permissions: @@ -50867,10 +51114,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *65 - *67 - - *315 - - *316 + - *69 + - *318 + - *319 requestBody: required: false content: @@ -50915,10 +51162,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *65 - *67 - - *315 - - *316 + - *69 + - *318 + - *319 responses: '204': description: Response @@ -50942,8 +51189,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *65 - *67 + - *69 - *17 - *19 responses: @@ -50953,9 +51200,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - response-if-child-teams-exist: &639 + response-if-child-teams-exist: &642 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -50983,7 +51230,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51008,7 +51255,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *65 + - *67 - name: security_product in: path description: The security feature to enable or disable. @@ -51109,7 +51356,7 @@ paths: resources: type: object properties: - core: &317 + core: &320 title: Rate Limit type: object properties: @@ -51126,21 +51373,21 @@ paths: - remaining - reset - used - graphql: *317 - search: *317 - code_search: *317 - source_import: *317 - integration_manifest: *317 - code_scanning_upload: *317 - actions_runner_registration: *317 - scim: *317 - dependency_snapshots: *317 - dependency_sbom: *317 - code_scanning_autofix: *317 + graphql: *320 + search: *320 + code_search: *320 + source_import: *320 + integration_manifest: *320 + code_scanning_upload: *320 + actions_runner_registration: *320 + scim: *320 + dependency_snapshots: *320 + dependency_sbom: *320 + code_scanning_autofix: *320 required: - core - search - rate: *317 + rate: *320 required: - rate - resources @@ -51253,14 +51500,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *318 + schema: *321 examples: default-response: summary: Default response @@ -51765,7 +52012,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *319 + '301': *322 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51783,8 +52030,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -52076,10 +52323,10 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 - '307': &321 + default: *323 + '307': &324 description: Temporary Redirect content: application/json: @@ -52108,8 +52355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -52131,9 +52378,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *321 + '307': *324 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52155,11 +52402,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - - &354 + - &357 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -52182,7 +52429,7 @@ paths: type: integer artifacts: type: array - items: &322 + items: &325 title: Artifact description: An artifact type: object @@ -52277,7 +52524,7 @@ paths: - expires_at - updated_at examples: - default: &355 + default: &358 value: total_count: 2 artifacts: @@ -52316,7 +52563,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52338,9 +52585,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *315 - - *316 - - &323 + - *318 + - *319 + - &326 name: artifact_id description: The unique identifier of the artifact. in: path @@ -52352,7 +52599,7 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: default: value: @@ -52390,9 +52637,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *315 - - *316 - - *323 + - *318 + - *319 + - *326 responses: '204': description: Response @@ -52416,9 +52663,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *315 - - *316 - - *323 + - *318 + - *319 + - *326 - name: archive_format in: path required: true @@ -52432,7 +52679,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': &510 + '410': &513 description: Gone content: application/json: @@ -52457,14 +52704,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &324 + schema: &327 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -52498,13 +52745,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *324 + schema: *327 examples: selected_actions: *40 responses: @@ -52533,14 +52780,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &325 + schema: &328 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -52574,13 +52821,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *325 + schema: *328 examples: selected_actions: *42 responses: @@ -52611,14 +52858,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *326 + schema: *329 examples: default: value: @@ -52644,11 +52891,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - - &327 + - &330 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 @@ -52676,13 +52923,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *51 + - *53 responses: '200': description: Response content: application/json: - schema: &328 + schema: &331 title: Repository actions caches description: Repository actions caches type: object @@ -52732,7 +52979,7 @@ paths: - total_count - actions_caches examples: - default: &329 + default: &332 value: total_count: 1 actions_caches: @@ -52744,7 +52991,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52764,23 +53011,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: - - *315 - - *316 + - *318 + - *319 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *327 + - *330 responses: '200': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52800,8 +53047,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: - - *315 - - *316 + - *318 + - *319 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -52832,9 +53079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *315 - - *316 - - &330 + - *318 + - *319 + - &333 name: job_id description: The unique identifier of the job. in: path @@ -52846,7 +53093,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &361 title: Job description: Information of a job execution in a workflow run type: object @@ -53193,9 +53440,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *315 - - *316 - - *330 + - *318 + - *319 + - *333 responses: '302': description: Response @@ -53223,9 +53470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *315 - - *316 - - *330 + - *318 + - *319 + - *333 requestBody: required: false content: @@ -53247,7 +53494,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -53271,8 +53518,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Status response @@ -53322,8 +53569,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -53357,7 +53604,7 @@ paths: description: Empty response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -53386,8 +53633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -53405,7 +53652,7 @@ paths: type: integer secrets: type: array - items: &360 + items: &363 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -53426,7 +53673,7 @@ paths: - created_at - updated_at examples: - default: &361 + default: &364 value: total_count: 2 secrets: @@ -53437,7 +53684,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53459,9 +53706,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *315 - - *316 - - *331 + - *318 + - *319 + - *334 - *19 responses: '200': @@ -53478,7 +53725,7 @@ paths: type: integer variables: type: array - items: &364 + items: &367 title: Actions Variable type: object properties: @@ -53512,7 +53759,7 @@ paths: - created_at - updated_at examples: - default: &365 + default: &368 value: total_count: 2 variables: @@ -53525,7 +53772,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53545,8 +53792,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -53555,12 +53802,12 @@ paths: schema: type: object properties: - enabled: &333 + enabled: &336 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *130 - selected_actions_url: *332 - sha_pinning_required: *131 + allowed_actions: *133 + selected_actions_url: *335 + sha_pinning_required: *134 required: - enabled examples: @@ -53588,8 +53835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -53600,9 +53847,9 @@ paths: schema: type: object properties: - enabled: *333 - allowed_actions: *130 - sha_pinning_required: *131 + enabled: *336 + allowed_actions: *133 + sha_pinning_required: *134 required: - enabled examples: @@ -53632,14 +53879,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &334 + schema: &337 type: object properties: access_level: @@ -53656,7 +53903,7 @@ paths: required: - access_level examples: - default: &335 + default: &338 value: access_level: organization x-github: @@ -53680,15 +53927,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *334 + schema: *337 examples: - default: *335 + default: *338 responses: '204': description: Response @@ -53712,14 +53959,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *336 + schema: *339 examples: default: value: @@ -53743,8 +53990,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Empty response for successful settings update @@ -53754,7 +54001,7 @@ paths: required: true content: application/json: - schema: *337 + schema: *340 examples: default: summary: Set retention days @@ -53778,16 +54025,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *132 + schema: *135 examples: - default: *338 + default: *341 '404': *6 x-github: enabledForGitHubApps: true @@ -53806,8 +54053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -53817,7 +54064,7 @@ paths: required: true content: application/json: - schema: *132 + schema: *135 examples: default: summary: Set approval policy to first time contributors @@ -53841,16 +54088,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *339 + schema: *342 examples: - default: *133 + default: *136 '403': *27 '404': *6 x-github: @@ -53870,15 +54117,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *340 + schema: *343 examples: - default: *133 + default: *136 responses: '204': description: Empty response for successful settings update @@ -53902,16 +54149,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *135 + schema: *138 examples: - default: *136 + default: *139 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -53930,8 +54177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -53939,9 +54186,9 @@ paths: required: false content: application/json: - schema: *135 + schema: *138 examples: - selected_actions: *136 + selected_actions: *139 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -53963,16 +54210,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *341 + schema: *344 examples: - default: *140 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53993,8 +54240,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Success response @@ -54005,9 +54252,9 @@ paths: required: true content: application/json: - schema: *342 + schema: *345 examples: - default: *140 + default: *143 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54034,8 +54281,8 @@ paths: in: query schema: type: string - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -54053,11 +54300,11 @@ paths: type: integer runners: type: array - items: *147 + items: *150 examples: - default: *148 + default: *151 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54079,8 +54326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -54088,9 +54335,9 @@ paths: application/json: schema: type: array - items: *343 + items: *346 examples: - default: *344 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54112,8 +54359,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -54156,10 +54403,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *345 + '201': *348 '404': *6 '422': *7 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54187,16 +54434,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '201': description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54224,16 +54471,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '201': description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *347 + default: *350 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54255,17 +54502,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: '200': description: Response content: application/json: - schema: *147 + schema: *150 examples: - default: *348 + default: *351 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54286,9 +54533,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: '204': description: Response @@ -54314,11 +54561,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: - '200': *151 + '200': *154 '404': *6 x-github: githubCloudOnly: false @@ -54340,9 +54587,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 requestBody: required: true content: @@ -54366,7 +54613,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -54390,9 +54637,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 requestBody: required: true content: @@ -54417,7 +54664,7 @@ paths: - gpu - accelerated responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -54441,11 +54688,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: - - *315 - - *316 - - *146 + - *318 + - *319 + - *149 responses: - '200': *349 + '200': *352 '404': *6 x-github: githubCloudOnly: false @@ -54472,12 +54719,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: - - *315 - - *316 - - *146 - - *350 + - *318 + - *319 + - *149 + - *353 responses: - '200': *151 + '200': *154 '404': *6 '422': *7 x-github: @@ -54503,9 +54750,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *315 - - *316 - - &368 + - *318 + - *319 + - &371 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. @@ -54513,7 +54760,7 @@ paths: required: false schema: type: string - - &369 + - &372 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -54521,7 +54768,7 @@ paths: required: false schema: type: string - - &370 + - &373 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -54530,7 +54777,7 @@ paths: required: false schema: type: string - - &371 + - &374 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 @@ -54557,7 +54804,7 @@ paths: - pending - *17 - *19 - - &372 + - &375 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)." @@ -54566,7 +54813,7 @@ paths: schema: type: string format: date-time - - &351 + - &354 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -54575,13 +54822,13 @@ paths: schema: type: boolean default: false - - &373 + - &376 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &374 + - &377 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -54604,7 +54851,7 @@ paths: type: integer workflow_runs: type: array - items: &352 + items: &355 title: Workflow Run description: An invocation of a workflow type: object @@ -54721,7 +54968,7 @@ paths: type: - array - 'null' - items: *76 + items: *78 created_at: type: string format: date-time @@ -54782,7 +55029,7 @@ paths: head_commit: anyOf: - type: 'null' - - &396 + - &399 title: Simple Commit description: A commit. type: object @@ -54856,8 +55103,8 @@ paths: - timestamp - author - committer - repository: *145 - head_repository: *145 + repository: *148 + head_repository: *148 head_repository_id: type: integer examples: @@ -54897,7 +55144,7 @@ paths: - workflow_url - pull_requests examples: - default: &375 + default: &378 value: total_count: 1 workflow_runs: @@ -55111,7 +55358,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55133,24 +55380,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *315 - - *316 - - &353 + - *318 + - *319 + - &356 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *351 + - *354 responses: '200': description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: &356 + default: &359 value: id: 30433642 name: Build @@ -55391,9 +55638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '204': description: Response @@ -55416,9 +55663,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '200': description: Response @@ -55546,15 +55793,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: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -55581,13 +55828,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 - *17 - *19 - - *354 - - *51 + - *357 + - *53 responses: '200': description: Response @@ -55603,11 +55850,11 @@ paths: type: integer artifacts: type: array - items: *322 + items: *325 examples: - default: *355 + default: *358 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55629,25 +55876,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *315 - - *316 - - *353 - - &357 + - *318 + - *319 + - *356 + - &360 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *351 + - *354 responses: '200': description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: *356 + default: *359 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55670,10 +55917,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *315 - - *316 - - *353 - - *357 + - *318 + - *319 + - *356 + - *360 - *17 - *19 responses: @@ -55691,9 +55938,9 @@ paths: type: integer jobs: type: array - items: *358 + items: *361 examples: - default: &359 + default: &362 value: total_count: 1 jobs: @@ -55782,7 +56029,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -55806,10 +56053,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *315 - - *316 - - *353 - - *357 + - *318 + - *319 + - *356 + - *360 responses: '302': description: Response @@ -55837,19 +56084,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '202': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55872,9 +56119,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: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: true content: @@ -55941,19 +56188,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '202': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55976,9 +56223,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 - 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 @@ -56008,11 +56255,11 @@ paths: type: integer jobs: type: array - items: *358 + items: *361 examples: - default: *359 + default: *362 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56035,9 +56282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '302': description: Response @@ -56064,14 +56311,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '204': description: Response '403': *27 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56093,9 +56340,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '200': description: Response @@ -56164,7 +56411,7 @@ paths: items: type: object properties: - type: &476 + type: &479 type: string description: The type of reviewer. enum: @@ -56175,7 +56422,7 @@ paths: reviewer: anyOf: - *4 - - *180 + - *183 required: - environment - wait_timer @@ -56250,9 +56497,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: true content: @@ -56302,7 +56549,7 @@ paths: application/json: schema: type: array - items: &471 + items: &474 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -56414,7 +56661,7 @@ paths: - created_at - updated_at examples: - default: &472 + default: &475 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -56470,9 +56717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: false content: @@ -56494,7 +56741,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -56517,9 +56764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 requestBody: required: false content: @@ -56541,7 +56788,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -56573,9 +56820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *315 - - *316 - - *353 + - *318 + - *319 + - *356 responses: '200': description: Response @@ -56712,8 +56959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -56731,11 +56978,11 @@ paths: type: integer secrets: type: array - items: *360 + items: *363 examples: - default: *361 + default: *364 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56758,16 +57005,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *362 + schema: *365 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56789,17 +57036,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '200': description: Response content: application/json: - schema: *360 + schema: *363 examples: - default: &489 + default: &492 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -56825,9 +57072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 requestBody: required: true content: @@ -56858,7 +57105,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -56884,9 +57131,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '204': description: Response @@ -56911,9 +57158,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *315 - - *316 - - *331 + - *318 + - *319 + - *334 - *19 responses: '200': @@ -56930,11 +57177,11 @@ paths: type: integer variables: type: array - items: *364 + items: *367 examples: - default: *365 + default: *368 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56955,8 +57202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -56983,7 +57230,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -57008,17 +57255,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *315 - - *316 - - *156 + - *318 + - *319 + - *159 responses: '200': description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: &490 + default: &493 value: name: USERNAME value: octocat @@ -57044,9 +57291,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *315 - - *316 - - *156 + - *318 + - *319 + - *159 requestBody: required: true content: @@ -57088,9 +57335,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *315 - - *316 - - *156 + - *318 + - *319 + - *159 responses: '204': description: Response @@ -57115,8 +57362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -57134,7 +57381,7 @@ paths: type: integer workflows: type: array - items: &366 + items: &369 title: Workflow description: A GitHub Actions workflow type: object @@ -57229,7 +57476,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57252,9 +57499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *315 - - *316 - - &367 + - *318 + - *319 + - &370 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -57269,7 +57516,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *369 examples: default: value: @@ -57302,9 +57549,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '204': description: Response @@ -57329,9 +57576,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -57426,9 +57673,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '204': description: Response @@ -57455,19 +57702,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *315 - - *316 - - *367 - - *368 - - *369 + - *318 + - *319 - *370 - *371 - - *17 - - *19 - *372 - - *351 - *373 - *374 + - *17 + - *19 + - *375 + - *354 + - *376 + - *377 responses: '200': description: Response @@ -57483,11 +57730,11 @@ paths: type: integer workflow_runs: type: array - items: *352 + items: *355 examples: - default: *375 + default: *378 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57517,9 +57764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *315 - - *316 - - *367 + - *318 + - *319 + - *370 responses: '200': description: Response @@ -57580,12 +57827,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *315 - - *316 - - *51 + - *318 + - *319 + - *53 - *17 - - *43 - - *44 + - *45 + - *46 - name: ref description: |- The Git reference for the activities you want to list. @@ -57730,7 +57977,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '422': *7 x-github: githubCloudOnly: false @@ -57749,8 +57996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -57762,9 +58009,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -57787,8 +58034,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *315 - - *316 + - *318 + - *319 - name: assignee in: path required: true @@ -57824,8 +58071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -57937,11 +58184,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *315 - - *316 + - *318 + - *319 - *17 - - *43 - - *44 + - *45 + - *46 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -57995,7 +58242,7 @@ paths: initiator: type: string examples: - default: *376 + default: *379 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58029,8 +58276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -58038,7 +58285,7 @@ paths: application/json: schema: type: array - items: &377 + items: &380 title: Autolink reference description: An autolink reference. type: object @@ -58097,8 +58344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -58137,9 +58384,9 @@ paths: description: response content: application/json: - schema: *377 + schema: *380 examples: - default: &378 + default: &381 value: id: 1 key_prefix: TICKET- @@ -58170,9 +58417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *315 - - *316 - - &379 + - *318 + - *319 + - &382 name: autolink_id description: The unique identifier of the autolink. in: path @@ -58184,9 +58431,9 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *378 + default: *381 '404': *6 x-github: githubCloudOnly: false @@ -58206,9 +58453,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *315 - - *316 - - *379 + - *318 + - *319 + - *382 responses: '204': description: Response @@ -58232,8 +58479,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response if Dependabot is enabled @@ -58283,8 +58530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -58305,8 +58552,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -58326,8 +58573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *315 - - *316 + - *318 + - *319 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -58365,7 +58612,7 @@ paths: - url protected: type: boolean - protection: &381 + protection: &384 title: Branch Protection description: Branch Protection type: object @@ -58408,7 +58655,7 @@ paths: required: - contexts - checks - enforce_admins: &384 + enforce_admins: &387 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -58425,7 +58672,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &386 + required_pull_request_reviews: &389 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -58447,7 +58694,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *180 + items: *183 apps: description: The list of apps with review dismissal access. @@ -58479,7 +58726,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *180 + items: *183 apps: description: The list of apps allowed to bypass pull request requirements. @@ -58509,7 +58756,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &383 + restrictions: &386 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -58572,7 +58819,7 @@ paths: type: string teams: type: array - items: *180 + items: *183 apps: type: array items: @@ -58784,7 +59031,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -58802,9 +59049,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *315 - - *316 - - &382 + - *318 + - *319 + - &385 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). @@ -58818,14 +59065,14 @@ paths: description: Response content: application/json: - schema: &392 + schema: &395 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &446 + commit: &449 title: Commit description: Commit type: object @@ -58864,7 +59111,7 @@ paths: author: anyOf: - type: 'null' - - &380 + - &383 title: Git User description: Metaproperties for Git author/committer information. @@ -58886,7 +59133,7 @@ paths: committer: anyOf: - type: 'null' - - *380 + - *383 message: type: string examples: @@ -58910,7 +59157,7 @@ paths: required: - sha - url - verification: &496 + verification: &499 title: Verification type: object properties: @@ -58946,14 +59193,14 @@ paths: author: oneOf: - *4 - - *154 + - *157 type: - 'null' - object committer: oneOf: - *4 - - *154 + - *157 type: - 'null' - object @@ -58990,7 +59237,7 @@ paths: type: integer files: type: array - items: &457 + items: &460 title: Diff Entry description: Diff Entry type: object @@ -59086,7 +59333,7 @@ paths: - self protected: type: boolean - protection: *381 + protection: *384 protection_url: type: string format: uri @@ -59195,7 +59442,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *319 + '301': *322 '404': *6 x-github: githubCloudOnly: false @@ -59217,15 +59464,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: default: value: @@ -59419,9 +59666,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -59681,7 +59928,7 @@ paths: url: type: string format: uri - required_status_checks: &389 + required_status_checks: &392 title: Status Check Policy description: Status Check Policy type: object @@ -59762,7 +60009,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *183 apps: type: array items: *5 @@ -59780,7 +60027,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *183 apps: type: array items: *5 @@ -59840,7 +60087,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *383 + restrictions: *386 required_conversation_resolution: type: object properties: @@ -59952,9 +60199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -59979,17 +60226,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: &385 + default: &388 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -60011,17 +60258,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *385 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60040,9 +60287,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -60067,17 +60314,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: &387 + default: &390 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -60173,9 +60420,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -60273,9 +60520,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *387 + default: *390 '422': *15 x-github: githubCloudOnly: false @@ -60296,9 +60543,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -60325,17 +60572,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: &388 + default: &391 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -60358,17 +60605,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *388 + default: *391 '404': *6 x-github: githubCloudOnly: false @@ -60388,9 +60635,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -60415,17 +60662,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: &390 + default: &393 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -60451,9 +60698,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -60505,9 +60752,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: *390 + default: *393 '404': *6 '422': *15 x-github: @@ -60529,9 +60776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -60555,9 +60802,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -60591,9 +60838,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -60660,9 +60907,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -60726,9 +60973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: content: application/json: @@ -60794,15 +61041,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response content: application/json: - schema: *383 + schema: *386 examples: default: value: @@ -60893,9 +61140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '204': description: Response @@ -60918,9 +61165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -60930,7 +61177,7 @@ paths: type: array items: *5 examples: - default: &391 + default: &394 value: - id: 1 slug: octoapp @@ -60987,9 +61234,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -61023,7 +61270,7 @@ paths: type: array items: *5 examples: - default: *391 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -61044,9 +61291,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -61080,7 +61327,7 @@ paths: type: array items: *5 examples: - default: *391 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -61101,9 +61348,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -61137,7 +61384,7 @@ paths: type: array items: *5 examples: - default: *391 + default: *394 '422': *15 x-github: githubCloudOnly: false @@ -61159,9 +61406,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -61169,9 +61416,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '404': *6 x-github: githubCloudOnly: false @@ -61191,9 +61438,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -61229,9 +61476,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '422': *15 x-github: githubCloudOnly: false @@ -61252,9 +61499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: false content: @@ -61290,9 +61537,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '422': *15 x-github: githubCloudOnly: false @@ -61313,9 +61560,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: content: application/json: @@ -61350,9 +61597,9 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 '422': *15 x-github: githubCloudOnly: false @@ -61374,9 +61621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 responses: '200': description: Response @@ -61386,7 +61633,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '404': *6 x-github: githubCloudOnly: false @@ -61410,9 +61657,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -61445,7 +61692,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '422': *15 x-github: githubCloudOnly: false @@ -61470,9 +61717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -61505,7 +61752,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '422': *15 x-github: githubCloudOnly: false @@ -61530,9 +61777,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -61565,7 +61812,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '422': *15 x-github: githubCloudOnly: false @@ -61592,9 +61839,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 requestBody: required: true content: @@ -61616,7 +61863,7 @@ paths: description: Response content: application/json: - schema: *392 + schema: *395 examples: default: value: @@ -61732,8 +61979,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -62012,7 +62259,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &396 title: CheckRun description: A check performed on the code of a given code change type: object @@ -62147,8 +62394,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *76 - deployment: &702 + items: *78 + deployment: &705 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -62435,9 +62682,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *315 - - *316 - - &394 + - *318 + - *319 + - &397 name: check_run_id description: The unique identifier of the check run. in: path @@ -62449,9 +62696,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *396 examples: - default: &395 + default: &398 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -62551,9 +62798,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *315 - - *316 - - *394 + - *318 + - *319 + - *397 requestBody: required: true content: @@ -62793,9 +63040,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *396 examples: - default: *395 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62815,9 +63062,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *315 - - *316 - - *394 + - *318 + - *319 + - *397 - *17 - *19 responses: @@ -62907,7 +63154,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62927,15 +63174,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *315 - - *316 - - *394 + - *318 + - *319 + - *397 responses: '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -62973,8 +63220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -62996,7 +63243,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &397 + schema: &400 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -63078,12 +63325,12 @@ paths: type: - array - 'null' - items: *76 + items: *78 app: anyOf: - type: 'null' - *5 - repository: *145 + repository: *148 created_at: type: - string @@ -63094,7 +63341,7 @@ paths: - string - 'null' format: date-time - head_commit: *396 + head_commit: *399 latest_check_runs_count: type: integer check_runs_url: @@ -63122,7 +63369,7 @@ paths: - check_runs_url - pull_requests examples: - default: &398 + default: &401 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -63413,9 +63660,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63434,8 +63681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -63496,7 +63743,7 @@ paths: required: - app_id - setting - repository: *145 + repository: *148 examples: default: value: @@ -63744,9 +63991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *315 - - *316 - - &399 + - *318 + - *319 + - &402 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -63758,9 +64005,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *400 examples: - default: *398 + default: *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63783,17 +64030,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *315 - - *316 - - *399 - - &452 + - *318 + - *319 + - *402 + - &455 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &453 + - &456 name: status description: Returns check runs with the specified `status`. in: query @@ -63832,9 +64079,9 @@ paths: type: integer check_runs: type: array - items: *393 + items: *396 examples: - default: &454 + default: &457 value: total_count: 1 check_runs: @@ -63916,7 +64163,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63936,15 +64183,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *315 - - *316 - - *399 + - *318 + - *319 + - *402 responses: '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -63971,30 +64218,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *315 - - *316 - - *400 - - *401 + - *318 + - *319 + - *403 + - *404 - *19 - *17 - - &418 + - &421 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: *402 - - &419 + schema: *405 + - &422 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *51 - - *43 - - *44 + - *53 + - *45 + - *46 - name: sort description: The property by which to sort the results. in: query @@ -64010,13 +64257,13 @@ paths: be returned. in: query required: false - schema: *403 + schema: *406 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *404 + schema: *407 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -64035,24 +64282,24 @@ paths: items: type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 - instances_url: *405 - state: *172 - fixed_at: *168 + number: *166 + created_at: *167 + updated_at: *168 + url: *169 + html_url: *170 + instances_url: *408 + state: *175 + fixed_at: *171 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 - dismissed_reason: *406 - dismissed_comment: *407 - rule: *408 - tool: *409 - most_recent_instance: *410 + dismissed_at: *172 + dismissed_reason: *409 + dismissed_comment: *410 + rule: *411 + tool: *412 + most_recent_instance: *413 dismissal_approved_by: anyOf: - type: 'null' @@ -64175,14 +64422,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &411 + '403': &414 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64202,9 +64449,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *315 - - *316 - - &412 + - *318 + - *319 + - &415 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -64212,30 +64459,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *163 + schema: *166 responses: '200': description: Response content: application/json: - schema: &413 + schema: &416 type: object properties: - number: *163 - created_at: *164 - updated_at: *165 - url: *166 - html_url: *167 - instances_url: *405 - state: *172 - fixed_at: *168 + number: *166 + created_at: *167 + updated_at: *168 + url: *169 + html_url: *170 + instances_url: *408 + state: *175 + fixed_at: *171 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *169 - dismissed_reason: *406 - dismissed_comment: *407 + dismissed_at: *172 + dismissed_reason: *409 + dismissed_comment: *410 rule: type: object properties: @@ -64297,8 +64544,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *409 - most_recent_instance: *410 + tool: *412 + most_recent_instance: *413 dismissal_approved_by: anyOf: - type: 'null' @@ -64394,9 +64641,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64414,9 +64661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 requestBody: required: true content: @@ -64431,8 +64678,8 @@ paths: enum: - open - dismissed - dismissed_reason: *406 - dismissed_comment: *407 + dismissed_reason: *409 + dismissed_comment: *410 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -64460,7 +64707,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *416 examples: default: value: @@ -64536,14 +64783,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &417 + '403': &420 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': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64563,15 +64810,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: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 responses: '200': description: Response content: application/json: - schema: &414 + schema: &417 type: object properties: status: @@ -64598,13 +64845,13 @@ paths: - description - started_at examples: - default: &415 + default: &418 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &416 + '400': &419 description: Bad Request content: application/json: @@ -64615,9 +64862,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': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64640,29 +64887,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: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 responses: '200': description: OK content: application/json: - schema: *414 + schema: *417 examples: - default: *415 + default: *418 '202': description: Accepted content: application/json: - schema: *414 + schema: *417 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *416 + '400': *419 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -64672,7 +64919,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64694,9 +64941,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: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 requestBody: required: false content: @@ -64742,12 +64989,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *416 - '403': *417 + '400': *419 + '403': *420 '404': *6 '422': description: Unprocessable Entity - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64767,13 +65014,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 - *19 - *17 - - *418 - - *419 + - *421 + - *422 responses: '200': description: Response @@ -64784,10 +65031,10 @@ paths: items: type: object properties: - ref: *402 - analysis_key: *420 - environment: *421 - category: *422 + ref: *405 + analysis_key: *423 + environment: *424 + category: *425 state: type: - string @@ -64804,7 +65051,7 @@ paths: properties: text: type: string - location: *423 + location: *426 html_url: type: string classifications: @@ -64812,7 +65059,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: *424 + items: *427 examples: default: value: @@ -64849,9 +65096,9 @@ paths: end_column: 50 classifications: - source - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64883,30 +65130,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *315 - - *316 - - *400 - - *401 + - *318 + - *319 + - *403 + - *404 - *19 - *17 - - *419 + - *422 - 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: *402 + schema: *405 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &425 + schema: &428 type: string description: An identifier for the upload. examples: - 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *51 + - *53 - name: sort description: The property by which to sort the results. in: query @@ -64923,23 +65170,23 @@ paths: application/json: schema: type: array - items: &426 + items: &429 type: object properties: - ref: *402 - commit_sha: &434 + ref: *405 + commit_sha: &437 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: *420 + analysis_key: *423 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *422 + category: *425 error: type: string examples: @@ -64964,8 +65211,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *425 - tool: *409 + sarif_id: *428 + tool: *412 deletable: type: boolean warning: @@ -65027,9 +65274,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65063,8 +65310,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: - - *315 - - *316 + - *318 + - *319 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -65077,7 +65324,7 @@ paths: description: Response content: application/json: - schema: *426 + schema: *429 examples: response: summary: application/json response @@ -65131,14 +65378,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *411 + '403': *414 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65218,8 +65465,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: - - *315 - - *316 + - *318 + - *319 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -65275,9 +65522,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': *417 + '403': *420 '404': *6 - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65297,8 +65544,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -65306,7 +65553,7 @@ paths: application/json: schema: type: array - items: &427 + items: &430 title: CodeQL Database description: A CodeQL database. type: object @@ -65418,9 +65665,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': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65447,8 +65694,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - name: language in: path description: The language of the CodeQL database. @@ -65460,7 +65707,7 @@ paths: description: Response content: application/json: - schema: *427 + schema: *430 examples: default: value: @@ -65492,11 +65739,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': &459 + '302': &462 description: Found - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65516,8 +65763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *315 - - *316 + - *318 + - *319 - name: language in: path description: The language of the CodeQL database. @@ -65527,9 +65774,9 @@ paths: responses: '204': description: Response - '403': *417 + '403': *420 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65555,8 +65802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -65565,7 +65812,7 @@ paths: type: object additionalProperties: false properties: - language: &428 + language: &431 type: string description: The language targeted by the CodeQL query enum: @@ -65645,7 +65892,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &432 + schema: &435 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -65653,9 +65900,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *56 + controller_repo: *58 actor: *4 - query_language: *428 + query_language: *431 query_pack_url: type: string description: The download url for the query pack. @@ -65703,7 +65950,7 @@ paths: items: type: object properties: - repository: &429 + repository: &432 title: Repository Identifier description: Repository Identifier type: object @@ -65745,7 +65992,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &433 + analysis_status: &436 type: string description: The new status of the CodeQL variant analysis repository task. @@ -65777,7 +66024,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &430 + access_mismatch_repos: &433 type: object properties: repository_count: @@ -65792,7 +66039,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: *429 + items: *432 required: - repository_count - repositories @@ -65815,8 +66062,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *430 - over_limit_repos: *430 + no_codeql_db_repos: *433 + over_limit_repos: *433 required: - access_mismatch_repos - not_found_repos @@ -65832,7 +66079,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &431 + value: &434 summary: Default response value: id: 1 @@ -65978,17 +66225,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *431 + value: *434 repository_lists: summary: Response for a successful variant analysis submission - value: *431 + value: *434 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66009,8 +66256,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: - - *315 - - *316 + - *318 + - *319 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -66022,11 +66269,11 @@ paths: description: Response content: application/json: - schema: *432 + schema: *435 examples: - default: *431 + default: *434 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66047,7 +66294,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: - - *315 + - *318 - name: repo in: path description: The name of the controller repository. @@ -66081,8 +66328,8 @@ paths: schema: type: object properties: - repository: *56 - analysis_status: *433 + repository: *58 + analysis_status: *436 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -66186,7 +66433,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66207,8 +66454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -66318,9 +66565,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *411 + '403': *414 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66339,8 +66586,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -66409,7 +66656,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -66434,7 +66681,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *417 + '403': *420 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -66448,7 +66695,7 @@ paths: content: application/json: schema: *3 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66505,8 +66752,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -66514,7 +66761,7 @@ paths: schema: type: object properties: - commit_sha: *434 + commit_sha: *437 ref: type: string description: |- @@ -66574,7 +66821,7 @@ paths: schema: type: object properties: - id: *425 + id: *428 url: type: string description: The REST API URL for checking the status of the upload. @@ -66588,11 +66835,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': *417 + '403': *420 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66611,8 +66858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *315 - - *316 + - *318 + - *319 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -66660,10 +66907,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': *411 + '403': *414 '404': description: Not Found if the sarif id does not match any upload - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66685,8 +66932,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -66710,7 +66957,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *45 + configuration: *47 examples: default: value: @@ -66742,7 +66989,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': *176 + '204': *179 '304': *35 '403': *27 '404': *6 @@ -66767,8 +67014,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *315 - - *316 + - *318 + - *319 - 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 @@ -66896,8 +67143,8 @@ paths: parameters: - *17 - *19 - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -66913,7 +67160,7 @@ paths: type: integer codespaces: type: array - items: *225 + items: *228 examples: default: value: @@ -67189,7 +67436,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': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -67211,8 +67458,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -67276,22 +67523,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -67315,8 +67562,8 @@ paths: parameters: - *17 - *19 - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -67356,7 +67603,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *105 + '500': *107 '400': *14 '401': *23 '403': *27 @@ -67380,8 +67627,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -67418,9 +67665,9 @@ paths: type: integer machines: type: array - items: *436 + items: *439 examples: - default: &646 + default: &649 value: total_count: 2 machines: @@ -67437,7 +67684,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -67460,8 +67707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *315 - - *316 + - *318 + - *319 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -67548,8 +67795,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: - - *315 - - *316 + - *318 + - *319 - 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 @@ -67597,7 +67844,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67618,8 +67865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -67637,7 +67884,7 @@ paths: type: integer secrets: type: array - items: &440 + items: &443 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -67658,9 +67905,9 @@ paths: - created_at - updated_at examples: - default: *437 + default: *440 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67681,16 +67928,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *438 + schema: *441 examples: - default: *439 + default: *442 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -67710,17 +67957,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '200': description: Response content: application/json: - schema: *440 + schema: *443 examples: - default: *441 + default: *444 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67740,9 +67987,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 requestBody: required: true content: @@ -67770,7 +68017,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -67794,9 +68041,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '204': description: Response @@ -67824,8 +68071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *315 - - *316 + - *318 + - *319 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -67863,7 +68110,7 @@ paths: application/json: schema: type: array - items: &442 + items: &445 title: Collaborator description: Collaborator type: object @@ -68031,7 +68278,7 @@ paths: admin: false role_name: write headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -68056,9 +68303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 responses: '204': description: Response if user is a collaborator @@ -68104,9 +68351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 requestBody: required: false content: @@ -68132,7 +68379,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &509 + schema: &512 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -68144,7 +68391,7 @@ paths: format: int64 examples: - 42 - repository: *145 + repository: *148 invitee: anyOf: - type: 'null' @@ -68320,7 +68567,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *114 + schema: *116 '403': *27 x-github: triggersNotification: true @@ -68360,9 +68607,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 responses: '204': description: No Content when collaborator was removed from the repository. @@ -68393,9 +68640,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *315 - - *316 - - *61 + - *318 + - *319 + - *63 responses: '200': description: if user has admin permissions @@ -68415,7 +68662,7 @@ paths: user: anyOf: - type: 'null' - - *442 + - *445 required: - permission - role_name @@ -68469,8 +68716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -68480,7 +68727,7 @@ paths: application/json: schema: type: array - items: &443 + items: &446 title: Commit Comment description: Commit Comment type: object @@ -68521,8 +68768,8 @@ paths: updated_at: type: string format: date-time - author_association: *70 - reactions: *71 + author_association: *72 + reactions: *73 required: - url - html_url @@ -68538,7 +68785,7 @@ paths: - created_at - updated_at examples: - default: &448 + default: &451 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68572,7 +68819,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68597,17 +68844,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: &449 + default: &452 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68664,9 +68911,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -68688,7 +68935,7 @@ paths: description: Response content: application/json: - schema: *443 + schema: *446 examples: default: value: @@ -68739,9 +68986,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response @@ -68762,9 +69009,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 - 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. @@ -68790,7 +69037,7 @@ paths: application/json: schema: type: array - items: &444 + items: &447 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -68834,7 +69081,7 @@ paths: - content - created_at examples: - default: &512 + default: &515 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -68860,7 +69107,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -68879,9 +69126,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -68913,9 +69160,9 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: &445 + default: &448 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -68944,9 +69191,9 @@ paths: description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -68968,10 +69215,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *315 - - *316 - - *87 - - &513 + - *318 + - *319 + - *89 + - &516 name: reaction_id description: The unique identifier of the reaction. in: path @@ -69026,8 +69273,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *315 - - *316 + - *318 + - *319 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -69083,9 +69330,9 @@ paths: application/json: schema: type: array - items: *446 + items: *449 examples: - default: &559 + default: &562 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69155,11 +69402,11 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *57 - '500': *105 + Link: *59 + '500': *107 '400': *14 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69179,9 +69426,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *315 - - *316 - - &447 + - *318 + - *319 + - &450 name: commit_sha description: The SHA of the commit. in: path @@ -69228,7 +69475,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69253,9 +69500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 - *17 - *19 responses: @@ -69265,11 +69512,11 @@ paths: application/json: schema: type: array - items: *443 + items: *446 examples: - default: *448 + default: *451 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69295,9 +69542,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 requestBody: required: true content: @@ -69332,9 +69579,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: *449 + default: *452 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -69362,9 +69609,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 - *17 - *19 responses: @@ -69374,9 +69621,9 @@ paths: application/json: schema: type: array - items: *450 + items: *453 examples: - default: &551 + default: &554 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -69855,8 +70102,8 @@ paths: auto_merge: draft: false headers: - Link: *57 - '409': *50 + Link: *59 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69913,11 +70160,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *315 - - *316 + - *318 + - *319 - *19 - *17 - - &451 + - &454 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)" @@ -69932,9 +70179,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *449 examples: - default: &539 + default: &542 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -70020,9 +70267,9 @@ paths: ..... '422': *15 '404': *6 - '500': *105 - '503': *106 - '409': *50 + '500': *107 + '503': *108 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70047,11 +70294,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *315 - - *316 - - *451 - - *452 - - *453 + - *318 + - *319 + - *454 + - *455 + - *456 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -70085,11 +70332,11 @@ paths: type: integer check_runs: type: array - items: *393 + items: *396 examples: - default: *454 + default: *457 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70112,9 +70359,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *315 - - *316 - - *451 + - *318 + - *319 + - *454 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -70122,7 +70369,7 @@ paths: schema: type: integer example: 1 - - *452 + - *455 - *17 - *19 responses: @@ -70140,7 +70387,7 @@ paths: type: integer check_suites: type: array - items: *397 + items: *400 examples: default: value: @@ -70315,7 +70562,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: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70340,9 +70587,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *315 - - *316 - - *451 + - *318 + - *319 + - *454 - *17 - *19 responses: @@ -70413,7 +70660,7 @@ paths: type: string total_count: type: integer - repository: *145 + repository: *148 commit_url: type: string format: uri @@ -70544,9 +70791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *315 - - *316 - - *451 + - *318 + - *319 + - *454 - *17 - *19 responses: @@ -70556,7 +70803,7 @@ paths: application/json: schema: type: array - items: &624 + items: &627 title: Status description: The status of a commit. type: object @@ -70636,8 +70883,8 @@ paths: type: User site_admin: false headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70665,8 +70912,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -70699,11 +70946,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *455 + - *458 code_of_conduct_file: anyOf: - type: 'null' - - &456 + - &459 title: Community Health File type: object properties: @@ -70719,23 +70966,23 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 contributing: anyOf: - type: 'null' - - *456 + - *459 readme: anyOf: - type: 'null' - - *456 + - *459 issue_template: anyOf: - type: 'null' - - *456 + - *459 pull_request_template: anyOf: - type: 'null' - - *456 + - *459 required: - code_of_conduct - code_of_conduct_file @@ -70864,8 +71111,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *315 - - *316 + - *318 + - *319 - *19 - *17 - name: basehead @@ -70913,8 +71160,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *446 - merge_base_commit: *446 + base_commit: *449 + merge_base_commit: *449 status: type: string enum: @@ -70938,10 +71185,10 @@ paths: - 6 commits: type: array - items: *446 + items: *449 files: type: array - items: *457 + items: *460 required: - url - html_url @@ -71184,8 +71431,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71227,8 +71474,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *315 - - *316 + - *318 + - *319 - name: path description: path parameter in: path @@ -71398,7 +71645,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &458 + response-if-content-is-a-file-github-object: &461 summary: Response if content is a file value: type: file @@ -71535,7 +71782,7 @@ paths: - size - type - url - - &564 + - &567 title: Content File description: Content File type: object @@ -71753,7 +72000,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *458 + response-if-content-is-a-file: *461 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -71822,7 +72069,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *459 + '302': *462 '304': *35 x-github: githubCloudOnly: false @@ -71875,8 +72122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *315 - - *316 + - *318 + - *319 - name: path description: path parameter in: path @@ -71971,7 +72218,7 @@ paths: description: Response content: application/json: - schema: &460 + schema: &463 title: File Commit description: File Commit type: object @@ -72127,7 +72374,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *463 examples: example-for-creating-a-file: value: @@ -72181,7 +72428,7 @@ paths: schema: oneOf: - *3 - - &491 + - &494 description: Repository rule violation was detected type: object properties: @@ -72202,7 +72449,7 @@ paths: items: type: object properties: - placeholder_id: &616 + placeholder_id: &619 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -72234,8 +72481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *315 - - *316 + - *318 + - *319 - name: path description: path parameter in: path @@ -72296,7 +72543,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *463 examples: default: value: @@ -72330,8 +72577,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *50 - '503': *106 + '409': *52 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72351,8 +72598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *315 - - *316 + - *318 + - *319 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -72453,7 +72700,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *57 + Link: *59 '204': description: Response if repository is empty '403': *27 @@ -72476,26 +72723,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *315 - - *316 - - *181 - - *182 - - *183 + - *318 + - *319 - *184 + - *185 + - *186 + - *187 - 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 - - *185 - - *461 - - *186 - - *187 - *188 - - *51 - - *43 - - *44 + - *464 + - *189 + - *190 + - *191 + - *53 + - *45 + - *46 - *17 responses: '200': @@ -72504,11 +72751,11 @@ paths: application/json: schema: type: array - items: &465 + items: &468 type: object description: A Dependabot alert. properties: - number: *163 + number: *166 state: type: string description: The state of the Dependabot alert. @@ -72523,7 +72770,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *52 + package: *54 manifest_path: type: string description: The full path to the dependency manifest file, @@ -72554,13 +72801,13 @@ paths: - direct - transitive - - security_advisory: *462 - security_vulnerability: *55 - url: *166 - html_url: *167 - created_at: *164 - updated_at: *165 - dismissed_at: *169 + security_advisory: *465 + security_vulnerability: *57 + url: *169 + html_url: *170 + created_at: *167 + updated_at: *168 + dismissed_at: *172 dismissed_by: anyOf: - type: 'null' @@ -72584,9 +72831,9 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *168 - auto_dismissed_at: *463 - dismissal_request: *464 + fixed_at: *171 + auto_dismissed_at: *466 + dismissal_request: *467 assignees: type: array description: The users assigned to this alert. @@ -72841,9 +73088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *315 - - *316 - - &466 + - *318 + - *319 + - &469 name: alert_number in: path description: |- @@ -72852,13 +73099,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *163 + schema: *166 responses: '200': description: Response content: application/json: - schema: *465 + schema: *468 examples: default: value: @@ -72990,9 +73237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *315 - - *316 - - *466 + - *318 + - *319 + - *469 requestBody: required: true content: @@ -73048,7 +73295,7 @@ paths: description: Response content: application/json: - schema: *465 + schema: *468 examples: default: value: @@ -73155,7 +73402,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *50 + '409': *52 '422': *7 x-github: githubCloudOnly: false @@ -73178,8 +73425,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -73197,7 +73444,7 @@ paths: type: integer secrets: type: array - items: &469 + items: &472 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -73229,7 +73476,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73251,16 +73498,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *467 + schema: *470 examples: - default: *468 + default: *471 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73280,15 +73527,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '200': description: Response content: application/json: - schema: *469 + schema: *472 examples: default: value: @@ -73314,9 +73561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 requestBody: required: true content: @@ -73344,7 +73591,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -73368,9 +73615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *315 - - *316 - - *153 + - *318 + - *319 + - *156 responses: '204': description: Response @@ -73392,8 +73639,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: - - *315 - - *316 + - *318 + - *319 - 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 @@ -73543,7 +73790,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *57 + Link: *59 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -73567,8 +73814,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -73805,7 +74052,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *57 + Link: *59 '404': *6 '403': *27 x-github: @@ -73828,8 +74075,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -73912,7 +74159,7 @@ paths: - version - url additionalProperties: false - metadata: &470 + metadata: &473 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -73951,7 +74198,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *470 + metadata: *473 resolved: type: object description: A collection of resolved package dependencies. @@ -73965,7 +74212,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *470 + metadata: *473 relationship: type: string description: A notation of whether a dependency is requested @@ -74098,8 +74345,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *315 - - *316 + - *318 + - *319 - name: sha description: The SHA recorded at creation time. in: query @@ -74140,11 +74387,11 @@ paths: application/json: schema: type: array - items: *471 + items: *474 examples: - default: *472 + default: *475 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74208,8 +74455,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -74291,7 +74538,7 @@ paths: description: Response content: application/json: - schema: *471 + schema: *474 examples: simple-example: summary: Simple example @@ -74364,9 +74611,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *315 - - *316 - - &473 + - *318 + - *319 + - &476 name: deployment_id description: deployment_id parameter in: path @@ -74378,7 +74625,7 @@ paths: description: Response content: application/json: - schema: *471 + schema: *474 examples: default: value: @@ -74443,9 +74690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 responses: '204': description: Response @@ -74467,9 +74714,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 - *17 - *19 responses: @@ -74479,7 +74726,7 @@ paths: application/json: schema: type: array - items: &474 + items: &477 title: Deployment Status description: The status of a deployment. type: object @@ -74623,7 +74870,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -74643,9 +74890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 requestBody: required: true content: @@ -74720,9 +74967,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *477 examples: - default: &475 + default: &478 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -74778,9 +75025,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *315 - - *316 - - *473 + - *318 + - *319 + - *476 - name: status_id in: path required: true @@ -74791,9 +75038,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *477 examples: - default: *475 + default: *478 '404': *6 x-github: githubCloudOnly: false @@ -74818,8 +75065,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -74876,8 +75123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -74895,7 +75142,7 @@ paths: - 5 environments: type: array - items: &477 + items: &480 title: Environment description: Details of a deployment environment type: object @@ -74957,7 +75204,7 @@ paths: type: string examples: - wait_timer - wait_timer: &479 + wait_timer: &482 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -74999,11 +75246,11 @@ paths: items: type: object properties: - type: *476 + type: *479 reviewer: anyOf: - *4 - - *180 + - *183 required: - id - node_id @@ -75026,7 +75273,7 @@ paths: - id - node_id - type - deployment_branch_policy: &480 + deployment_branch_policy: &483 type: - object - 'null' @@ -75143,9 +75390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *315 - - *316 - - &478 + - *318 + - *319 + - &481 name: environment_name in: path required: true @@ -75158,9 +75405,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: &481 + default: &484 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -75244,9 +75491,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 requestBody: required: false content: @@ -75256,7 +75503,7 @@ paths: - object - 'null' properties: - wait_timer: *479 + wait_timer: *482 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -75275,14 +75522,14 @@ paths: items: type: object properties: - type: *476 + type: *479 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *480 + deployment_branch_policy: *483 additionalProperties: false examples: default: @@ -75302,9 +75549,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: *481 + default: *484 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -75328,9 +75575,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 responses: '204': description: Default response @@ -75355,9 +75602,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 - *17 - *19 responses: @@ -75376,7 +75623,7 @@ paths: - 2 branch_policies: type: array - items: &482 + items: &485 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -75437,9 +75684,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 requestBody: required: true content: @@ -75487,9 +75734,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - example-wildcard: &483 + example-wildcard: &486 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -75531,10 +75778,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 - - &484 + - *318 + - *319 + - *481 + - &487 name: branch_policy_id in: path required: true @@ -75546,9 +75793,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75567,10 +75814,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 - - *484 + - *318 + - *319 + - *481 + - *487 requestBody: required: true content: @@ -75599,9 +75846,9 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75620,10 +75867,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *315 - - *316 - - *478 - - *484 + - *318 + - *319 + - *481 + - *487 responses: '204': description: Response @@ -75648,9 +75895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *478 - - *316 - - *315 + - *481 + - *319 + - *318 responses: '200': description: List of deployment protection rules @@ -75667,7 +75914,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &485 + items: &488 title: Deployment protection rule description: Deployment protection rule type: object @@ -75689,7 +75936,7 @@ paths: for the environment. examples: - true - app: &486 + app: &489 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -75792,9 +76039,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: - - *478 - - *316 - - *315 + - *481 + - *319 + - *318 requestBody: content: application/json: @@ -75815,9 +76062,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *485 + schema: *488 examples: - default: &487 + default: &490 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -75852,9 +76099,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: - - *478 - - *316 - - *315 + - *481 + - *319 + - *318 - *19 - *17 responses: @@ -75874,7 +76121,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *486 + items: *489 examples: default: value: @@ -75909,10 +76156,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *315 - - *316 - - *478 - - &488 + - *318 + - *319 + - *481 + - &491 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -75924,9 +76171,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *488 examples: - default: *487 + default: *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75947,10 +76194,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *478 - - *316 - - *315 - - *488 + - *481 + - *319 + - *318 + - *491 responses: '204': description: Response @@ -75976,9 +76223,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 - *17 - *19 responses: @@ -75996,11 +76243,11 @@ paths: type: integer secrets: type: array - items: *360 + items: *363 examples: - default: *361 + default: *364 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76023,17 +76270,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 responses: '200': description: Response content: application/json: - schema: *362 + schema: *365 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76055,18 +76302,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *315 - - *316 - - *478 - - *153 + - *318 + - *319 + - *481 + - *156 responses: '200': description: Response content: application/json: - schema: *360 + schema: *363 examples: - default: *489 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76088,10 +76335,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *315 - - *316 - - *478 - - *153 + - *318 + - *319 + - *481 + - *156 requestBody: required: true content: @@ -76122,7 +76369,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -76148,10 +76395,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *315 - - *316 - - *478 - - *153 + - *318 + - *319 + - *481 + - *156 responses: '204': description: Default response @@ -76176,10 +76423,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *315 - - *316 - - *478 - - *331 + - *318 + - *319 + - *481 + - *334 - *19 responses: '200': @@ -76196,11 +76443,11 @@ paths: type: integer variables: type: array - items: *364 + items: *367 examples: - default: *365 + default: *368 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76221,9 +76468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *315 - - *316 - - *478 + - *318 + - *319 + - *481 requestBody: required: true content: @@ -76250,7 +76497,7 @@ paths: description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -76275,18 +76522,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *315 - - *316 - - *478 - - *156 + - *318 + - *319 + - *481 + - *159 responses: '200': description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: *490 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76307,10 +76554,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *315 - - *316 - - *156 - - *478 + - *318 + - *319 + - *159 + - *481 requestBody: required: true content: @@ -76352,10 +76599,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *315 - - *316 - - *156 - - *478 + - *318 + - *319 + - *159 + - *481 responses: '204': description: Response @@ -76377,8 +76624,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -76388,7 +76635,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: 200-response: value: @@ -76446,8 +76693,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *315 - - *316 + - *318 + - *319 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -76469,7 +76716,7 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: default: value: @@ -76582,7 +76829,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *57 + Link: *59 '400': *14 x-github: githubCloudOnly: false @@ -76606,8 +76853,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -76640,9 +76887,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 '400': *14 '422': *15 '403': *27 @@ -76663,8 +76910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -76715,7 +76962,7 @@ paths: schema: type: string '404': *6 - '409': *50 + '409': *52 '403': *27 '422': description: Validation failed @@ -76723,8 +76970,8 @@ paths: application/json: schema: oneOf: - - *114 - - *491 + - *116 + - *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76749,8 +76996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *315 - - *316 + - *318 + - *319 - name: file_sha in: path required: true @@ -76802,7 +77049,7 @@ paths: '404': *6 '422': *15 '403': *27 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76850,8 +77097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -76960,7 +77207,7 @@ paths: description: Response content: application/json: - schema: &492 + schema: &495 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -77137,7 +77384,7 @@ paths: type: string '422': *15 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77187,15 +77434,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *315 - - *316 - - *447 + - *318 + - *319 + - *450 responses: '200': description: Response content: application/json: - schema: *492 + schema: *495 examples: default: value: @@ -77226,7 +77473,7 @@ paths: payload: verified_at: '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77251,9 +77498,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *315 - - *316 - - &493 + - *318 + - *319 + - &496 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. @@ -77270,7 +77517,7 @@ paths: application/json: schema: type: array - items: &494 + items: &497 title: Git Reference description: Git references within a repository type: object @@ -77324,8 +77571,8 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *57 - '409': *50 + Link: *59 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77346,17 +77593,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *315 - - *316 - - *493 + - *318 + - *319 + - *496 responses: '200': description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: &495 + default: &498 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -77366,7 +77613,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77385,8 +77632,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -77415,16 +77662,16 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: *495 + default: *498 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77443,9 +77690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *315 - - *316 - - *493 + - *318 + - *319 + - *496 requestBody: required: true content: @@ -77474,11 +77721,11 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: *495 + default: *498 '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77494,16 +77741,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *315 - - *316 - - *493 + - *318 + - *319 + - *496 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77551,8 +77798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -77619,7 +77866,7 @@ paths: description: Response content: application/json: - schema: &497 + schema: &500 title: Git Tag description: Metadata for a Git tag type: object @@ -77675,7 +77922,7 @@ paths: - sha - type - url - verification: *496 + verification: *499 required: - sha - url @@ -77685,7 +77932,7 @@ paths: - tag - message examples: - default: &498 + default: &501 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -77712,7 +77959,7 @@ paths: schema: type: string '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77758,8 +78005,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *315 - - *316 + - *318 + - *319 - name: tag_sha in: path required: true @@ -77770,11 +78017,11 @@ paths: description: Response content: application/json: - schema: *497 + schema: *500 examples: - default: *498 + default: *501 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77796,8 +78043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -77871,7 +78118,7 @@ paths: description: Response content: application/json: - schema: &499 + schema: &502 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -77950,7 +78197,7 @@ paths: '422': *15 '404': *6 '403': *27 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77973,8 +78220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *315 - - *316 + - *318 + - *319 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -77997,7 +78244,7 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: default-response: summary: Default response @@ -78038,7 +78285,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78056,8 +78303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -78067,7 +78314,7 @@ paths: application/json: schema: type: array - items: &500 + items: &503 title: Webhook description: Webhooks for repositories. type: object @@ -78130,7 +78377,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &733 + last_response: &736 title: Hook Response type: object properties: @@ -78188,7 +78435,7 @@ paths: status: unused message: headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -78207,8 +78454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -78261,9 +78508,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *503 examples: - default: &501 + default: &504 value: type: Repository id: 12345678 @@ -78311,17 +78558,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '200': description: Response content: application/json: - schema: *500 + schema: *503 examples: - default: *501 + default: *504 '404': *6 x-github: githubCloudOnly: false @@ -78341,9 +78588,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 requestBody: required: true content: @@ -78388,9 +78635,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *503 examples: - default: *501 + default: *504 '422': *15 '404': *6 x-github: @@ -78411,9 +78658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '204': description: Response @@ -78437,9 +78684,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '200': description: Response @@ -78466,9 +78713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 requestBody: required: false content: @@ -78512,11 +78759,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 - *17 - - *195 + - *198 responses: '200': description: Response @@ -78524,9 +78771,9 @@ paths: application/json: schema: type: array - items: *196 + items: *199 examples: - default: *197 + default: *200 '400': *14 '422': *15 x-github: @@ -78545,18 +78792,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 - *16 responses: '200': description: Response content: application/json: - schema: *198 + schema: *201 examples: - default: *199 + default: *202 '400': *14 '422': *15 x-github: @@ -78575,9 +78822,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 - *16 responses: '202': *37 @@ -78600,9 +78847,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '204': description: Response @@ -78627,9 +78874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *315 - - *316 - - *194 + - *318 + - *319 + - *197 responses: '204': description: Response @@ -78652,8 +78899,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response if immutable releases are enabled @@ -78701,11 +78948,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 - '409': *50 + '204': *179 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78722,11 +78969,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 - '409': *50 + '204': *179 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78780,14 +79027,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &502 + schema: &505 title: Import description: A repository import from an external source. type: object @@ -78894,7 +79141,7 @@ paths: - html_url - authors_url examples: - default: &505 + default: &508 value: vcs: subversion use_lfs: true @@ -78910,7 +79157,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': &503 + '503': &506 description: Unavailable due to service under maintenance. content: application/json: @@ -78939,8 +79186,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -78988,7 +79235,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *505 examples: default: value: @@ -79013,7 +79260,7 @@ paths: type: string '422': *15 '404': *6 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79041,8 +79288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -79094,7 +79341,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *505 examples: example-1: summary: Example 1 @@ -79142,7 +79389,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': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79165,12 +79412,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79196,9 +79443,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *315 - - *316 - - &667 + - *318 + - *319 + - &670 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -79212,7 +79459,7 @@ paths: application/json: schema: type: array - items: &504 + items: &507 title: Porter Author description: Porter Author type: object @@ -79266,7 +79513,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': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79291,8 +79538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *315 - - *316 + - *318 + - *319 - name: author_id in: path required: true @@ -79322,7 +79569,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: default: value: @@ -79335,7 +79582,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79359,8 +79606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -79401,7 +79648,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79429,8 +79676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -79457,11 +79704,11 @@ paths: description: Response content: application/json: - schema: *502 + schema: *505 examples: - default: *505 + default: *508 '422': *15 - '503': *503 + '503': *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79484,8 +79731,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -79493,8 +79740,8 @@ paths: application/json: schema: *20 examples: - default: *506 - '301': *319 + default: *509 + '301': *322 '404': *6 x-github: githubCloudOnly: false @@ -79514,8 +79761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -79523,12 +79770,12 @@ paths: application/json: schema: anyOf: - - *212 + - *215 - type: object properties: {} additionalProperties: false examples: - default: &508 + default: &511 value: limit: collaborators_only origin: repository @@ -79553,13 +79800,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: application/json: - schema: *507 + schema: *510 examples: default: summary: Example request body @@ -79571,9 +79818,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *215 examples: - default: *508 + default: *511 '409': description: Response x-github: @@ -79595,8 +79842,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -79619,8 +79866,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -79630,9 +79877,9 @@ paths: application/json: schema: type: array - items: *509 + items: *512 examples: - default: &660 + default: &663 value: - id: 1 repository: @@ -79746,7 +79993,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79763,9 +80010,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *315 - - *316 - - *216 + - *318 + - *319 + - *219 requestBody: required: false content: @@ -79794,7 +80041,7 @@ paths: description: Response content: application/json: - schema: *509 + schema: *512 examples: default: value: @@ -79925,9 +80172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *315 - - *316 - - *216 + - *318 + - *319 + - *219 responses: '204': description: Response @@ -79958,8 +80205,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *315 - - *316 + - *318 + - *319 - 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 @@ -80007,7 +80254,7 @@ paths: required: false schema: type: string - - *223 + - *226 - name: sort description: What to sort results by. in: query @@ -80019,8 +80266,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - *17 - *19 responses: @@ -80030,9 +80277,9 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: &518 + default: &521 value: - id: 1 node_id: MDU6SXNzdWUx @@ -80180,8 +80427,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '422': *15 '404': *6 x-github: @@ -80210,8 +80457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -80301,9 +80548,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: &515 + default: &518 value: id: 1 node_id: MDU6SXNzdWUx @@ -80458,9 +80705,9 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *106 + '503': *108 '404': *6 - '410': *510 + '410': *513 x-github: triggersNotification: true githubCloudOnly: false @@ -80498,9 +80745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *315 - - *316 - - *95 + - *318 + - *319 + - *97 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -80510,7 +80757,7 @@ paths: enum: - asc - desc - - *78 + - *80 - *17 - *19 responses: @@ -80520,9 +80767,9 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: &517 + default: &520 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80553,7 +80800,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *57 + Link: *59 '422': *15 '404': *6 x-github: @@ -80580,17 +80827,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: &511 + default: &514 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80645,9 +80892,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -80669,9 +80916,9 @@ paths: description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: *511 + default: *514 '422': *15 x-github: githubCloudOnly: false @@ -80689,9 +80936,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response @@ -80719,15 +80966,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: default: value: @@ -80783,7 +81030,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *510 + '410': *513 '422': *15 x-github: githubCloudOnly: false @@ -80800,17 +81047,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response '401': *23 '403': *27 '404': *6 - '410': *510 - '503': *106 + '410': *513 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80827,9 +81074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 - 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. @@ -80855,11 +81102,11 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -80878,9 +81125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -80912,16 +81159,16 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -80943,10 +81190,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *315 - - *316 - - *87 - - *513 + - *318 + - *319 + - *89 + - *516 responses: '204': description: Response @@ -80966,8 +81213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -80977,7 +81224,7 @@ paths: application/json: schema: type: array - items: &514 + items: &517 title: Issue Event description: Issue Event type: object @@ -81024,7 +81271,7 @@ paths: issue: anyOf: - type: 'null' - - *73 + - *75 label: title: Issue Event Label description: Issue Event Label @@ -81057,7 +81304,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *180 + requested_team: *183 dismissed_review: title: Issue Event Dismissed Review type: object @@ -81124,7 +81371,7 @@ paths: required: - from - to - author_association: *70 + author_association: *72 lock_reason: type: - string @@ -81299,7 +81546,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -81317,8 +81564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *315 - - *316 + - *318 + - *319 - name: event_id in: path required: true @@ -81329,7 +81576,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -81522,7 +81769,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *510 + '410': *513 '403': *27 x-github: githubCloudOnly: false @@ -81556,9 +81803,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *315 - - *316 - - &516 + - *318 + - *319 + - &519 name: issue_number description: The number that identifies the issue. in: path @@ -81570,11 +81817,11 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: default: summary: Issue - value: *515 + value: *518 pinned_comment: summary: Issue with pinned comment value: @@ -81773,9 +82020,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 '304': *35 x-github: githubCloudOnly: false @@ -81800,9 +82047,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -81941,15 +82188,15 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 '422': *15 - '503': *106 + '503': *108 '403': *27 - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81977,9 +82224,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -82005,9 +82252,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82023,9 +82270,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: content: application/json: @@ -82050,9 +82297,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82074,9 +82321,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: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - name: assignee in: path required: true @@ -82116,10 +82363,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *315 - - *316 - - *516 - - *78 + - *318 + - *319 + - *519 + - *80 - *17 - *19 responses: @@ -82129,13 +82376,13 @@ paths: application/json: schema: type: array - items: *74 + items: *76 examples: - default: *517 + default: *520 headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82164,9 +82411,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -82188,16 +82435,16 @@ paths: description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: *511 + default: *514 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *510 + '410': *513 '422': *15 '404': *6 x-github: @@ -82225,9 +82472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -82237,14 +82484,14 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *518 + default: *521 headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82272,9 +82519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -82296,17 +82543,17 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *319 + '301': *322 '403': *27 - '410': *510 + '410': *513 '422': *15 '404': *6 x-github: @@ -82337,9 +82584,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -82351,15 +82598,15 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 - '301': *319 + default: *518 + '301': *322 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *510 + '410': *513 x-github: triggersNotification: true githubCloudOnly: false @@ -82385,9 +82632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -82397,14 +82644,14 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *518 + default: *521 headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82421,9 +82668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -82437,7 +82684,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &521 + - &524 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -82486,7 +82733,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &522 + - &525 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -82614,7 +82861,7 @@ paths: - performed_via_github_app - assignee - assigner - - &523 + - &526 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -82660,7 +82907,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &524 + - &527 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -82706,7 +82953,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &525 + - &528 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -82755,7 +83002,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &526 + - &529 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -82784,7 +83031,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *180 + requested_team: *183 requested_reviewer: *4 required: - review_requester @@ -82797,7 +83044,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &527 + - &530 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -82826,7 +83073,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *180 + requested_team: *183 requested_reviewer: *4 required: - review_requester @@ -82839,7 +83086,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &528 + - &531 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -82895,7 +83142,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &529 + - &532 title: Locked Issue Event description: Locked Issue Event type: object @@ -82940,7 +83187,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &530 + - &533 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -83001,7 +83248,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &531 + - &534 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -83062,7 +83309,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &532 + - &535 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -83123,7 +83370,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &533 + - &536 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -83215,8 +83462,8 @@ paths: name: label color: red headers: - Link: *57 - '410': *510 + Link: *59 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83233,9 +83480,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -83245,9 +83492,9 @@ paths: application/json: schema: type: array - items: *519 + items: *522 examples: - default: &630 + default: &633 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -83270,10 +83517,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83290,9 +83537,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -83302,9 +83549,9 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: &520 + default: &523 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83321,10 +83568,10 @@ paths: color: a2eeef default: false headers: - Link: *57 - '301': *319 + Link: *59 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83340,9 +83587,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -83385,12 +83632,12 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 - '301': *319 + default: *523 + '301': *322 '404': *6 - '410': *510 + '410': *513 '422': *15 x-github: githubCloudOnly: false @@ -83407,9 +83654,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -83469,12 +83716,12 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 - '301': *319 + default: *523 + '301': *322 '404': *6 - '410': *510 + '410': *513 '422': *15 x-github: githubCloudOnly: false @@ -83491,15 +83738,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 responses: '204': description: Response - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83518,9 +83765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - name: name in: path required: true @@ -83533,7 +83780,7 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: default: value: @@ -83544,9 +83791,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *319 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83566,9 +83813,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: false content: @@ -83597,7 +83844,7 @@ paths: '204': description: Response '403': *27 - '410': *510 + '410': *513 '404': *6 '422': *15 x-github: @@ -83615,9 +83862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 responses: '204': description: Response @@ -83647,20 +83894,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 responses: '200': description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 - '301': *319 + default: *518 + '301': *322 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83677,9 +83924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - 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. @@ -83705,13 +83952,13 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83729,9 +83976,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -83763,16 +84010,16 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Response content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -83794,10 +84041,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *315 - - *316 + - *318 + - *319 + - *519 - *516 - - *513 responses: '204': description: Response @@ -83826,9 +84073,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -83850,9 +84097,9 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -83885,9 +84132,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -83897,13 +84144,13 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *518 + default: *521 headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83931,9 +84178,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -83960,16 +84207,16 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *510 + '410': *513 '422': *15 '404': *6 x-github: @@ -83989,9 +84236,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 requestBody: required: true content: @@ -84022,13 +84269,13 @@ paths: description: Response content: application/json: - schema: *73 + schema: *75 examples: - default: *515 + default: *518 '403': *27 '404': *6 '422': *7 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -84046,9 +84293,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *315 - - *316 - - *516 + - *318 + - *319 + - *519 - *17 - *19 responses: @@ -84063,9 +84310,6 @@ paths: description: Timeline Event type: object anyOf: - - *521 - - *522 - - *523 - *524 - *525 - *526 @@ -84076,6 +84320,9 @@ paths: - *531 - *532 - *533 + - *534 + - *535 + - *536 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -84123,16 +84370,16 @@ paths: issue_url: type: string format: uri - author_association: *70 + author_association: *72 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *71 + reactions: *73 pin: anyOf: - type: 'null' - - *534 + - *537 required: - event - actor @@ -84163,7 +84410,7 @@ paths: properties: type: type: string - issue: *73 + issue: *75 required: - event - created_at @@ -84385,7 +84632,7 @@ paths: type: string body_text: type: string - author_association: *70 + author_association: *72 required: - event - id @@ -84408,7 +84655,7 @@ paths: type: string comments: type: array - items: &553 + items: &556 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -84516,7 +84763,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *70 + author_association: *72 _links: type: object properties: @@ -84611,7 +84858,7 @@ paths: enum: - line - file - reactions: *71 + reactions: *73 body_html: type: string examples: @@ -84649,7 +84896,7 @@ paths: type: string comments: type: array - items: *443 + items: *446 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -84922,9 +85169,9 @@ paths: type: User site_admin: true headers: - Link: *57 + Link: *59 '404': *6 - '410': *510 + '410': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84941,8 +85188,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -84952,7 +85199,7 @@ paths: application/json: schema: type: array - items: &535 + items: &538 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -85004,7 +85251,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85020,8 +85267,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85057,9 +85304,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *538 examples: - default: &536 + default: &539 value: id: 1 key: ssh-rsa AAA... @@ -85093,9 +85340,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *315 - - *316 - - &537 + - *318 + - *319 + - &540 name: key_id description: The unique identifier of the key. in: path @@ -85107,9 +85354,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *538 examples: - default: *536 + default: *539 '404': *6 x-github: githubCloudOnly: false @@ -85127,9 +85374,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *315 - - *316 - - *537 + - *318 + - *319 + - *540 responses: '204': description: Response @@ -85149,8 +85396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -85160,11 +85407,11 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 + default: *523 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -85183,8 +85430,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85220,9 +85467,9 @@ paths: description: Response content: application/json: - schema: *72 + schema: *74 examples: - default: &538 + default: &541 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -85254,8 +85501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *315 - - *316 + - *318 + - *319 - name: name in: path required: true @@ -85266,9 +85513,9 @@ paths: description: Response content: application/json: - schema: *72 + schema: *74 examples: - default: *538 + default: *541 '404': *6 x-github: githubCloudOnly: false @@ -85285,8 +85532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *315 - - *316 + - *318 + - *319 - name: name in: path required: true @@ -85325,7 +85572,7 @@ paths: description: Response content: application/json: - schema: *72 + schema: *74 examples: default: value: @@ -85351,8 +85598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *315 - - *316 + - *318 + - *319 - name: name in: path required: true @@ -85378,8 +85625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -85418,9 +85665,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *315 - - *316 - - *418 + - *318 + - *319 + - *421 responses: '200': description: Response @@ -85486,7 +85733,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 required: - _links - git_url @@ -85567,8 +85814,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85633,8 +85880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85668,9 +85915,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *446 + schema: *449 examples: - default: *539 + default: *542 '204': description: Response when already merged '404': @@ -85695,8 +85942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *315 - - *316 + - *318 + - *319 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -85737,7 +85984,7 @@ paths: application/json: schema: type: array - items: *256 + items: *259 examples: default: value: @@ -85776,7 +86023,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -85793,8 +86040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -85834,9 +86081,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *259 examples: - default: &540 + default: &543 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -85895,9 +86142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *315 - - *316 - - &541 + - *318 + - *319 + - &544 name: milestone_number description: The number that identifies the milestone. in: path @@ -85909,9 +86156,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *259 examples: - default: *540 + default: *543 '404': *6 x-github: githubCloudOnly: false @@ -85928,9 +86175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *315 - - *316 - - *541 + - *318 + - *319 + - *544 requestBody: required: false content: @@ -85968,9 +86215,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *259 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85986,9 +86233,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *315 - - *316 - - *541 + - *318 + - *319 + - *544 responses: '204': description: Response @@ -86009,9 +86256,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *315 - - *316 - - *541 + - *318 + - *319 + - *544 - *17 - *19 responses: @@ -86021,11 +86268,11 @@ paths: application/json: schema: type: array - items: *72 + items: *74 examples: - default: *520 + default: *523 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86042,12 +86289,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *315 - - *316 - - *542 - - *543 - - *78 - - *544 + - *318 + - *319 + - *545 + - *546 + - *80 + - *547 - *17 - *19 responses: @@ -86057,11 +86304,11 @@ paths: application/json: schema: type: array - items: *98 + items: *100 examples: - default: *545 + default: *548 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86083,8 +86330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -86142,14 +86389,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: &546 + schema: &549 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -86293,7 +86540,7 @@ paths: - custom_404 - public examples: - default: &547 + default: &550 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -86334,8 +86581,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -86390,11 +86637,11 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: - default: *547 + default: *550 '422': *15 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86415,8 +86662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -86495,7 +86742,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86516,14 +86763,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response '422': *15 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86543,8 +86790,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -86554,7 +86801,7 @@ paths: application/json: schema: type: array - items: &548 + items: &551 title: Page Build description: Page Build type: object @@ -86627,7 +86874,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86646,8 +86893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *315 - - *316 + - *318 + - *319 responses: '201': description: Response @@ -86694,16 +86941,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *548 + schema: *551 examples: - default: &549 + default: &552 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -86751,8 +86998,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *315 - - *316 + - *318 + - *319 - name: build_id in: path required: true @@ -86763,9 +87010,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *551 examples: - default: *549 + default: *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86785,8 +87032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -86894,9 +87141,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *315 - - *316 - - &550 + - *318 + - *319 + - &553 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -86954,11 +87201,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *315 - - *316 - - *550 + - *318 + - *319 + - *553 responses: - '204': *176 + '204': *179 '404': *6 x-github: githubCloudOnly: false @@ -86983,8 +87230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -87252,7 +87499,7 @@ paths: description: Empty response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -87279,8 +87526,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: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Private vulnerability reporting status @@ -87317,10 +87564,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 + '204': *179 '422': *14 x-github: githubCloudOnly: false @@ -87339,10 +87586,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: - '204': *176 + '204': *179 '422': *14 x-github: githubCloudOnly: false @@ -87362,8 +87609,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -87371,7 +87618,7 @@ paths: application/json: schema: type: array - items: *270 + items: *273 examples: default: value: @@ -87402,8 +87649,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: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -87415,7 +87662,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *270 + items: *273 required: - properties examples: @@ -87465,8 +87712,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *315 - - *316 + - *318 + - *319 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -87526,11 +87773,11 @@ paths: application/json: schema: type: array - items: *450 + items: *453 examples: - default: *551 + default: *554 headers: - Link: *57 + Link: *59 '304': *35 '422': *15 x-github: @@ -87560,8 +87807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -87628,7 +87875,7 @@ paths: description: Response content: application/json: - schema: &555 + schema: &558 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -87757,7 +88004,7 @@ paths: milestone: anyOf: - type: 'null' - - *256 + - *259 active_lock_reason: type: - string @@ -87806,7 +88053,7 @@ paths: items: *4 requested_teams: type: array - items: *235 + items: *238 head: type: object properties: @@ -87814,7 +88061,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: *4 @@ -87831,7 +88078,7 @@ paths: type: string ref: type: string - repo: *69 + repo: *71 sha: type: string user: *4 @@ -87844,14 +88091,14 @@ paths: _links: type: object properties: - comments: *257 - commits: *257 - statuses: *257 - html: *257 - issue: *257 - review_comments: *257 - review_comment: *257 - self: *257 + comments: *260 + commits: *260 + statuses: *260 + html: *260 + issue: *260 + review_comments: *260 + review_comment: *260 + self: *260 required: - comments - commits @@ -87861,8 +88108,8 @@ paths: - review_comments - review_comment - self - author_association: *70 - auto_merge: *552 + author_association: *72 + auto_merge: *555 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -88058,7 +88305,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &556 + default: &559 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -88585,8 +88832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *315 - - *316 + - *318 + - *319 - name: sort in: query required: false @@ -88605,7 +88852,7 @@ paths: enum: - asc - desc - - *78 + - *80 - *17 - *19 responses: @@ -88615,9 +88862,9 @@ paths: application/json: schema: type: array - items: *553 + items: *556 examples: - default: &558 + default: &561 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -88669,7 +88916,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88694,17 +88941,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '200': description: Response content: application/json: - schema: *553 + schema: *556 examples: - default: &554 + default: &557 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -88779,9 +89026,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -88803,9 +89050,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: - default: *554 + default: *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88821,9 +89068,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 responses: '204': description: Response @@ -88844,9 +89091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 - 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. @@ -88872,11 +89119,11 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -88895,9 +89142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *315 - - *316 - - *87 + - *318 + - *319 + - *89 requestBody: required: true content: @@ -88929,16 +89176,16 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -88960,10 +89207,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *315 - - *316 - - *87 - - *513 + - *318 + - *319 + - *89 + - *516 responses: '204': description: Response @@ -89006,9 +89253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *315 - - *316 - - &557 + - *318 + - *319 + - &560 name: pull_number description: The number that identifies the pull request. in: path @@ -89021,9 +89268,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *555 + schema: *558 examples: - default: *556 + default: *559 '304': *35 '404': *6 '406': @@ -89031,8 +89278,8 @@ paths: content: application/json: schema: *3 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89058,9 +89305,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -89102,9 +89349,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *558 examples: - default: *556 + default: *559 '422': *15 '403': *27 x-github: @@ -89126,9 +89373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: true content: @@ -89189,21 +89436,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89229,10 +89476,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *315 - - *316 - - *557 - - *95 + - *318 + - *319 + - *560 + - *97 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -89242,7 +89489,7 @@ paths: enum: - asc - desc - - *78 + - *80 - *17 - *19 responses: @@ -89252,11 +89499,11 @@ paths: application/json: schema: type: array - items: *553 + items: *556 examples: - default: *558 + default: *561 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89287,9 +89534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: true content: @@ -89395,7 +89642,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: example-for-a-multi-line-comment: value: @@ -89483,10 +89730,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *315 - - *316 - - *557 - - *87 + - *318 + - *319 + - *560 + - *89 requestBody: required: true content: @@ -89508,7 +89755,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *556 examples: default: value: @@ -89594,9 +89841,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 - *17 - *19 responses: @@ -89606,11 +89853,11 @@ paths: application/json: schema: type: array - items: *446 + items: *449 examples: - default: *559 + default: *562 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89638,9 +89885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 - *17 - *19 responses: @@ -89650,7 +89897,7 @@ paths: application/json: schema: type: array - items: *457 + items: *460 examples: default: value: @@ -89666,10 +89913,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *57 + Link: *59 '422': *15 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89688,9 +89935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 responses: '204': description: Response if pull request has been merged @@ -89713,9 +89960,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -89827,9 +90074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 responses: '200': description: Response @@ -89845,7 +90092,7 @@ paths: items: *4 teams: type: array - items: *180 + items: *183 required: - users - teams @@ -89886,7 +90133,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89904,9 +90151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -89943,7 +90190,7 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: default: value: @@ -90479,9 +90726,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: true content: @@ -90515,7 +90762,7 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: default: value: @@ -91020,9 +91267,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 - *17 - *19 responses: @@ -91032,7 +91279,7 @@ paths: application/json: schema: type: array - items: &560 + items: &563 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -91106,7 +91353,7 @@ paths: type: string body_text: type: string - author_association: *70 + author_association: *72 required: - id - node_id @@ -91155,7 +91402,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91188,9 +91435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -91280,9 +91527,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: &562 + default: &565 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91345,10 +91592,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - &561 + - *318 + - *319 + - *560 + - &564 name: review_id description: The unique identifier of the review. in: path @@ -91360,9 +91607,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: &563 + default: &566 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91421,10 +91668,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 requestBody: required: true content: @@ -91447,7 +91694,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: default: value: @@ -91509,18 +91756,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 responses: '200': description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: *562 + default: *565 '422': *7 '404': *6 x-github: @@ -91547,10 +91794,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 - *17 - *19 responses: @@ -91644,13 +91891,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *70 + author_association: *72 _links: type: object properties: - self: *257 - html: *257 - pull_request: *257 + self: *260 + html: *260 + pull_request: *260 required: - self - html @@ -91659,7 +91906,7 @@ paths: type: string body_html: type: string - reactions: *71 + reactions: *73 side: description: The side of the first line of the range for a multi-line comment. @@ -91779,7 +92026,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -91808,10 +92055,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 requestBody: required: true content: @@ -91840,7 +92087,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: default: value: @@ -91903,10 +92150,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *315 - - *316 - - *557 - - *561 + - *318 + - *319 + - *560 + - *564 requestBody: required: true content: @@ -91941,9 +92188,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: *563 + default: *566 '404': *6 '422': *7 '403': *27 @@ -91965,9 +92212,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *315 - - *316 - - *557 + - *318 + - *319 + - *560 requestBody: required: false content: @@ -92031,8 +92278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *315 - - *316 + - *318 + - *319 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -92045,9 +92292,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *567 examples: - default: &565 + default: &568 value: type: file encoding: base64 @@ -92089,8 +92336,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *315 - - *316 + - *318 + - *319 - name: dir description: The alternate path to look for a README file in: path @@ -92110,9 +92357,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *567 examples: - default: *565 + default: *568 '404': *6 '422': *15 x-github: @@ -92134,8 +92381,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -92145,7 +92392,7 @@ paths: application/json: schema: type: array - items: *566 + items: *569 examples: default: value: @@ -92219,7 +92466,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -92239,8 +92486,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -92316,9 +92563,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: &570 + default: &573 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -92423,9 +92670,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *315 - - *316 - - &568 + - *318 + - *319 + - &571 name: asset_id description: The unique identifier of the asset. in: path @@ -92437,9 +92684,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: - default: &569 + default: &572 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 @@ -92474,7 +92721,7 @@ paths: type: User site_admin: false '404': *6 - '302': *459 + '302': *462 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92490,9 +92737,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *315 - - *316 - - *568 + - *318 + - *319 + - *571 requestBody: required: false content: @@ -92521,9 +92768,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: - default: *569 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92539,9 +92786,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *315 - - *316 - - *568 + - *318 + - *319 + - *571 responses: '204': description: Response @@ -92565,8 +92812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -92652,16 +92899,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *570 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92678,8 +92925,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *315 - - *316 + - *318 + - *319 - name: tag description: tag parameter in: path @@ -92692,9 +92939,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *570 + default: *573 '404': *6 x-github: githubCloudOnly: false @@ -92716,9 +92963,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *315 - - *316 - - &571 + - *318 + - *319 + - &574 name: release_id description: The unique identifier of the release. in: path @@ -92732,9 +92979,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: *566 + schema: *569 examples: - default: *570 + default: *573 '401': description: Unauthorized x-github: @@ -92752,9 +92999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 requestBody: required: false content: @@ -92818,9 +93065,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *570 + default: *573 '404': description: Not Found if the discussion category name is invalid content: @@ -92841,9 +93088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 responses: '204': description: Response @@ -92863,9 +93110,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 - *17 - *19 responses: @@ -92875,7 +93122,7 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: default: value: @@ -92912,7 +93159,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92956,9 +93203,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: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 - name: name in: query required: true @@ -92984,7 +93231,7 @@ paths: description: Response for successful upload content: application/json: - schema: *567 + schema: *570 examples: response-for-successful-upload: value: @@ -93039,9 +93286,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 - 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. @@ -93065,11 +93312,11 @@ paths: application/json: schema: type: array - items: *444 + items: *447 examples: - default: *512 + default: *515 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -93088,9 +93335,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *315 - - *316 - - *571 + - *318 + - *319 + - *574 requestBody: required: true content: @@ -93120,16 +93367,16 @@ paths: description: Reaction exists content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '201': description: Reaction created content: application/json: - schema: *444 + schema: *447 examples: - default: *445 + default: *448 '422': *15 x-github: githubCloudOnly: false @@ -93151,10 +93398,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *315 - - *316 - - *571 - - *513 + - *318 + - *319 + - *574 + - *516 responses: '204': description: Response @@ -93178,9 +93425,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *315 - - *316 - - *382 + - *318 + - *319 + - *385 - *17 - *19 responses: @@ -93196,8 +93443,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *277 - - &572 + - *280 + - &575 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -93216,69 +93463,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *278 - - *572 - - allOf: - - *279 - - *572 - - allOf: - - *280 - - *572 - - allOf: - - *573 - - *572 - allOf: - *281 - - *572 + - *575 - allOf: - *282 - - *572 + - *575 - allOf: - *283 - - *572 + - *575 + - allOf: + - *576 + - *575 - allOf: - *284 - - *572 + - *575 - allOf: - *285 - - *572 + - *575 - allOf: - *286 - - *572 + - *575 - allOf: - *287 - - *572 + - *575 - allOf: - *288 - - *572 + - *575 - allOf: - *289 - - *572 + - *575 - allOf: - *290 - - *572 + - *575 - allOf: - *291 - - *572 + - *575 - allOf: - *292 - - *572 + - *575 - allOf: - *293 - - *572 + - *575 - allOf: - *294 - - *572 + - *575 - allOf: - *295 - - *572 + - *575 - allOf: - *296 - - *572 + - *575 - allOf: - *297 - - *572 + - *575 + - allOf: + - *298 + - *575 + - allOf: + - *299 + - *575 + - allOf: + - *300 + - *575 examples: default: value: @@ -93317,8 +93564,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - name: includes_parents @@ -93329,7 +93576,7 @@ paths: schema: type: boolean default: true - - *574 + - *577 responses: '200': description: Response @@ -93337,7 +93584,7 @@ paths: application/json: schema: type: array - items: *298 + items: *301 examples: default: value: @@ -93368,7 +93615,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *105 + '500': *107 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -93384,8 +93631,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 requestBody: description: Request body required: true @@ -93405,16 +93652,16 @@ paths: - tag - push default: branch - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *272 + items: *278 + conditions: *275 rules: type: array description: An array of rules within the ruleset. - items: *575 + items: *578 required: - name - enforcement @@ -93445,9 +93692,9 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: &585 + default: &588 value: id: 42 name: super cool ruleset @@ -93481,7 +93728,7 @@ paths: updated_at: '2023-08-23T16:29:47Z' '404': *6 '422': *15 - '500': *105 + '500': *107 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -93495,12 +93742,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *315 - - *316 - - *576 - - *577 - - *578 + - *318 + - *319 - *579 + - *580 + - *581 + - *582 - *17 - *19 responses: @@ -93508,11 +93755,11 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: *581 + default: *584 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93531,19 +93778,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *315 - - *316 - - *582 + - *318 + - *319 + - *585 responses: '200': description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93569,8 +93816,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -93590,11 +93837,11 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *585 + default: *588 '404': *6 - '500': *105 + '500': *107 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -93610,8 +93857,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -93636,16 +93883,16 @@ paths: - branch - tag - push - enforcement: *274 + enforcement: *277 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *275 - conditions: *272 + items: *278 + conditions: *275 rules: description: An array of rules within the ruleset. type: array - items: *575 + items: *578 examples: default: value: @@ -93673,12 +93920,12 @@ paths: description: Response content: application/json: - schema: *298 + schema: *301 examples: - default: *585 + default: *588 '404': *6 '422': *15 - '500': *105 + '500': *107 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -93694,8 +93941,8 @@ paths: category: repos subcategory: rules parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -93706,7 +93953,7 @@ paths: '204': description: Response '404': *6 - '500': *105 + '500': *107 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -93718,8 +93965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 - name: ruleset_id @@ -93735,11 +93982,11 @@ paths: application/json: schema: type: array - items: *301 + items: *304 examples: - default: *586 + default: *589 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93756,8 +94003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *315 - - *316 + - *318 + - *319 - name: ruleset_id description: The ID of the ruleset. in: path @@ -93775,7 +94022,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -93808,7 +94055,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93830,22 +94077,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *315 - - *316 - - *588 - - *589 - - *590 + - *318 + - *319 - *591 - *592 - - *51 - - *19 - - *17 - *593 - *594 - *595 + - *53 + - *19 + - *17 - *596 - *597 - *598 + - *599 + - *600 + - *601 responses: '200': description: Response @@ -93853,24 +94100,24 @@ paths: application/json: schema: type: array - items: &602 + items: &605 type: object properties: - number: *163 - created_at: *164 + number: *166 + created_at: *167 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *168 + url: *169 + html_url: *170 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *599 - resolution: *600 + state: *602 + resolution: *603 resolved_at: type: - string @@ -93964,7 +94211,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *601 + - *604 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -94087,7 +94334,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94109,16 +94356,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *315 - - *316 - - *412 - - *598 + - *318 + - *319 + - *415 + - *601 responses: '200': description: Response content: application/json: - schema: *602 + schema: *605 examples: default: value: @@ -94149,7 +94396,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94172,9 +94419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 requestBody: required: true content: @@ -94182,8 +94429,8 @@ paths: schema: type: object properties: - state: *599 - resolution: *600 + state: *602 + resolution: *603 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -94219,7 +94466,7 @@ paths: description: Response content: application/json: - schema: *602 + schema: *605 examples: default: value: @@ -94292,7 +94539,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -94314,9 +94561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *315 - - *316 - - *412 + - *318 + - *319 + - *415 - *19 - *17 responses: @@ -94327,7 +94574,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &753 + items: &756 type: object properties: type: @@ -94354,9 +94601,6 @@ paths: - commit details: oneOf: - - *603 - - *604 - - *605 - *606 - *607 - *608 @@ -94367,6 +94611,9 @@ paths: - *613 - *614 - *615 + - *616 + - *617 + - *618 examples: default: value: @@ -94426,11 +94673,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *57 + Link: *59 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94452,8 +94699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -94461,14 +94708,14 @@ paths: schema: type: object properties: - reason: &617 + reason: &620 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *616 + placeholder_id: *619 required: - reason - placeholder_id @@ -94485,7 +94732,7 @@ paths: schema: type: object properties: - reason: *617 + reason: *620 expire_at: type: - string @@ -94509,7 +94756,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *106 + '503': *108 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -94532,13 +94779,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: - - *315 - - *316 + - *318 + - *319 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *106 + '503': *108 '200': description: Response content: @@ -94548,7 +94795,7 @@ paths: properties: incremental_scans: type: array - items: &618 + items: &621 description: Information on a single scan performed by secret scanning on the repository type: object @@ -94576,15 +94823,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *618 + items: *621 backfill_scans: type: array - items: *618 + items: *621 custom_pattern_backfill_scans: type: array items: allOf: - - *618 + - *621 - type: object properties: pattern_name: @@ -94654,9 +94901,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *315 - - *316 - - *51 + - *318 + - *319 + - *53 - name: sort description: The property to sort the results by. in: query @@ -94668,8 +94915,8 @@ paths: - updated - published default: created - - *43 - - *44 + - *45 + - *46 - 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)." @@ -94699,9 +94946,9 @@ paths: application/json: schema: type: array - items: *619 + items: *622 examples: - default: *620 + default: *623 '400': *14 '404': *6 x-github: @@ -94724,8 +94971,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -94805,7 +95052,7 @@ paths: login: type: string description: The username of the user credited. - type: *304 + type: *307 required: - login - type @@ -94895,9 +95142,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *622 examples: - default: &622 + default: &625 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -95130,8 +95377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -95244,7 +95491,7 @@ paths: description: Response content: application/json: - schema: *619 + schema: *622 examples: default: value: @@ -95391,17 +95638,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 responses: '200': description: Response content: application/json: - schema: *619 + schema: *622 examples: - default: *622 + default: *625 '403': *27 '404': *6 x-github: @@ -95425,9 +95672,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 requestBody: required: true content: @@ -95507,7 +95754,7 @@ paths: login: type: string description: The username of the user credited. - type: *304 + type: *307 required: - login - type @@ -95598,17 +95845,17 @@ paths: description: Response content: application/json: - schema: *619 + schema: *622 examples: - default: *622 - add_credit: *622 + default: *625 + add_credit: *625 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *114 + schema: *116 examples: invalid_state_transition: value: @@ -95639,9 +95886,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: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 responses: '202': *37 '400': *14 @@ -95668,17 +95915,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *315 - - *316 - - *621 + - *318 + - *319 + - *624 responses: '202': description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 '400': *14 '422': *15 '403': *27 @@ -95704,8 +95951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -95779,7 +96026,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -95801,8 +96048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -95811,7 +96058,7 @@ paths: application/json: schema: type: array - items: &623 + items: &626 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -95824,7 +96071,7 @@ paths: - 1124 - -435 '202': *37 - '204': *176 + '204': *179 '422': description: Repository contains more than 10,000 commits x-github: @@ -95844,8 +96091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -95896,7 +96143,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95923,8 +96170,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -95996,7 +96243,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96018,8 +96265,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -96173,8 +96420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -96184,7 +96431,7 @@ paths: application/json: schema: type: array - items: *623 + items: *626 examples: default: value: @@ -96197,7 +96444,7 @@ paths: - - 0 - 2 - 21 - '204': *176 + '204': *179 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96217,8 +96464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *315 - - *316 + - *318 + - *319 - name: sha in: path required: true @@ -96274,7 +96521,7 @@ paths: description: Response content: application/json: - schema: *624 + schema: *627 examples: default: value: @@ -96328,8 +96575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -96341,9 +96588,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96361,14 +96608,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &625 + schema: &628 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -96441,8 +96688,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: false content: @@ -96468,7 +96715,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *628 examples: default: value: @@ -96495,8 +96742,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -96516,8 +96763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -96576,7 +96823,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96599,8 +96846,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *315 - - *316 + - *318 + - *319 - name: ref in: path required: true @@ -96636,8 +96883,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *315 - - *316 + - *318 + - *319 - *17 - *19 responses: @@ -96647,11 +96894,11 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - default: *236 + default: *239 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -96669,8 +96916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *315 - - *316 + - *318 + - *319 - *19 - *17 responses: @@ -96678,7 +96925,7 @@ paths: description: Response content: application/json: - schema: &626 + schema: &629 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -96690,7 +96937,7 @@ paths: required: - names examples: - default: &627 + default: &630 value: names: - octocat @@ -96713,8 +96960,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -96745,9 +96992,9 @@ paths: description: Response content: application/json: - schema: *626 + schema: *629 examples: - default: *627 + default: *630 '404': *6 '422': *7 x-github: @@ -96768,9 +97015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *315 - - *316 - - &628 + - *318 + - *319 + - &631 name: per description: The time frame to display results for. in: query @@ -96801,7 +97048,7 @@ paths: - 128 clones: type: array - items: &629 + items: &632 title: Traffic type: object properties: @@ -96888,8 +97135,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -96983,8 +97230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *315 - - *316 + - *318 + - *319 responses: '200': description: Response @@ -97047,9 +97294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *315 - - *316 - - *628 + - *318 + - *319 + - *631 responses: '200': description: Response @@ -97070,7 +97317,7 @@ paths: - 3782 views: type: array - items: *629 + items: *632 required: - uniques - count @@ -97147,8 +97394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *315 - - *316 + - *318 + - *319 requestBody: required: true content: @@ -97184,7 +97431,7 @@ paths: description: Response content: application/json: - schema: *145 + schema: *148 examples: default: value: @@ -97422,8 +97669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -97446,8 +97693,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -97469,8 +97716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -97496,8 +97743,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *315 - - *316 + - *318 + - *319 - name: ref in: path required: true @@ -97589,9 +97836,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -97632,7 +97879,7 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: default: value: @@ -97738,8 +97985,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *134 - - *516 + - *137 + - *519 requestBody: required: true content: @@ -97805,14 +98052,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *519 + items: *522 examples: - default: *630 + default: *633 '400': *14 '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -97843,8 +98090,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *134 - - *516 + - *137 + - *519 requestBody: required: true content: @@ -97911,14 +98158,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *519 + items: *522 examples: - default: *630 + default: *633 '400': *14 '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -97944,16 +98191,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: - - *134 - - *516 - - *219 + - *137 + - *519 + - *222 responses: '204': description: Issue field value deleted successfully '403': *27 '404': *6 '422': *15 - '503': *106 + '503': *108 x-github: triggersNotification: true githubCloudOnly: false @@ -98067,7 +98314,7 @@ paths: html_url: type: string format: uri - repository: *145 + repository: *148 score: type: number file_size: @@ -98086,7 +98333,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &631 + text_matches: &634 title: Search Result Text Matches type: array items: @@ -98201,7 +98448,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *106 + '503': *108 '422': *15 '403': *27 x-github: @@ -98249,7 +98496,7 @@ paths: enum: - author-date - committer-date - - &632 + - &635 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 @@ -98318,7 +98565,7 @@ paths: committer: anyOf: - type: 'null' - - *380 + - *383 comment_count: type: integer message: @@ -98337,7 +98584,7 @@ paths: url: type: string format: uri - verification: *496 + verification: *499 required: - author - committer @@ -98352,7 +98599,7 @@ paths: committer: anyOf: - type: 'null' - - *380 + - *383 parents: type: array items: @@ -98364,12 +98611,12 @@ paths: type: string sha: type: string - repository: *145 + repository: *148 score: type: number node_id: type: string - text_matches: *631 + text_matches: *634 required: - sha - node_id @@ -98561,7 +98808,7 @@ paths: - interactions - created - updated - - *632 + - *635 - *17 - *19 - name: advanced_search @@ -98658,11 +98905,11 @@ paths: type: - string - 'null' - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: type: string state_reason: @@ -98676,7 +98923,7 @@ paths: milestone: anyOf: - type: 'null' - - *256 + - *259 comments: type: integer created_at: @@ -98690,7 +98937,7 @@ paths: - string - 'null' format: date-time - text_matches: *631 + text_matches: *634 pull_request: type: object properties: @@ -98728,10 +98975,10 @@ paths: type: string score: type: number - author_association: *70 + author_association: *72 draft: type: boolean - repository: *69 + repository: *71 body_html: type: string body_text: @@ -98739,7 +98986,7 @@ paths: timeline_url: type: string format: uri - type: *220 + type: *223 performed_via_github_app: anyOf: - type: 'null' @@ -98747,8 +98994,8 @@ paths: pinned_comment: anyOf: - type: 'null' - - *74 - reactions: *71 + - *76 + reactions: *73 required: - assignee - closed_at @@ -98892,7 +99139,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *106 + '503': *108 '422': *15 '304': *35 '403': *27 @@ -98945,7 +99192,7 @@ paths: enum: - created - updated - - *632 + - *635 - *17 - *19 responses: @@ -98990,7 +99237,7 @@ paths: - 'null' score: type: number - text_matches: *631 + text_matches: *634 required: - id - node_id @@ -99075,7 +99322,7 @@ paths: - forks - help-wanted-issues - updated - - *632 + - *635 - *17 - *19 responses: @@ -99305,7 +99552,7 @@ paths: license: anyOf: - type: 'null' - - *75 + - *77 permissions: type: object properties: @@ -99323,7 +99570,7 @@ paths: - admin - pull - push - text_matches: *631 + text_matches: *634 temp_clone_token: type: string allow_merge_commit: @@ -99526,7 +99773,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *106 + '503': *108 '422': *15 '304': *35 x-github: @@ -99631,7 +99878,7 @@ paths: - string - 'null' format: uri - text_matches: *631 + text_matches: *634 related: type: - array @@ -99824,7 +100071,7 @@ paths: - followers - repositories - joined - - *632 + - *635 - *17 - *19 responses: @@ -99934,7 +100181,7 @@ paths: type: - boolean - 'null' - text_matches: *631 + text_matches: *634 blog: type: - string @@ -99996,7 +100243,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *106 + '503': *108 '422': *15 x-github: githubCloudOnly: false @@ -100016,7 +100263,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &635 + - &638 name: team_id description: The unique identifier of the team. in: path @@ -100028,9 +100275,9 @@ paths: description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 x-github: githubCloudOnly: false @@ -100057,7 +100304,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *635 + - *638 requestBody: required: true content: @@ -100121,16 +100368,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '201': description: Response content: application/json: - schema: *311 + schema: *314 examples: - default: *312 + default: *315 '404': *6 '422': *15 '403': *27 @@ -100158,7 +100405,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *635 + - *638 responses: '204': description: Response @@ -100187,7 +100434,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *635 + - *638 - *17 - *19 responses: @@ -100197,11 +100444,11 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100225,7 +100472,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *635 + - *638 - name: role description: Filters members returned by their role in the team. in: query @@ -100248,9 +100495,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -100276,8 +100523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: if user is a member @@ -100313,8 +100560,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: Response @@ -100353,8 +100600,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: Response @@ -100390,16 +100637,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '200': description: Response content: application/json: - schema: *314 + schema: *317 examples: - response-if-user-is-a-team-maintainer: *636 + response-if-user-is-a-team-maintainer: *639 '404': *6 x-github: githubCloudOnly: false @@ -100432,8 +100679,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *635 - - *61 + - *638 + - *63 requestBody: required: false content: @@ -100458,9 +100705,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - response-if-users-membership-with-team-is-now-pending: *637 + response-if-users-membership-with-team-is-now-pending: *640 '403': description: Forbidden if team synchronization is set up '422': @@ -100494,8 +100741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *635 - - *61 + - *638 + - *63 responses: '204': description: Response @@ -100522,7 +100769,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *635 + - *638 - *17 - *19 responses: @@ -100532,11 +100779,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -100564,15 +100811,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *635 - - *315 - - *316 + - *638 + - *318 + - *319 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *638 + schema: *641 examples: alternative-response-with-extra-repository-information: value: @@ -100723,9 +100970,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *635 - - *315 - - *316 + - *638 + - *318 + - *319 requestBody: required: false content: @@ -100775,9 +101022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *635 - - *315 - - *316 + - *638 + - *318 + - *319 responses: '204': description: Response @@ -100802,7 +101049,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *635 + - *638 - *17 - *19 responses: @@ -100812,11 +101059,11 @@ paths: application/json: schema: type: array - items: *180 + items: *183 examples: - response-if-child-teams-exist: *639 + response-if-child-teams-exist: *642 headers: - Link: *57 + Link: *59 '404': *6 '403': *27 '422': *15 @@ -100847,7 +101094,7 @@ paths: application/json: schema: oneOf: - - &641 + - &644 title: Private User description: Private User type: object @@ -101097,7 +101344,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *640 + - *643 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -101257,7 +101504,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *644 examples: default: value: @@ -101336,7 +101583,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 '304': *35 '404': *6 '403': *27 @@ -101359,7 +101606,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: - - *61 + - *63 responses: '204': description: If the user is blocked @@ -101387,7 +101634,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -101411,7 +101658,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -101460,11 +101707,11 @@ paths: type: integer codespaces: type: array - items: *225 + items: *228 examples: - default: *226 + default: *229 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -101601,21 +101848,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '401': *23 '403': *27 '404': *6 - '503': *106 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101655,7 +101902,7 @@ paths: type: integer secrets: type: array - items: &642 + items: &645 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -101697,9 +101944,9 @@ paths: - visibility - selected_repositories_url examples: - default: *437 + default: *440 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101769,13 +102016,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *153 + - *156 responses: '200': description: Response content: application/json: - schema: *642 + schema: *645 examples: default: value: @@ -101805,7 +102052,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *153 + - *156 requestBody: required: true content: @@ -101850,7 +102097,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -101878,7 +102125,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *153 + - *156 responses: '204': description: Response @@ -101903,7 +102150,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *153 + - *156 responses: '200': description: Response @@ -101919,13 +102166,13 @@ paths: type: integer repositories: type: array - items: *145 + items: *148 examples: - default: *643 + default: *646 '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101946,7 +102193,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *153 + - *156 requestBody: required: true content: @@ -101978,7 +102225,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102000,7 +102247,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *153 + - *156 - name: repository_id in: path required: true @@ -102012,7 +102259,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102033,7 +102280,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *153 + - *156 - name: repository_id in: path required: true @@ -102045,7 +102292,7 @@ paths: '401': *23 '403': *27 '404': *6 - '500': *105 + '500': *107 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102065,17 +102312,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -102099,7 +102346,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 requestBody: required: false content: @@ -102129,9 +102376,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '401': *23 '403': *27 '404': *6 @@ -102153,11 +102400,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '202': *37 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -102182,13 +102429,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '202': description: Response content: application/json: - schema: &644 + schema: &647 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -102241,7 +102488,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &645 + default: &648 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -102249,7 +102496,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -102273,7 +102520,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *227 + - *230 - name: export_id in: path required: true @@ -102286,9 +102533,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *647 examples: - default: *645 + default: *648 '404': *6 x-github: githubCloudOnly: false @@ -102309,7 +102556,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *227 + - *230 responses: '200': description: Response @@ -102325,11 +102572,11 @@ paths: type: integer machines: type: array - items: *436 + items: *439 examples: - default: *646 + default: *649 '304': *35 - '500': *105 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -102356,7 +102603,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *227 + - *230 requestBody: required: true content: @@ -102412,11 +102659,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *318 + repository: *321 machine: anyOf: - type: 'null' - - *436 + - *439 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -103213,17 +103460,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 + default: *438 '304': *35 - '500': *105 + '500': *107 '400': *14 '401': *23 '402': @@ -103233,7 +103480,7 @@ paths: schema: *3 '403': *27 '404': *6 - '409': *50 + '409': *52 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103253,16 +103500,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *227 + - *230 responses: '200': description: Response content: application/json: - schema: *225 + schema: *228 examples: - default: *435 - '500': *105 + default: *438 + '500': *107 '401': *23 '403': *27 '404': *6 @@ -103291,9 +103538,9 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: &657 + default: &660 value: - id: 197 name: hello_docker @@ -103394,7 +103641,7 @@ paths: application/json: schema: type: array - items: &647 + items: &650 title: Email description: Email type: object @@ -103464,16 +103711,16 @@ paths: application/json: schema: type: array - items: *647 + items: *650 examples: - default: &659 + default: &662 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -103543,7 +103790,7 @@ paths: application/json: schema: type: array - items: *647 + items: *650 examples: default: value: @@ -103655,9 +103902,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -103688,9 +103935,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -103710,7 +103957,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: - - *61 + - *63 responses: '204': description: if the person is followed by the authenticated user @@ -103740,7 +103987,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -103765,7 +104012,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *61 + - *63 responses: '204': description: Response @@ -103801,7 +104048,7 @@ paths: application/json: schema: type: array - items: &648 + items: &651 title: GPG Key description: A unique encryption key type: object @@ -103946,7 +104193,7 @@ paths: - subkeys - revoked examples: - default: &675 + default: &678 value: - id: 3 name: Octocat's GPG Key @@ -103978,7 +104225,7 @@ paths: revoked: false raw_key: string headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -104031,9 +104278,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *651 examples: - default: &649 + default: &652 value: id: 3 name: Octocat's GPG Key @@ -104090,7 +104337,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &650 + - &653 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -104102,9 +104349,9 @@ paths: description: Response content: application/json: - schema: *648 + schema: *651 examples: - default: *649 + default: *652 '404': *6 '304': *35 '403': *27 @@ -104127,7 +104374,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *650 + - *653 responses: '204': description: Response @@ -104270,7 +104517,7 @@ paths: suspended_at: suspended_by: headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -104318,11 +104565,11 @@ paths: type: array items: allOf: - - *69 + - *71 examples: - default: *137 + default: *140 headers: - Link: *57 + Link: *59 '404': *6 '403': *27 '304': *35 @@ -104345,7 +104592,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *134 + - *137 responses: '204': description: Response @@ -104371,7 +104618,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *134 + - *137 responses: '204': description: Response @@ -104405,12 +104652,12 @@ paths: application/json: schema: anyOf: - - *212 + - *215 - type: object properties: {} additionalProperties: false examples: - default: *213 + default: *216 '204': description: Response when there are no restrictions x-github: @@ -104434,7 +104681,7 @@ paths: required: true content: application/json: - schema: *507 + schema: *510 examples: default: value: @@ -104445,7 +104692,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *215 examples: default: value: @@ -104526,7 +104773,7 @@ paths: - closed - all default: open - - *223 + - *226 - name: sort description: What to sort results by. in: query @@ -104538,8 +104785,8 @@ paths: - updated - comments default: created - - *51 - - *78 + - *53 + - *80 - *17 - *19 responses: @@ -104549,11 +104796,11 @@ paths: application/json: schema: type: array - items: *73 + items: *75 examples: - default: *224 + default: *227 headers: - Link: *57 + Link: *59 '404': *6 '304': *35 x-github: @@ -104584,7 +104831,7 @@ paths: application/json: schema: type: array - items: &651 + items: &654 title: Key description: Key type: object @@ -104636,7 +104883,7 @@ paths: verified: false read_only: false headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -104687,9 +104934,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *654 examples: - default: &652 + default: &655 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -104722,15 +104969,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *537 + - *540 responses: '200': description: Response content: application/json: - schema: *651 + schema: *654 examples: - default: *652 + default: *655 '404': *6 '304': *35 '403': *27 @@ -104753,7 +105000,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *537 + - *540 responses: '204': description: Response @@ -104786,7 +105033,7 @@ paths: application/json: schema: type: array - items: &653 + items: &656 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -104854,7 +105101,7 @@ paths: - id - type - login - plan: *89 + plan: *91 required: - billing_cycle - next_billing_date @@ -104865,7 +105112,7 @@ paths: - account - plan examples: - default: &654 + default: &657 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -104898,7 +105145,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *57 + Link: *59 '304': *35 '401': *23 '404': *6 @@ -104927,11 +105174,11 @@ paths: application/json: schema: type: array - items: *653 + items: *656 examples: - default: *654 + default: *657 headers: - Link: *57 + Link: *59 '304': *35 '401': *23 x-github: @@ -104969,7 +105216,7 @@ paths: application/json: schema: type: array - items: *229 + items: *232 examples: default: value: @@ -105052,7 +105299,7 @@ paths: type: User site_admin: false headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -105077,13 +105324,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *65 + - *67 responses: '200': description: Response content: application/json: - schema: *229 + schema: *232 examples: default: value: @@ -105145,7 +105392,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *65 + - *67 requestBody: required: true content: @@ -105170,7 +105417,7 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: default: value: @@ -105242,7 +105489,7 @@ paths: application/json: schema: type: array - items: *231 + items: *234 examples: default: value: @@ -105395,7 +105642,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -105504,7 +105751,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -105684,7 +105931,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *232 + - *235 - name: exclude in: query required: false @@ -105697,7 +105944,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *234 examples: default: value: @@ -105891,7 +106138,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *232 + - *235 responses: '302': description: Response @@ -105917,7 +106164,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *232 + - *235 responses: '204': description: Response @@ -105946,8 +106193,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *232 - - *655 + - *235 + - *658 responses: '204': description: Response @@ -105971,7 +106218,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *232 + - *235 - *17 - *19 responses: @@ -105981,11 +106228,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 '404': *6 x-github: githubCloudOnly: false @@ -106000,7 +106247,7 @@ paths: content: application/json: schema: - items: *56 + items: *58 version: '2026-03-10' - changeset: restrict_repo_fields_in_migration_resource patch: @@ -106036,11 +106283,11 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: *102 + default: *104 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -106080,7 +106327,7 @@ paths: - docker - nuget - container - - *656 + - *659 - *19 - *17 responses: @@ -106090,10 +106337,10 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *657 - '400': *658 + default: *660 + '400': *661 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106113,16 +106360,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *239 - - *240 + - *242 + - *243 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: &676 + default: &679 value: id: 40201 name: octo-name @@ -106235,8 +106482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *239 - - *240 + - *242 + - *243 responses: '204': description: Response @@ -106266,8 +106513,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *239 - - *240 + - *242 + - *243 - name: token description: package token schema: @@ -106299,8 +106546,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: - - *239 - - *240 + - *242 + - *243 - *19 - *17 - name: state @@ -106320,7 +106567,7 @@ paths: application/json: schema: type: array - items: *241 + items: *244 examples: default: value: @@ -106369,15 +106616,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *239 - - *240 - *242 + - *243 + - *245 responses: '200': description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -106413,9 +106660,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *239 - - *240 - *242 + - *243 + - *245 responses: '204': description: Response @@ -106445,9 +106692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *239 - - *240 - *242 + - *243 + - *245 responses: '204': description: Response @@ -106484,11 +106731,11 @@ paths: application/json: schema: type: array - items: *647 + items: *650 examples: - default: *659 + default: *662 headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -106597,9 +106844,9 @@ paths: application/json: schema: type: array - items: *69 + items: *71 examples: - default: &666 + default: &669 summary: Default response value: - id: 1296269 @@ -106720,7 +106967,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *57 + Link: *59 '422': *15 '304': *35 '403': *27 @@ -106917,9 +107164,9 @@ paths: description: Response content: application/json: - schema: *318 + schema: *321 examples: - default: *320 + default: *323 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -106963,11 +107210,11 @@ paths: application/json: schema: type: array - items: *509 + items: *512 examples: - default: *660 + default: *663 headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -106988,12 +107235,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *216 + - *219 responses: '204': description: Response '403': *27 - '409': *50 + '409': *52 '404': *6 '304': *35 x-github: @@ -107017,11 +107264,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *216 + - *219 responses: '204': description: Response - '409': *50 + '409': *52 '304': *35 '404': *6 '403': *27 @@ -107050,7 +107297,7 @@ paths: application/json: schema: type: array - items: &661 + items: &664 title: Social account description: Social media account type: object @@ -107067,12 +107314,12 @@ paths: - provider - url examples: - default: &662 + default: &665 value: - provider: twitter url: https://twitter.com/github headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -107130,9 +107377,9 @@ paths: application/json: schema: type: array - items: *661 + items: *664 examples: - default: *662 + default: *665 '422': *15 '304': *35 '404': *6 @@ -107220,7 +107467,7 @@ paths: application/json: schema: type: array - items: &663 + items: &666 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -107240,7 +107487,7 @@ paths: - title - created_at examples: - default: &694 + default: &697 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -107251,7 +107498,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -107305,9 +107552,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *666 examples: - default: &664 + default: &667 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -107337,7 +107584,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: - - &665 + - &668 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -107349,9 +107596,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *666 examples: - default: *664 + default: *667 '404': *6 '304': *35 '403': *27 @@ -107374,7 +107621,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: - - *665 + - *668 responses: '204': description: Response @@ -107403,7 +107650,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &695 + - &698 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 @@ -107416,7 +107663,7 @@ paths: - created - updated default: created - - *51 + - *53 - *17 - *19 responses: @@ -107426,13 +107673,13 @@ paths: application/json: schema: type: array - items: *69 + items: *71 examples: - default-response: *666 + default-response: *669 application/vnd.github.v3.star+json: schema: type: array - items: &696 + items: &699 title: Starred Repository description: Starred Repository type: object @@ -107440,7 +107687,7 @@ paths: starred_at: type: string format: date-time - repo: *69 + repo: *71 required: - starred_at - repo @@ -107568,7 +107815,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -107588,8 +107835,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: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response if this repository is starred by you @@ -107617,8 +107864,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -107642,8 +107889,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *315 - - *316 + - *318 + - *319 responses: '204': description: Response @@ -107676,11 +107923,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -107715,7 +107962,7 @@ paths: application/json: schema: type: array - items: *311 + items: *314 examples: default: value: @@ -107766,7 +108013,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *57 + Link: *59 '304': *35 '404': *6 '403': *27 @@ -107793,7 +108040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *91 + - *93 responses: '200': description: Response @@ -107801,10 +108048,10 @@ paths: application/json: schema: oneOf: - - *641 - - *640 + - *644 + - *643 examples: - default-response: &670 + default-response: &673 summary: Default response value: login: octocat @@ -107839,7 +108086,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &671 + response-with-git-hub-plan-information: &674 summary: Response with GitHub plan information value: login: octocat @@ -107896,14 +108143,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &668 + - &671 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *255 + - *258 requestBody: required: true description: Details of the draft item to create in the project. @@ -107937,9 +108184,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: - draft_issue: *261 + draft_issue: *264 '304': *35 '403': *27 '401': *23 @@ -107962,7 +108209,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *667 + - *670 - *17 responses: '200': @@ -107973,7 +108220,7 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: Link: example: ; rel="next" @@ -107997,8 +108244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *668 - - *255 + - *671 + - *258 requestBody: required: true content: @@ -108072,17 +108319,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *669 + schema: *672 examples: table_view: summary: Response for creating a table view - value: *265 + value: *268 board_view: summary: Response for creating a board view with filter - value: *265 + value: *268 roadmap_view: summary: Response for creating a roadmap view - value: *265 + value: *268 '304': *35 '403': *27 '401': *23 @@ -108116,7 +108363,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *61 + - *63 responses: '200': description: Response @@ -108124,11 +108371,11 @@ paths: application/json: schema: oneOf: - - *641 - - *640 + - *644 + - *643 examples: - default-response: *670 - response-with-git-hub-plan-information: *671 + default-response: *673 + response-with-git-hub-plan-information: *674 '404': *6 x-github: githubCloudOnly: false @@ -108152,9 +108399,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *43 - - *44 - - *61 + - *45 + - *46 + - *63 requestBody: required: true content: @@ -108178,8 +108425,8 @@ paths: required: - subject_digests examples: - default: *672 - withPredicateType: *673 + default: *675 + withPredicateType: *676 responses: '200': description: Response @@ -108233,7 +108480,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *674 + default: *677 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108266,7 +108513,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *61 + - *63 requestBody: required: true content: @@ -108331,7 +108578,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *61 + - *63 - name: subject_digest description: Subject Digest in: path @@ -108362,7 +108609,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *61 + - *63 - name: attestation_id description: Attestation ID in: path @@ -108398,9 +108645,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations parameters: - *17 - - *43 - - *44 - - *61 + - *45 + - *46 + - *63 - name: subject_digest description: Subject Digest in: path @@ -108453,12 +108700,12 @@ paths: initiator: type: string examples: - default: *376 + default: *379 '201': description: Response content: application/json: - schema: *154 + schema: *157 examples: default: value: @@ -108498,7 +108745,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: - - *61 + - *63 responses: '200': description: Response @@ -108506,9 +108753,9 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *657 + default: *660 '403': *27 '401': *23 x-github: @@ -108531,7 +108778,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -108541,7 +108788,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -108603,8 +108850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *61 - - *65 + - *63 + - *67 - *17 - *19 responses: @@ -108614,7 +108861,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -108691,7 +108938,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -108701,7 +108948,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -108759,7 +109006,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -108771,9 +109018,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108790,7 +109037,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *61 + - *63 - *17 - *19 responses: @@ -108802,9 +109049,9 @@ paths: type: array items: *4 examples: - default: *60 + default: *62 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108821,7 +109068,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *61 + - *63 - name: target_user in: path required: true @@ -108848,8 +109095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *61 - - *78 + - *63 + - *80 - *17 - *19 responses: @@ -108859,11 +109106,11 @@ paths: application/json: schema: type: array - items: *79 + items: *81 examples: - default: *80 + default: *82 headers: - Link: *57 + Link: *59 '422': *15 x-github: githubCloudOnly: false @@ -108882,7 +109129,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -108892,11 +109139,11 @@ paths: application/json: schema: type: array - items: *648 + items: *651 examples: - default: *675 + default: *678 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108918,7 +109165,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *61 + - *63 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -108990,7 +109237,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *61 + - *63 responses: '200': description: Response @@ -108998,7 +109245,7 @@ paths: application/json: schema: *20 examples: - default: *506 + default: *509 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109016,7 +109263,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -109052,7 +109299,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109072,7 +109319,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -109082,11 +109329,11 @@ paths: application/json: schema: type: array - items: *63 + items: *65 examples: - default: *102 + default: *104 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109123,8 +109370,8 @@ paths: - docker - nuget - container - - *656 - - *61 + - *659 + - *63 - *19 - *17 responses: @@ -109134,12 +109381,12 @@ paths: application/json: schema: type: array - items: *237 + items: *240 examples: - default: *657 + default: *660 '403': *27 '401': *23 - '400': *658 + '400': *661 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109159,17 +109406,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *676 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109190,9 +109437,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 responses: '204': description: Response @@ -109224,9 +109471,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 - name: token description: package token schema: @@ -109258,9 +109505,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: - - *239 - - *240 - - *61 + - *242 + - *243 + - *63 responses: '200': description: Response @@ -109268,7 +109515,7 @@ paths: application/json: schema: type: array - items: *241 + items: *244 examples: default: value: @@ -109326,16 +109573,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *239 - - *240 - *242 - - *61 + - *243 + - *245 + - *63 responses: '200': description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -109370,10 +109617,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *239 - - *240 - - *61 - *242 + - *243 + - *63 + - *245 responses: '204': description: Response @@ -109405,10 +109652,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *239 - - *240 - - *61 - *242 + - *243 + - *63 + - *245 responses: '204': description: Response @@ -109432,15 +109679,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *61 + - *63 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -109449,11 +109696,11 @@ paths: application/json: schema: type: array - items: *253 + items: *256 examples: - default: *254 + default: *257 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -109473,18 +109720,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *255 - - *61 + - *258 + - *63 responses: '200': description: Response content: application/json: - schema: *253 + schema: *256 examples: - default: *254 + default: *257 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -109504,11 +109751,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *255 - - *61 + - *258 + - *63 - *17 - - *43 - - *44 + - *45 + - *46 responses: '200': description: Response @@ -109516,11 +109763,11 @@ paths: application/json: schema: type: array - items: *258 + items: *261 examples: - default: *677 + default: *680 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -109539,8 +109786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *61 - - *255 + - *63 + - *258 requestBody: required: true content: @@ -109578,7 +109825,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *678 + items: *681 required: - name - data_type @@ -109594,7 +109841,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *679 + iteration_configuration: *682 required: - name - data_type @@ -109616,20 +109863,20 @@ paths: value: name: Due date data_type: date - single_select_field: *680 - iteration_field: *681 + single_select_field: *683 + iteration_field: *684 responses: '201': description: Response content: application/json: - schema: *258 + schema: *261 examples: - text_field: *682 - number_field: *683 - date_field: *684 - single_select_field: *685 - iteration_field: *686 + text_field: *685 + number_field: *686 + date_field: *687 + single_select_field: *688 + iteration_field: *689 '304': *35 '403': *27 '401': *23 @@ -109650,19 +109897,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *255 - - *687 - - *61 + - *258 + - *690 + - *63 responses: '200': description: Response content: application/json: - schema: *258 + schema: *261 examples: - default: *688 + default: *691 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -109683,10 +109930,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *255 - - *61 - - *43 - - *44 + - *258 + - *63 + - *45 + - *46 - *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) @@ -109716,11 +109963,11 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -109739,8 +109986,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *61 - - *255 + - *63 + - *258 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -109810,22 +110057,22 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *261 + value: *264 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *261 + value: *264 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *261 + value: *264 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *261 + value: *264 '304': *35 '403': *27 '401': *23 @@ -109845,9 +110092,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *255 - - *61 - - *264 + - *258 + - *63 + - *267 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -109867,11 +110114,11 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -109890,9 +110137,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *255 - - *61 - - *264 + - *258 + - *63 + - *267 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -109965,13 +110212,13 @@ paths: description: Response content: application/json: - schema: *262 + schema: *265 examples: - text_field: *263 - number_field: *263 - date_field: *263 - single_select_field: *263 - iteration_field: *263 + text_field: *266 + number_field: *266 + date_field: *266 + single_select_field: *266 + iteration_field: *266 '401': *23 '403': *27 '404': *6 @@ -109991,9 +110238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *255 - - *61 - - *264 + - *258 + - *63 + - *267 responses: '204': description: Response @@ -110015,9 +110262,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *255 - - *61 - - *689 + - *258 + - *63 + - *692 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -110033,8 +110280,8 @@ paths: maxItems: 50 items: type: string - - *43 - - *44 + - *45 + - *46 - *17 responses: '200': @@ -110043,11 +110290,11 @@ paths: application/json: schema: type: array - items: *262 + items: *265 examples: - default: *263 + default: *266 headers: - Link: *57 + Link: *59 '304': *35 '403': *27 '401': *23 @@ -110073,7 +110320,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -110083,7 +110330,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -110148,7 +110395,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -110158,7 +110405,7 @@ paths: application/json: schema: type: array - items: *97 + items: *99 examples: default: value: @@ -110221,7 +110468,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *61 + - *63 - name: type description: Limit results to repositories of the specified type. in: query @@ -110264,11 +110511,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110288,12 +110535,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *61 - - *108 + - *63 - *110 - - *109 - - *690 + - *112 - *111 + - *693 + - *113 responses: '200': description: Response when getting a billing premium request usage report @@ -110400,8 +110647,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110421,10 +110668,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *61 - - *108 - - *691 - - *109 + - *63 + - *110 + - *694 + - *111 responses: '200': description: Response when getting a billing usage report @@ -110494,8 +110741,8 @@ paths: repositoryName: user/example '400': *14 '403': *27 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110518,13 +110765,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *61 - - *108 + - *63 - *110 - - *109 - - *692 + - *112 - *111 - - *693 + - *695 + - *113 + - *696 responses: '200': description: Response when getting a billing usage summary @@ -110629,8 +110876,8 @@ paths: '400': *14 '403': *27 '404': *6 - '500': *105 - '503': *106 + '500': *107 + '503': *108 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110648,7 +110895,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -110658,11 +110905,11 @@ paths: application/json: schema: type: array - items: *661 + items: *664 examples: - default: *662 + default: *665 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110680,7 +110927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -110690,11 +110937,11 @@ paths: application/json: schema: type: array - items: *663 + items: *666 examples: - default: *694 + default: *697 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110716,9 +110963,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *61 - - *695 - - *51 + - *63 + - *698 + - *53 - *17 - *19 responses: @@ -110729,13 +110976,13 @@ paths: schema: anyOf: - type: array - items: *696 + items: *699 - type: array - items: *69 + items: *71 examples: - default-response: *666 + default-response: *669 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110752,7 +110999,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *61 + - *63 - *17 - *19 responses: @@ -110762,11 +111009,11 @@ paths: application/json: schema: type: array - items: *145 + items: *148 examples: - default: *243 + default: *246 headers: - Link: *57 + Link: *59 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110893,7 +111140,7 @@ webhooks: type: string enum: - disabled - enterprise: &697 + enterprise: &700 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -110962,7 +111209,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &698 + installation: &701 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -110983,7 +111230,7 @@ webhooks: required: - id - node_id - organization: &699 + organization: &702 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -111056,7 +111303,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &700 + repository: &703 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -111085,7 +111332,7 @@ webhooks: license: anyOf: - type: 'null' - - *75 + - *77 organization: anyOf: - type: 'null' @@ -112002,10 +112249,10 @@ webhooks: type: string enum: - enabled - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -112081,11 +112328,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - rule: &701 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + rule: &704 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) @@ -112308,11 +112555,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - rule: *701 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + rule: *704 sender: *4 required: - action @@ -112500,11 +112747,11 @@ webhooks: - everyone required: - from - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - rule: *701 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + rule: *704 sender: *4 required: - action @@ -112588,7 +112835,7 @@ webhooks: type: string enum: - completed - check_run: &703 + check_run: &706 title: CheckRun description: A check performed on the code of a given code change type: object @@ -112653,8 +112900,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *76 - repository: *145 + items: *78 + repository: *148 status: type: string enum: @@ -112698,7 +112945,7 @@ webhooks: - examples: - neutral - deployment: *702 + deployment: *705 details_url: type: string examples: @@ -112758,7 +113005,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *76 + items: *78 started_at: type: string format: date-time @@ -112796,10 +113043,10 @@ webhooks: - output - app - pull_requests - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 sender: *4 required: - check_run @@ -113190,11 +113437,11 @@ webhooks: type: string enum: - created - check_run: *703 - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + check_run: *706 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 sender: *4 required: - check_run @@ -113588,11 +113835,11 @@ webhooks: type: string enum: - requested_action - check_run: *703 - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + check_run: *706 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 requested_action: description: The action requested by the user. type: object @@ -113995,11 +114242,11 @@ webhooks: type: string enum: - rerequested - check_run: *703 - installation: *698 - enterprise: *697 - organization: *699 - repository: *700 + check_run: *706 + installation: *701 + enterprise: *700 + organization: *702 + repository: *703 sender: *4 required: - check_run @@ -114984,10 +115231,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -115691,10 +115938,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -116392,10 +116639,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -116564,7 +116811,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -116716,20 +116963,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &704 + commit_oid: &707 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: *697 - installation: *698 - organization: *699 - ref: &705 + enterprise: *700 + installation: *701 + organization: *702 + ref: &708 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: *700 + repository: *703 sender: *4 required: - action @@ -116896,7 +117143,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -117137,12 +117384,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -117240,7 +117487,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117425,12 +117672,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -117599,7 +117846,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -117776,12 +118023,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -117882,7 +118129,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118071,9 +118318,9 @@ webhooks: type: - string - 'null' - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -118081,7 +118328,7 @@ webhooks: type: - string - 'null' - repository: *700 + repository: *703 sender: *4 required: - action @@ -118180,7 +118427,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118327,12 +118574,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *704 - enterprise: *697 - installation: *698 - organization: *699 - ref: *705 - repository: *700 + commit_oid: *707 + enterprise: *700 + installation: *701 + organization: *702 + ref: *708 + repository: *703 sender: *4 required: - action @@ -118501,7 +118748,7 @@ webhooks: required: - login - id - dismissed_comment: *407 + dismissed_comment: *410 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -118653,10 +118900,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -118916,10 +119163,10 @@ webhooks: - updated_at - author_association - body - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -119000,18 +119247,18 @@ webhooks: type: - string - 'null' - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *699 - pusher_type: &706 + organization: *702 + pusher_type: &709 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &707 + ref: &710 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -119021,7 +119268,7 @@ webhooks: enum: - tag - branch - repository: *700 + repository: *703 sender: *4 required: - ref @@ -119103,10 +119350,10 @@ webhooks: type: string enum: - created - definition: *266 - enterprise: *697 - installation: *698 - organization: *699 + definition: *269 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -119191,9 +119438,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -119270,10 +119517,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *266 - enterprise: *697 - installation: *698 - organization: *699 + definition: *269 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -119350,10 +119597,10 @@ webhooks: type: string enum: - updated - definition: *266 - enterprise: *697 - installation: *698 - organization: *699 + definition: *269 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -119430,19 +119677,19 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - repository: *700 - organization: *699 + enterprise: *700 + installation: *701 + repository: *703 + organization: *702 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *270 + items: *273 old_property_values: type: array description: The old custom property values for the repository. - items: *270 + items: *273 required: - action - repository @@ -119518,18 +119765,18 @@ webhooks: title: delete event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - pusher_type: *706 - ref: *707 + enterprise: *700 + installation: *701 + organization: *702 + pusher_type: *709 + ref: *710 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *700 + repository: *703 sender: *4 required: - ref @@ -119609,11 +119856,11 @@ webhooks: type: string enum: - assignees_changed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119693,11 +119940,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119778,11 +120025,11 @@ webhooks: type: string enum: - auto_reopened - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119863,11 +120110,11 @@ webhooks: type: string enum: - created - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -119946,11 +120193,11 @@ webhooks: type: string enum: - dismissed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -120029,11 +120276,11 @@ webhooks: type: string enum: - fixed - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -120113,11 +120360,11 @@ webhooks: type: string enum: - reintroduced - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -120196,11 +120443,11 @@ webhooks: type: string enum: - reopened - alert: *465 - installation: *698 - organization: *699 - enterprise: *697 - repository: *700 + alert: *468 + installation: *701 + organization: *702 + enterprise: *700 + repository: *703 sender: *4 required: - action @@ -120277,9 +120524,9 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - key: &708 + enterprise: *700 + installation: *701 + key: &711 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -120317,8 +120564,8 @@ webhooks: - verified - created_at - read_only - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -120395,11 +120642,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - key: *708 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + key: *711 + organization: *702 + repository: *703 sender: *4 required: - action @@ -120966,12 +121213,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: &712 + workflow: &715 title: Workflow type: - object @@ -121722,13 +121969,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *471 + - *474 pull_requests: type: array - items: *555 - repository: *700 - organization: *699 - installation: *698 + items: *558 + repository: *703 + organization: *702 + installation: *701 sender: *4 responses: '200': @@ -121799,7 +122046,7 @@ webhooks: type: string enum: - approved - approver: &709 + approver: &712 type: object properties: avatar_url: @@ -121842,11 +122089,11 @@ webhooks: type: string comment: type: string - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - reviewers: &710 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + reviewers: &713 type: array items: type: object @@ -121927,7 +122174,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &711 + workflow_job_run: &714 type: object properties: conclusion: @@ -122673,18 +122920,18 @@ webhooks: type: string enum: - rejected - approver: *709 + approver: *712 comment: type: string - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - reviewers: *710 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + reviewers: *713 sender: *4 since: type: string - workflow_job_run: *711 + workflow_job_run: *714 workflow_job_runs: type: array items: @@ -123401,13 +123648,13 @@ webhooks: type: string enum: - requested - enterprise: *697 + enterprise: *700 environment: type: string - installation: *698 - organization: *699 - repository: *700 - requestor: &717 + installation: *701 + organization: *702 + repository: *703 + requestor: &720 title: User type: - object @@ -125340,12 +125587,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Deployment Workflow Run type: @@ -126036,7 +126283,7 @@ webhooks: type: string enum: - answered - answer: &715 + answer: &718 type: object properties: author_association: @@ -126196,11 +126443,11 @@ webhooks: - created_at - updated_at - body - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126327,11 +126574,11 @@ webhooks: - from required: - category - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126414,11 +126661,11 @@ webhooks: type: string enum: - closed - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126500,7 +126747,7 @@ webhooks: type: string enum: - created - comment: &714 + comment: &717 type: object properties: author_association: @@ -126660,11 +126907,11 @@ webhooks: - updated_at - body - reactions - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126747,12 +126994,12 @@ webhooks: type: string enum: - deleted - comment: *714 - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + comment: *717 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126847,12 +127094,12 @@ webhooks: - from required: - body - comment: *714 - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + comment: *717 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -126936,11 +127183,11 @@ webhooks: type: string enum: - created - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127022,11 +127269,11 @@ webhooks: type: string enum: - deleted - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127126,11 +127373,11 @@ webhooks: type: string required: - from - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127212,10 +127459,10 @@ webhooks: type: string enum: - labeled - discussion: *713 - enterprise: *697 - installation: *698 - label: &716 + discussion: *716 + enterprise: *700 + installation: *701 + label: &719 title: Label type: object properties: @@ -127248,8 +127495,8 @@ webhooks: - color - default - description - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127332,11 +127579,11 @@ webhooks: type: string enum: - locked - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127418,11 +127665,11 @@ webhooks: type: string enum: - pinned - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127504,11 +127751,11 @@ webhooks: type: string enum: - reopened - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127593,16 +127840,16 @@ webhooks: changes: type: object properties: - new_discussion: *713 - new_repository: *700 + new_discussion: *716 + new_repository: *703 required: - new_discussion - new_repository - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127685,10 +127932,10 @@ webhooks: type: string enum: - unanswered - discussion: *713 - old_answer: *715 - organization: *699 - repository: *700 + discussion: *716 + old_answer: *718 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127770,12 +128017,12 @@ webhooks: type: string enum: - unlabeled - discussion: *713 - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127858,11 +128105,11 @@ webhooks: type: string enum: - unlocked - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -127944,11 +128191,11 @@ webhooks: type: string enum: - unpinned - discussion: *713 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + discussion: *716 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -128021,7 +128268,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *697 + enterprise: *700 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -128699,9 +128946,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *698 - organization: *699 - repository: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - forkee @@ -128847,9 +129094,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pages: description: The pages that were updated. type: array @@ -128887,7 +129134,7 @@ webhooks: - action - sha - html_url - repository: *700 + repository: *703 sender: *4 required: - pages @@ -128963,10 +129210,10 @@ webhooks: type: string enum: - created - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: &718 + organization: *702 + repositories: &721 description: An array of repository objects that the installation can access. type: array @@ -128992,8 +129239,8 @@ webhooks: - name - full_name - private - repository: *700 - requester: *717 + repository: *703 + requester: *720 sender: *4 required: - action @@ -129068,11 +129315,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -129149,11 +129396,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -129230,10 +129477,10 @@ webhooks: type: string enum: - added - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories_added: &719 + organization: *702 + repositories_added: &722 description: An array of repository objects, which were added to the installation. type: array @@ -129279,15 +129526,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *700 - repository_selection: &720 + repository: *703 + repository_selection: &723 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *717 + requester: *720 sender: *4 required: - action @@ -129366,10 +129613,10 @@ webhooks: type: string enum: - removed - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories_added: *719 + organization: *702 + repositories_added: *722 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -129396,9 +129643,9 @@ webhooks: - name - full_name - private - repository: *700 - repository_selection: *720 - requester: *717 + repository: *703 + repository_selection: *723 + requester: *720 sender: *4 required: - action @@ -129477,11 +129724,11 @@ webhooks: type: string enum: - suspend - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -129663,10 +129910,10 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 target_type: type: string @@ -129745,11 +129992,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *697 + enterprise: *700 installation: *20 - organization: *699 - repositories: *718 - repository: *700 + organization: *702 + repositories: *721 + repository: *703 requester: type: - 'null' @@ -129915,7 +130162,7 @@ webhooks: pin: anyOf: - type: 'null' - - *534 + - *537 user: title: User type: @@ -130001,8 +130248,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130814,8 +131061,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130832,7 +131079,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -131176,8 +131423,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -131257,7 +131504,7 @@ webhooks: type: string enum: - deleted - comment: &721 + comment: &724 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -131414,7 +131661,7 @@ webhooks: pin: anyOf: - type: 'null' - - *534 + - *537 required: - url - html_url @@ -131428,8 +131675,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132237,8 +132484,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132255,7 +132502,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -132601,8 +132848,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -132682,7 +132929,7 @@ webhooks: type: string enum: - edited - changes: &745 + changes: &748 description: The changes to the comment. type: object properties: @@ -132694,9 +132941,9 @@ webhooks: type: string required: - from - comment: *721 - enterprise: *697 - installation: *698 + comment: *724 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133507,8 +133754,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133525,7 +133772,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -133869,8 +134116,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -133951,9 +134198,9 @@ webhooks: type: string enum: - pinned - comment: *721 - enterprise: *697 - installation: *698 + comment: *724 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134766,8 +135013,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134784,7 +135031,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -135130,8 +135377,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -135211,9 +135458,9 @@ webhooks: type: string enum: - unpinned - comment: *721 - enterprise: *697 - installation: *698 + comment: *724 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136026,8 +136273,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136044,7 +136291,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -136390,8 +136637,8 @@ webhooks: - state - locked - assignee - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -136474,15 +136721,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 + blocked_issue: *75 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - blocking_issue_repo: *69 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + blocking_issue_repo: *71 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -136565,15 +136812,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 + blocked_issue: *75 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - blocking_issue_repo: *69 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + blocking_issue_repo: *71 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -136655,15 +136902,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 - blocked_issue_repo: *69 + blocked_issue: *75 + blocked_issue_repo: *71 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -136746,15 +136993,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *73 - blocked_issue_repo: *69 + blocked_issue: *75 + blocked_issue_repo: *71 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *73 - installation: *698 - organization: *699 - repository: *700 + blocking_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -136834,10 +137081,10 @@ webhooks: type: string enum: - assigned - assignee: *717 - enterprise: *697 - installation: *698 - issue: &724 + assignee: *720 + enterprise: *700 + installation: *701 + issue: &727 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -137647,12 +137894,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137669,7 +137916,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -137772,8 +138019,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -137853,8 +138100,8 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -138669,12 +138916,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138691,7 +138938,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -138937,8 +139184,8 @@ webhooks: required: - state - closed_at - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -139017,8 +139264,8 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139824,12 +140071,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139846,7 +140093,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -139948,8 +140195,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -140028,8 +140275,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140858,12 +141105,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140880,7 +141127,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -140961,7 +141208,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &722 + milestone: &725 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141104,8 +141351,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -141204,8 +141451,8 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142015,12 +142262,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142034,7 +142281,7 @@ webhooks: timeline_url: type: string format: uri - type: *220 + type: *223 title: description: Title of the issue type: string @@ -142140,9 +142387,9 @@ webhooks: - active_lock_reason - body - reactions - label: *716 - organization: *699 - repository: *700 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -142222,8 +142469,8 @@ webhooks: type: string enum: - labeled - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143032,12 +143279,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143051,7 +143298,7 @@ webhooks: timeline_url: type: string format: uri - type: *220 + type: *223 title: description: Title of the issue type: string @@ -143157,9 +143404,9 @@ webhooks: - active_lock_reason - body - reactions - label: *716 - organization: *699 - repository: *700 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -143239,8 +143486,8 @@ webhooks: type: string enum: - locked - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144074,12 +144321,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144093,7 +144340,7 @@ webhooks: timeline_url: type: string format: uri - type: *220 + type: *223 title: description: Title of the issue type: string @@ -144176,8 +144423,8 @@ webhooks: format: uri user_view_type: type: string - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -144256,8 +144503,8 @@ webhooks: type: string enum: - milestoned - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145085,12 +145332,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145107,7 +145354,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -145187,9 +145434,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *722 - organization: *699 - repository: *700 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -146076,11 +146323,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146107,7 +146354,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 + - *76 user: title: User type: @@ -146180,7 +146427,7 @@ webhooks: required: - login - id - type: *220 + type: *223 required: - id - number @@ -146676,8 +146923,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147484,11 +147731,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *633 - issue_dependencies_summary: *634 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147505,7 +147752,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -147516,7 +147763,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 + - *76 user: title: User type: @@ -147611,8 +147858,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -147692,9 +147939,9 @@ webhooks: type: string enum: - pinned - enterprise: *697 - installation: *698 - issue: &723 + enterprise: *700 + installation: *701 + issue: &726 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -148498,12 +148745,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148520,7 +148767,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -148622,8 +148869,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -148702,8 +148949,8 @@ webhooks: type: string enum: - reopened - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149535,12 +149782,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149637,9 +149884,9 @@ webhooks: format: uri user_view_type: type: string - type: *220 - organization: *699 - repository: *700 + type: *223 + organization: *702 + repository: *703 sender: *4 required: - action @@ -150526,12 +150773,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150548,7 +150795,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -151145,11 +151392,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *697 - installation: *698 - issue: *723 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *726 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151229,12 +151476,12 @@ webhooks: type: string enum: - typed - enterprise: *697 - installation: *698 - issue: *724 - type: *220 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + type: *223 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151315,7 +151562,7 @@ webhooks: type: string enum: - unassigned - assignee: &748 + assignee: &751 title: User type: - object @@ -151387,11 +151634,11 @@ webhooks: required: - login - id - enterprise: *697 - installation: *698 - issue: *724 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151470,12 +151717,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *697 - installation: *698 - issue: *724 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -151555,8 +151802,8 @@ webhooks: type: string enum: - unlocked - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152388,12 +152635,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *74 - sub_issues_summary: *633 - issue_dependencies_summary: *634 + - *76 + sub_issues_summary: *636 + issue_dependencies_summary: *637 issue_field_values: type: array - items: *519 + items: *522 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152410,7 +152657,7 @@ webhooks: title: description: Title of the issue type: string - type: *220 + type: *223 updated_at: type: string format: date-time @@ -152490,8 +152737,8 @@ webhooks: format: uri user_view_type: type: string - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -152571,11 +152818,11 @@ webhooks: type: string enum: - unpinned - enterprise: *697 - installation: *698 - issue: *723 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *726 + organization: *702 + repository: *703 sender: *4 required: - action @@ -152654,12 +152901,12 @@ webhooks: type: string enum: - untyped - enterprise: *697 - installation: *698 - issue: *724 - type: *220 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + issue: *727 + type: *223 + organization: *702 + repository: *703 sender: *4 required: - action @@ -152739,11 +152986,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -152821,11 +153068,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -152935,11 +153182,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - label: *716 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + label: *719 + organization: *702 + repository: *703 sender: *4 required: - action @@ -153021,9 +153268,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: &725 + enterprise: *700 + installation: *701 + marketplace_purchase: &728 title: Marketplace Purchase type: object required: @@ -153111,8 +153358,8 @@ webhooks: type: integer unit_count: type: integer - organization: *699 - previous_marketplace_purchase: &726 + organization: *702 + previous_marketplace_purchase: &729 title: Marketplace Purchase type: object properties: @@ -153196,7 +153443,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *700 + repository: *703 sender: *4 required: - action @@ -153276,10 +153523,10 @@ webhooks: - changed effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: *725 - organization: *699 + enterprise: *700 + installation: *701 + marketplace_purchase: *728 + organization: *702 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153367,7 +153614,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *700 + repository: *703 sender: *4 required: - action @@ -153449,10 +153696,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: *725 - organization: *699 + enterprise: *700 + installation: *701 + marketplace_purchase: *728 + organization: *702 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153538,7 +153785,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *700 + repository: *703 sender: *4 required: - action @@ -153619,8 +153866,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 marketplace_purchase: title: Marketplace Purchase type: object @@ -153706,9 +153953,9 @@ webhooks: type: integer unit_count: type: integer - organization: *699 - previous_marketplace_purchase: *726 - repository: *700 + organization: *702 + previous_marketplace_purchase: *729 + repository: *703 sender: *4 required: - action @@ -153788,12 +154035,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *697 - installation: *698 - marketplace_purchase: *725 - organization: *699 - previous_marketplace_purchase: *726 - repository: *700 + enterprise: *700 + installation: *701 + marketplace_purchase: *728 + organization: *702 + previous_marketplace_purchase: *729 + repository: *703 sender: *4 required: - action @@ -153895,11 +154142,11 @@ webhooks: type: string required: - to - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154001,11 +154248,11 @@ webhooks: type: - string - 'null' - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154084,11 +154331,11 @@ webhooks: type: string enum: - removed - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154166,11 +154413,11 @@ webhooks: type: string enum: - added - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154248,7 +154495,7 @@ webhooks: required: - login - id - team: &727 + team: &730 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -154478,11 +154725,11 @@ webhooks: type: string enum: - removed - enterprise: *697 - installation: *698 - member: *717 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + member: *720 + organization: *702 + repository: *703 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154561,7 +154808,7 @@ webhooks: required: - login - id - team: *727 + team: *730 required: - action - scope @@ -154643,8 +154890,8 @@ webhooks: type: string enum: - checks_requested - installation: *698 - merge_group: &728 + installation: *701 + merge_group: &731 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -154663,15 +154910,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *396 + head_commit: *399 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154757,10 +155004,10 @@ webhooks: - merged - invalidated - dequeued - installation: *698 - merge_group: *728 - organization: *699 - repository: *700 + installation: *701 + merge_group: *731 + organization: *702 + repository: *703 sender: *4 required: - action @@ -154833,7 +155080,7 @@ webhooks: type: string enum: - deleted - enterprise: *697 + enterprise: *700 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -154942,12 +155189,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *698 - organization: *699 + installation: *701 + organization: *702 repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -155027,11 +155274,11 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 - milestone: *722 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155110,9 +155357,9 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - milestone: &729 + enterprise: *700 + installation: *701 + milestone: &732 title: Milestone description: A collection of related issues and pull requests. type: object @@ -155254,8 +155501,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155334,11 +155581,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - milestone: *722 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155448,11 +155695,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - milestone: *722 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *725 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155532,11 +155779,11 @@ webhooks: type: string enum: - opened - enterprise: *697 - installation: *698 - milestone: *729 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + milestone: *732 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155615,11 +155862,11 @@ webhooks: type: string enum: - blocked - blocked_user: *717 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + blocked_user: *720 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155698,11 +155945,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *717 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + blocked_user: *720 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155781,9 +156028,9 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - membership: &730 + enterprise: *700 + installation: *701 + membership: &733 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -155893,8 +156140,8 @@ webhooks: - role - organization_url - user - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 required: - action @@ -155972,11 +156219,11 @@ webhooks: type: string enum: - member_added - enterprise: *697 - installation: *698 - membership: *730 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + membership: *733 + organization: *702 + repository: *703 sender: *4 required: - action @@ -156055,8 +156302,8 @@ webhooks: type: string enum: - member_invited - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -156178,10 +156425,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 - user: *717 + user: *720 required: - action - invitation @@ -156259,11 +156506,11 @@ webhooks: type: string enum: - member_removed - enterprise: *697 - installation: *698 - membership: *730 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + membership: *733 + organization: *702 + repository: *703 sender: *4 required: - action @@ -156350,11 +156597,11 @@ webhooks: properties: from: type: string - enterprise: *697 - installation: *698 - membership: *730 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + membership: *733 + organization: *702 + repository: *703 sender: *4 required: - action @@ -156431,9 +156678,9 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 package: description: Information about the package. type: object @@ -156956,7 +157203,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &731 + items: &734 title: Ruby Gems metadata type: object properties: @@ -157053,7 +157300,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -157129,9 +157376,9 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 package: description: Information about the package. type: object @@ -157493,7 +157740,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *731 + items: *734 source_url: type: string format: uri @@ -157564,7 +157811,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -157744,12 +157991,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *697 + enterprise: *700 id: type: integer - installation: *698 - organization: *699 - repository: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - id @@ -157826,7 +158073,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &732 + personal_access_token_request: &735 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -157976,10 +158223,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *697 - organization: *699 + enterprise: *700 + organization: *702 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -158056,11 +158303,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *732 - enterprise: *697 - organization: *699 + personal_access_token_request: *735 + enterprise: *700 + organization: *702 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -158136,11 +158383,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *732 - enterprise: *697 - organization: *699 + personal_access_token_request: *735 + enterprise: *700 + organization: *702 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -158215,11 +158462,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *732 - organization: *699 - enterprise: *697 + personal_access_token_request: *735 + organization: *702 + enterprise: *700 sender: *4 - installation: *698 + installation: *701 required: - action - personal_access_token_request @@ -158324,7 +158571,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *733 + last_response: *736 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -158356,8 +158603,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 zen: description: Random string of GitHub zen. @@ -158602,10 +158849,10 @@ webhooks: - from required: - note - enterprise: *697 - installation: *698 - organization: *699 - project_card: &734 + enterprise: *700 + installation: *701 + organization: *702 + project_card: &737 title: Project Card type: object properties: @@ -158728,7 +158975,7 @@ webhooks: - creator - created_at - updated_at - repository: *700 + repository: *703 sender: *4 required: - action @@ -158809,11 +159056,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - project_card: *734 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_card: *737 + repository: *703 sender: *4 required: - action @@ -158893,9 +159140,9 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 project_card: title: Project Card type: object @@ -159025,7 +159272,7 @@ webhooks: repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -159119,11 +159366,11 @@ webhooks: - from required: - note - enterprise: *697 - installation: *698 - organization: *699 - project_card: *734 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_card: *737 + repository: *703 sender: *4 required: - action @@ -159217,9 +159464,9 @@ webhooks: - from required: - column_id - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 project_card: allOf: - title: Project Card @@ -159416,7 +159663,7 @@ webhooks: type: string required: - after_id - repository: *700 + repository: *703 sender: *4 required: - action @@ -159496,10 +159743,10 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 - organization: *699 - project: &736 + enterprise: *700 + installation: *701 + organization: *702 + project: &739 title: Project type: object properties: @@ -159626,7 +159873,7 @@ webhooks: - creator - created_at - updated_at - repository: *700 + repository: *703 sender: *4 required: - action @@ -159706,10 +159953,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - project_column: &735 + enterprise: *700 + installation: *701 + organization: *702 + project_column: &738 title: Project Column type: object properties: @@ -159749,7 +159996,7 @@ webhooks: - name - created_at - updated_at - repository: *700 + repository: *703 sender: *4 required: - action @@ -159828,14 +160075,14 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - project_column: *735 + enterprise: *700 + installation: *701 + organization: *702 + project_column: *738 repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -159924,11 +160171,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - project_column: *735 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_column: *738 + repository: *703 sender: *4 required: - action @@ -160008,11 +160255,11 @@ webhooks: type: string enum: - moved - enterprise: *697 - installation: *698 - organization: *699 - project_column: *735 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project_column: *738 + repository: *703 sender: *4 required: - action @@ -160092,11 +160339,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - project: *736 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 + repository: *703 sender: *4 required: - action @@ -160176,14 +160423,14 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - project: *736 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 repository: anyOf: - type: 'null' - - *700 + - *703 sender: *4 required: - action @@ -160284,11 +160531,11 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - project: *736 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 + repository: *703 sender: *4 required: - action @@ -160367,11 +160614,11 @@ webhooks: type: string enum: - reopened - enterprise: *697 - installation: *698 - organization: *699 - project: *736 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + project: *739 + repository: *703 sender: *4 required: - action @@ -160452,9 +160699,9 @@ webhooks: type: string enum: - closed - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -160535,9 +160782,9 @@ webhooks: type: string enum: - created - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -160618,9 +160865,9 @@ webhooks: type: string enum: - deleted - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -160741,9 +160988,9 @@ webhooks: type: string to: type: string - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -160826,7 +161073,7 @@ webhooks: type: string enum: - archived - changes: &740 + changes: &743 type: object properties: archived_at: @@ -160842,9 +161089,9 @@ webhooks: - string - 'null' format: date-time - installation: *698 - organization: *699 - projects_v2_item: &737 + installation: *701 + organization: *702 + projects_v2_item: &740 title: Projects v2 Item description: An item belonging to a project type: object @@ -160862,7 +161109,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *259 + content_type: *262 creator: *4 created_at: type: string @@ -160984,9 +161231,9 @@ webhooks: - 'null' to: type: string - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -161068,9 +161315,9 @@ webhooks: type: string enum: - created - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -161151,9 +161398,9 @@ webhooks: type: string enum: - deleted - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -161258,7 +161505,7 @@ webhooks: oneOf: - type: string - type: integer - - &738 + - &741 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -161282,7 +161529,7 @@ webhooks: required: - id - name - - &739 + - &742 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -161322,8 +161569,8 @@ webhooks: oneOf: - type: string - type: integer - - *738 - - *739 + - *741 + - *742 type: - 'null' - string @@ -161346,9 +161593,9 @@ webhooks: - 'null' required: - body - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -161445,9 +161692,9 @@ webhooks: type: - string - 'null' - installation: *698 - organization: *699 - projects_v2_item: *737 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -161530,10 +161777,10 @@ webhooks: type: string enum: - restored - changes: *740 - installation: *698 - organization: *699 - projects_v2_item: *737 + changes: *743 + installation: *701 + organization: *702 + projects_v2_item: *740 sender: *4 required: - action @@ -161615,9 +161862,9 @@ webhooks: type: string enum: - reopened - installation: *698 - organization: *699 - projects_v2: *253 + installation: *701 + organization: *702 + projects_v2: *256 sender: *4 required: - action @@ -161698,9 +161945,9 @@ webhooks: type: string enum: - created - installation: *698 - organization: *699 - projects_v2_status_update: *741 + installation: *701 + organization: *702 + projects_v2_status_update: *744 sender: *4 required: - action @@ -161781,9 +162028,9 @@ webhooks: type: string enum: - deleted - installation: *698 - organization: *699 - projects_v2_status_update: *741 + installation: *701 + organization: *702 + projects_v2_status_update: *744 sender: *4 required: - action @@ -161929,9 +162176,9 @@ webhooks: - string - 'null' format: date - installation: *698 - organization: *699 - projects_v2_status_update: *741 + installation: *701 + organization: *702 + projects_v2_status_update: *744 sender: *4 required: - action @@ -162002,10 +162249,10 @@ webhooks: title: public event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - repository @@ -162082,13 +162329,13 @@ webhooks: type: string enum: - assigned - assignee: *717 - enterprise: *697 - installation: *698 - number: &742 + assignee: *720 + enterprise: *700 + installation: *701 + number: &745 description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -164467,7 +164714,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -164564,11 +164811,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -166940,7 +167187,7 @@ webhooks: - draft reason: type: string - repository: *700 + repository: *703 sender: *4 required: - action @@ -167037,11 +167284,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -169413,7 +169660,7 @@ webhooks: - draft reason: type: string - repository: *700 + repository: *703 sender: *4 required: - action @@ -169510,13 +169757,13 @@ webhooks: type: string enum: - closed - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: &743 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: &746 allOf: - - *555 + - *558 - type: object properties: allow_auto_merge: @@ -169578,7 +169825,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *700 + repository: *703 sender: *4 required: - action @@ -169659,12 +169906,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -169744,11 +169991,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *697 - milestone: *256 - number: *742 - organization: *699 - pull_request: &744 + enterprise: *700 + milestone: *259 + number: *745 + organization: *702 + pull_request: &747 title: Pull Request type: object properties: @@ -172147,7 +172394,7 @@ webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *700 + repository: *703 sender: *4 required: - action @@ -172226,11 +172473,11 @@ webhooks: type: string enum: - dequeued - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -174606,7 +174853,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *700 + repository: *703 sender: *4 required: - action @@ -174738,12 +174985,12 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -174823,11 +175070,11 @@ webhooks: type: string enum: - enqueued - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -177188,7 +177435,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -177276,11 +177523,11 @@ webhooks: type: string enum: - labeled - enterprise: *697 - installation: *698 - label: *716 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + label: *719 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -179658,7 +179905,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -179754,10 +180001,10 @@ webhooks: type: string enum: - locked - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -182133,7 +182380,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -182228,12 +182475,12 @@ webhooks: type: string enum: - milestoned - enterprise: *697 - milestone: *256 - number: *742 - organization: *699 - pull_request: *744 - repository: *700 + enterprise: *700 + milestone: *259 + number: *745 + organization: *702 + pull_request: *747 + repository: *703 sender: *4 required: - action @@ -182312,12 +182559,12 @@ webhooks: type: string enum: - opened - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -182398,12 +182645,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -182483,12 +182730,12 @@ webhooks: type: string enum: - reopened - enterprise: *697 - installation: *698 - number: *742 - organization: *699 - pull_request: *743 - repository: *700 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 + pull_request: *746 + repository: *703 sender: *4 required: - action @@ -182863,9 +183110,9 @@ webhooks: - start_side - side - reactions - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: type: object properties: @@ -185125,7 +185372,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *700 + repository: *703 sender: *4 required: - action @@ -185220,7 +185467,7 @@ webhooks: type: string enum: - deleted - comment: &746 + comment: &749 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -185513,9 +185760,9 @@ webhooks: - start_side - side - reactions - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: type: object properties: @@ -187763,7 +188010,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *700 + repository: *703 sender: *4 required: - action @@ -187858,11 +188105,11 @@ webhooks: type: string enum: - edited - changes: *745 - comment: *746 - enterprise: *697 - installation: *698 - organization: *699 + changes: *748 + comment: *749 + enterprise: *700 + installation: *701 + organization: *702 pull_request: type: object properties: @@ -190113,7 +190360,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *700 + repository: *703 sender: *4 required: - action @@ -190209,9 +190456,9 @@ webhooks: type: string enum: - dismissed - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -192474,7 +192721,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 + repository: *703 review: description: The review that was affected. type: object @@ -192740,9 +192987,9 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -194856,8 +195103,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 - review: &747 + repository: *703 + review: &750 description: The review that was affected. type: object properties: @@ -195103,12 +195350,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -197485,7 +197732,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_reviewer: title: User type: @@ -197571,12 +197818,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -199960,7 +200207,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_team: title: Team description: Groups of organization members that gives permissions @@ -200178,12 +200425,12 @@ webhooks: type: string enum: - review_requested - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -202562,7 +202809,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_reviewer: title: User type: @@ -202649,12 +202896,12 @@ webhooks: type: string enum: - review_requested - enterprise: *697 - installation: *698 + enterprise: *700 + installation: *701 number: description: The pull request number. type: integer - organization: *699 + organization: *702 pull_request: title: Pull Request type: object @@ -205024,7 +205271,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 requested_team: title: Team description: Groups of organization members that gives permissions @@ -205231,9 +205478,9 @@ webhooks: type: string enum: - submitted - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -207499,8 +207746,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 - review: *747 + repository: *703 + review: *750 sender: *4 required: - action @@ -207595,9 +207842,9 @@ webhooks: type: string enum: - resolved - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -209758,7 +210005,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 + repository: *703 sender: *4 thread: type: object @@ -210163,9 +210410,9 @@ webhooks: type: string enum: - unresolved - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 pull_request: title: Simple Pull Request type: object @@ -212309,7 +212556,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *700 + repository: *703 sender: *4 thread: type: object @@ -212716,10 +212963,10 @@ webhooks: type: string before: type: string - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -215084,7 +215331,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -215181,11 +215428,11 @@ webhooks: type: string enum: - unassigned - assignee: *748 - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + assignee: *751 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -217565,7 +217812,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -217659,11 +217906,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *697 - installation: *698 - label: *716 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + label: *719 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -220032,7 +220279,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -220128,10 +220375,10 @@ webhooks: type: string enum: - unlocked - enterprise: *697 - installation: *698 - number: *742 - organization: *699 + enterprise: *700 + installation: *701 + number: *745 + organization: *702 pull_request: title: Pull Request type: object @@ -222490,7 +222737,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *700 + repository: *703 sender: *4 required: - action @@ -222708,7 +222955,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *697 + enterprise: *700 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -222803,8 +223050,8 @@ webhooks: - url - author - committer - installation: *698 - organization: *699 + installation: *701 + organization: *702 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -223407,9 +223654,9 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 registry_package: type: object properties: @@ -223886,7 +224133,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *731 + items: *734 summary: type: string tag_name: @@ -223942,7 +224189,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -224020,9 +224267,9 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 registry_package: type: object properties: @@ -224334,7 +224581,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *731 + items: *734 summary: type: string tag_name: @@ -224384,7 +224631,7 @@ webhooks: - owner - package_version - registry - repository: *700 + repository: *703 sender: *4 required: - action @@ -224461,10 +224708,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - release: &749 + enterprise: *700 + installation: *701 + organization: *702 + release: &752 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -224795,7 +225042,7 @@ webhooks: - updated_at - zipball_url - body - repository: *700 + repository: *703 sender: *4 required: - action @@ -224872,11 +225119,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - release: *749 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *752 + repository: *703 sender: *4 required: - action @@ -224993,11 +225240,11 @@ webhooks: type: boolean required: - to - enterprise: *697 - installation: *698 - organization: *699 - release: *749 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *752 + repository: *703 sender: *4 required: - action @@ -225075,9 +225322,9 @@ webhooks: type: string enum: - prereleased - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -225413,7 +225660,7 @@ webhooks: - string - 'null' format: uri - repository: *700 + repository: *703 sender: *4 required: - action @@ -225489,10 +225736,10 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 - release: &750 + enterprise: *700 + installation: *701 + organization: *702 + release: &753 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -225825,7 +226072,7 @@ webhooks: - string - 'null' format: uri - repository: *700 + repository: *703 sender: *4 required: - action @@ -225901,11 +226148,11 @@ webhooks: type: string enum: - released - enterprise: *697 - installation: *698 - organization: *699 - release: *749 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *752 + repository: *703 sender: *4 required: - action @@ -225981,11 +226228,11 @@ webhooks: type: string enum: - unpublished - enterprise: *697 - installation: *698 - organization: *699 - release: *750 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + release: *753 + repository: *703 sender: *4 required: - action @@ -226061,11 +226308,11 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_advisory: *619 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_advisory: *622 sender: *4 required: - action @@ -226141,11 +226388,11 @@ webhooks: type: string enum: - reported - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_advisory: *619 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_advisory: *622 sender: *4 required: - action @@ -226221,10 +226468,10 @@ webhooks: type: string enum: - archived - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226301,10 +226548,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226382,10 +226629,10 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226470,10 +226717,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226588,10 +226835,10 @@ webhooks: - 'null' items: type: string - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226663,10 +226910,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 status: type: string @@ -226747,10 +226994,10 @@ webhooks: type: string enum: - privatized - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226827,10 +227074,10 @@ webhooks: type: string enum: - publicized - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -226924,10 +227171,10 @@ webhooks: - name required: - repository - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227007,11 +227254,11 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_ruleset: *298 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_ruleset: *301 sender: *4 required: - action @@ -227089,11 +227336,11 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_ruleset: *298 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_ruleset: *301 sender: *4 required: - action @@ -227171,11 +227418,11 @@ webhooks: type: string enum: - edited - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - repository_ruleset: *298 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + repository_ruleset: *301 changes: type: object properties: @@ -227194,16 +227441,16 @@ webhooks: properties: added: type: array - items: *272 + items: *275 deleted: type: array - items: *272 + items: *275 updated: type: array items: type: object properties: - condition: *272 + condition: *275 changes: type: object properties: @@ -227236,16 +227483,16 @@ webhooks: properties: added: type: array - items: *575 + items: *578 deleted: type: array - items: *575 + items: *578 updated: type: array items: type: object properties: - rule: *575 + rule: *578 changes: type: object properties: @@ -227482,10 +227729,10 @@ webhooks: - from required: - owner - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227563,10 +227810,10 @@ webhooks: type: string enum: - unarchived - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227644,7 +227891,7 @@ webhooks: type: string enum: - create - alert: &751 + alert: &754 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -227769,10 +228016,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -227982,10 +228229,10 @@ webhooks: type: string enum: - dismissed - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -228063,11 +228310,11 @@ webhooks: type: string enum: - reopen - alert: *751 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *754 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -228269,10 +228516,10 @@ webhooks: enum: - fixed - open - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -228350,17 +228597,17 @@ webhooks: type: string enum: - assigned - alert: &752 + alert: &755 type: object properties: - number: *163 - created_at: *164 + number: *166 + created_at: *167 updated_at: anyOf: - type: 'null' - - *165 - url: *166 - html_url: *167 + - *168 + url: *169 + html_url: *170 locations_url: type: string format: uri @@ -228465,10 +228712,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -228546,11 +228793,11 @@ webhooks: type: string enum: - created - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -228631,11 +228878,11 @@ webhooks: type: string enum: - created - alert: *752 - installation: *698 - location: *753 - organization: *699 - repository: *700 + alert: *755 + installation: *701 + location: *756 + organization: *702 + repository: *703 sender: *4 required: - location @@ -228873,11 +229120,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -228955,11 +229202,11 @@ webhooks: type: string enum: - reopened - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -229037,11 +229284,11 @@ webhooks: type: string enum: - resolved - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -229119,12 +229366,12 @@ webhooks: type: string enum: - unassigned - alert: *752 + alert: *755 assignee: *4 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -229202,11 +229449,11 @@ webhooks: type: string enum: - validated - alert: *752 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + alert: *755 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -229336,10 +229583,10 @@ webhooks: - organization - enterprise - - repository: *700 - enterprise: *697 - installation: *698 - organization: *699 + repository: *703 + enterprise: *700 + installation: *701 + organization: *702 sender: *4 required: - action @@ -229417,11 +229664,11 @@ webhooks: type: string enum: - published - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - security_advisory: &754 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + security_advisory: &757 description: The details of the security advisory, including summary, description, and severity. type: object @@ -229438,7 +229685,7 @@ webhooks: required: - vector_string - score - cvss_severities: *53 + cvss_severities: *55 cwes: type: array items: @@ -229625,11 +229872,11 @@ webhooks: type: string enum: - updated - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 - security_advisory: *754 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 + security_advisory: *757 sender: *4 required: - action @@ -229702,10 +229949,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -229723,7 +229970,7 @@ webhooks: required: - vector_string - score - cvss_severities: *53 + cvss_severities: *55 cwes: type: array items: @@ -229899,11 +230146,11 @@ webhooks: from: type: object properties: - security_and_analysis: *271 - enterprise: *697 - installation: *698 - organization: *699 - repository: *318 + security_and_analysis: *274 + enterprise: *700 + installation: *701 + organization: *702 + repository: *321 sender: *4 required: - changes @@ -229981,12 +230228,12 @@ webhooks: type: string enum: - cancelled - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: &755 + sponsorship: &758 type: object properties: created_at: @@ -230291,12 +230538,12 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - sponsorship @@ -230384,12 +230631,12 @@ webhooks: type: string required: - from - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - changes @@ -230466,17 +230713,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &756 + effective_date: &759 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: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - sponsorship @@ -230550,7 +230797,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &757 + changes: &760 type: object properties: tier: @@ -230594,13 +230841,13 @@ webhooks: - from required: - tier - effective_date: *756 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + effective_date: *759 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - changes @@ -230677,13 +230924,13 @@ webhooks: type: string enum: - tier_changed - changes: *757 - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + changes: *760 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - sponsorship: *755 + sponsorship: *758 required: - action - changes @@ -230757,10 +231004,10 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -230844,10 +231091,10 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -231281,15 +231528,15 @@ webhooks: type: - string - 'null' - enterprise: *697 + enterprise: *700 id: description: The unique identifier of the status. type: integer - installation: *698 + installation: *701 name: type: string - organization: *699 - repository: *700 + organization: *702 + repository: *703 sender: *4 sha: description: The Commit SHA. @@ -231399,15 +231646,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - parent_issue_repo: *69 + parent_issue: *75 + parent_issue_repo: *71 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - installation: *698 - organization: *699 - repository: *700 + sub_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -231491,15 +231738,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - parent_issue_repo: *69 + parent_issue: *75 + parent_issue_repo: *71 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - installation: *698 - organization: *699 - repository: *700 + sub_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -231583,15 +231830,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - sub_issue_repo: *69 + sub_issue: *75 + sub_issue_repo: *71 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - installation: *698 - organization: *699 - repository: *700 + parent_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -231675,15 +231922,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *73 - sub_issue_repo: *69 + sub_issue: *75 + sub_issue_repo: *71 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *73 - installation: *698 - organization: *699 - repository: *700 + parent_issue: *75 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -231760,12 +232007,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - team: &758 + team: &761 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -231995,9 +232242,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -232467,7 +232714,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -232543,9 +232790,9 @@ webhooks: type: string enum: - created - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -233015,7 +233262,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -233092,9 +233339,9 @@ webhooks: type: string enum: - deleted - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -233564,7 +233811,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -233708,9 +233955,9 @@ webhooks: - from required: - permissions - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -234180,7 +234427,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - changes @@ -234258,9 +234505,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *697 - installation: *698 - organization: *699 + enterprise: *700 + installation: *701 + organization: *702 repository: title: Repository description: A git repository @@ -234730,7 +234977,7 @@ webhooks: - topics - visibility sender: *4 - team: *758 + team: *761 required: - action - team @@ -234806,10 +235053,10 @@ webhooks: type: string enum: - started - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 required: - action @@ -234882,17 +235129,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *697 + enterprise: *700 inputs: type: - object - 'null' additionalProperties: true - installation: *698 - organization: *699 + installation: *701 + organization: *702 ref: type: string - repository: *700 + repository: *703 sender: *4 workflow: type: string @@ -234974,10 +235221,10 @@ webhooks: type: string enum: - completed - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: allOf: @@ -235233,7 +235480,7 @@ webhooks: type: string required: - conclusion - deployment: *471 + deployment: *474 required: - action - repository @@ -235312,10 +235559,10 @@ webhooks: type: string enum: - in_progress - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: allOf: @@ -235597,7 +235844,7 @@ webhooks: required: - status - steps - deployment: *471 + deployment: *474 required: - action - repository @@ -235676,10 +235923,10 @@ webhooks: type: string enum: - queued - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: type: object @@ -235825,7 +236072,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *471 + deployment: *474 required: - action - repository @@ -235904,10 +236151,10 @@ webhooks: type: string enum: - waiting - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 workflow_job: type: object @@ -236054,7 +236301,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *471 + deployment: *474 required: - action - repository @@ -236134,12 +236381,12 @@ webhooks: type: string enum: - completed - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Workflow Run type: object @@ -237158,12 +237405,12 @@ webhooks: type: string enum: - in_progress - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Workflow Run type: object @@ -238167,12 +238414,12 @@ webhooks: type: string enum: - requested - enterprise: *697 - installation: *698 - organization: *699 - repository: *700 + enterprise: *700 + installation: *701 + organization: *702 + repository: *703 sender: *4 - workflow: *712 + workflow: *715 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 80e7718bf..b01be10db 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -22969,6 +22969,349 @@ } } }, + "/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" + ], + "examples": [ + "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" + ], + "examples": [ + "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", @@ -139640,6 +139983,344 @@ } } }, + "/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" + ], + "examples": [ + "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" + ], + "examples": [ + "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-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 29cd4fe7b..b417d7094 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/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 - - &106 + - &108 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 - - &107 + - &109 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 - - &108 + - &110 name: direction description: The direction to sort the results by. in: query @@ -703,7 +703,7 @@ paths: required: - vector_string - score - cvss_severities: &126 + cvss_severities: &128 type: - object - 'null' @@ -750,7 +750,7 @@ paths: required: - vector_string - score - epss: &127 + epss: &129 type: - object - 'null' @@ -913,7 +913,7 @@ paths: - subscriptions_url - type - url - type: &433 + type: &436 type: string description: The type of credit the user is receiving. enum: @@ -1046,7 +1046,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &252 + schema: &254 title: Validation Error Simple description: Validation Error Simple type: object @@ -1079,7 +1079,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: - - &737 + - &740 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1664,7 +1664,7 @@ paths: schema: type: integer default: 30 - - &341 + - &344 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 @@ -1680,7 +1680,7 @@ paths: application/json: schema: type: array - items: &342 + items: &345 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1776,7 +1776,7 @@ paths: - installation_id - repository_id examples: - default: &343 + default: &346 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1808,7 +1808,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &747 + schema: &750 title: Scim Error description: Scim Error type: object @@ -1839,7 +1839,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &251 + schema: &253 title: Validation Error description: Validation Error type: object @@ -1911,7 +1911,7 @@ paths: description: Response content: application/json: - schema: &344 + schema: &347 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2046,7 +2046,7 @@ paths: - request - response examples: - default: &345 + default: &348 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2250,7 +2250,7 @@ paths: parameters: - *17 - *19 - - &222 + - &224 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) @@ -2896,7 +2896,7 @@ paths: application/json: schema: *20 examples: - default: &86 + default: &88 value: id: 1 account: @@ -3047,7 +3047,7 @@ paths: - selected repositories: type: array - items: &76 + items: &78 title: Repository description: A repository on GitHub. type: object @@ -3074,7 +3074,7 @@ paths: license: anyOf: - type: 'null' - - &219 + - &221 title: License Simple description: License Simple type: object @@ -7998,7 +7998,7 @@ paths: description: Response content: application/json: - schema: &253 + schema: &255 type: object properties: total_active_caches_count: @@ -8013,7 +8013,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &254 + default: &256 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -8228,7 +8228,7 @@ paths: - public_ip_enabled - platform examples: - default: &255 + default: &257 value: total_count: 2 runners: @@ -8532,7 +8532,7 @@ paths: application/json: schema: *47 examples: - default: &256 + default: &258 value: id: 1 platform: linux-x64 @@ -8677,7 +8677,7 @@ paths: application/json: schema: *50 examples: - default: &257 + default: &259 value: version: 1.0.0 size_gb: 75 @@ -8845,7 +8845,7 @@ paths: description: Response content: application/json: - schema: &258 + schema: &260 type: object properties: public_ips: @@ -8872,7 +8872,7 @@ paths: required: - public_ips examples: - default: &259 + default: &261 value: public_ips: current_usage: 17 @@ -8912,7 +8912,7 @@ paths: type: array items: *54 examples: - default: &260 + default: &262 value: id: 4-core cpu_cores: 4 @@ -9141,6 +9141,148 @@ 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: + - *39 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &57 + 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 + examples: + - 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': *27 + 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: + - *39 + requestBody: + required: true + content: + application/json: + schema: &263 + 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: &58 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *57 + examples: + default: *58 + '400': + description: Invalid input + '403': *27 + '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: + - *39 + - 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': *27 + '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 @@ -9164,7 +9306,7 @@ paths: schema: type: object properties: - enabled_organizations: &57 + enabled_organizations: &59 type: string description: The policy that controls the organizations in the enterprise that are allowed to run GitHub Actions. @@ -9177,7 +9319,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: &58 + allowed_actions: &60 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -9185,12 +9327,12 @@ paths: - all - local_only - selected - selected_actions_url: &263 + selected_actions_url: &266 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: &59 + sha_pinning_required: &61 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -9232,9 +9374,9 @@ paths: schema: type: object properties: - enabled_organizations: *57 - allowed_actions: *58 - sha_pinning_required: *59 + enabled_organizations: *59 + allowed_actions: *60 + sha_pinning_required: *61 required: - enabled_organizations examples: @@ -9265,7 +9407,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &265 + schema: &268 type: object properties: days: @@ -9283,7 +9425,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &748 + '401': &751 description: Authorization failure '404': *6 x-github: @@ -9311,7 +9453,7 @@ paths: required: true content: application/json: - schema: &266 + schema: &269 type: object properties: days: @@ -9346,7 +9488,7 @@ paths: description: Response content: application/json: - schema: &60 + schema: &62 type: object properties: approval_policy: @@ -9360,7 +9502,7 @@ paths: required: - approval_policy examples: - default: &267 + default: &270 value: approval_policy: first_time_contributors '404': *6 @@ -9389,7 +9531,7 @@ paths: required: true content: application/json: - schema: *60 + schema: *62 examples: default: summary: Set approval policy to first time contributors @@ -9418,7 +9560,7 @@ paths: description: Response content: application/json: - schema: &268 + schema: &271 type: object required: - run_workflows_from_fork_pull_requests @@ -9444,7 +9586,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &61 + default: &63 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -9472,7 +9614,7 @@ paths: required: true content: application/json: - schema: &269 + schema: &272 type: object required: - run_workflows_from_fork_pull_requests @@ -9495,7 +9637,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *61 + default: *63 responses: '204': description: Empty response for successful settings update @@ -9535,7 +9677,7 @@ paths: type: number organizations: type: array - items: &71 + items: &73 title: Organization Simple description: A GitHub organization. type: object @@ -9610,7 +9752,7 @@ paths: - total_count - organizations examples: - default: &72 + default: &74 value: total_count: 1 organizations: @@ -9689,7 +9831,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *39 - - &62 + - &64 name: org_id description: The unique identifier of the organization. in: path @@ -9718,7 +9860,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *39 - - *62 + - *64 responses: '204': description: Response @@ -9747,7 +9889,7 @@ paths: description: Response content: application/json: - schema: &63 + schema: &65 type: object properties: github_owned_allowed: @@ -9768,7 +9910,7 @@ paths: items: type: string examples: - default: &64 + default: &66 value: github_owned_allowed: true verified_allowed: false @@ -9801,9 +9943,9 @@ paths: required: true content: application/json: - schema: *63 + schema: *65 examples: - selected_actions: *64 + selected_actions: *66 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9908,17 +10050,17 @@ paths: description: Success response content: application/json: - schema: &272 + schema: &275 type: object properties: - default_workflow_permissions: &65 + default_workflow_permissions: &67 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &66 + can_approve_pull_request_reviews: &68 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -9926,7 +10068,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &67 + default: &69 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -9956,13 +10098,13 @@ paths: required: true content: application/json: - schema: &273 + schema: &276 type: object properties: - default_workflow_permissions: *65 - can_approve_pull_request_reviews: *66 + default_workflow_permissions: *67 + can_approve_pull_request_reviews: *68 examples: - default: *67 + default: *69 responses: '204': description: Success response @@ -10007,7 +10149,7 @@ paths: type: number runner_groups: type: array - items: &68 + items: &70 type: object properties: id: @@ -10188,9 +10330,9 @@ paths: description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: &69 + default: &71 value: id: 2 name: octo-runner-group @@ -10225,7 +10367,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: - *39 - - &70 + - &72 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -10237,9 +10379,9 @@ paths: description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: *69 + default: *71 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -10259,7 +10401,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: - *39 - - *70 + - *72 requestBody: required: false content: @@ -10313,7 +10455,7 @@ paths: description: Response content: application/json: - schema: *68 + schema: *70 examples: default: value: @@ -10349,7 +10491,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: - *39 - - *70 + - *72 responses: '204': description: Response @@ -10373,7 +10515,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: - *39 - - *70 + - *72 - *17 - *19 responses: @@ -10388,12 +10530,12 @@ paths: type: number organizations: type: array - items: *71 + items: *73 required: - total_count - organizations examples: - default: *72 + default: *74 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -10413,7 +10555,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: - *39 - - *70 + - *72 requestBody: required: true content: @@ -10459,8 +10601,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: - *39 - - *70 - - *62 + - *72 + - *64 responses: '204': description: Response @@ -10483,8 +10625,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: - *39 - - *70 - - *62 + - *72 + - *64 responses: '204': description: Response @@ -10508,7 +10650,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: - *39 - - *70 + - *72 - *17 - *19 responses: @@ -10523,7 +10665,7 @@ paths: type: number runners: type: array - items: &74 + items: &76 title: Self hosted runners description: A self hosted runner type: object @@ -10557,7 +10699,7 @@ paths: type: boolean labels: type: array - items: &78 + items: &80 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -10590,7 +10732,7 @@ paths: - total_count - runners examples: - default: &75 + default: &77 value: total_count: 2 runners: @@ -10650,7 +10792,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: - *39 - - *70 + - *72 requestBody: required: true content: @@ -10695,8 +10837,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: - *39 - - *70 - - &73 + - *72 + - &75 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -10725,8 +10867,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: - *39 - - *70 - - *73 + - *72 + - *75 responses: '204': description: Response @@ -10769,9 +10911,9 @@ paths: type: number runners: type: array - items: *74 + items: *76 examples: - default: *75 + default: *77 headers: Link: *45 x-github: @@ -10801,7 +10943,7 @@ paths: application/json: schema: type: array - items: &277 + items: &280 title: Runner Application description: Runner Application type: object @@ -10826,7 +10968,7 @@ paths: - download_url - filename examples: - default: &278 + default: &281 value: - os: osx architecture: x64 @@ -10910,7 +11052,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &279 + '201': &282 description: Response content: application/json: @@ -10920,7 +11062,7 @@ paths: - runner - encoded_jit_config properties: - runner: *74 + runner: *76 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -10949,7 +11091,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': &117 + '409': &119 description: Conflict content: application/json: @@ -10987,7 +11129,7 @@ paths: description: Response content: application/json: - schema: &77 + schema: &79 title: Authentication Token description: Authentication Token type: object @@ -11011,7 +11153,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *76 + items: *78 single_file: type: - string @@ -11029,7 +11171,7 @@ paths: - token - expires_at examples: - default: &280 + default: &283 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -11067,9 +11209,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: &281 + default: &284 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -11093,15 +11235,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-enterprise parameters: - *39 - - *73 + - *75 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: &282 + default: &285 value: id: 23 name: MBP @@ -11141,7 +11283,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-enterprise parameters: - *39 - - *73 + - *75 responses: '204': description: Response @@ -11166,9 +11308,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: - *39 - - *73 + - *75 responses: - '200': &79 + '200': &81 description: Response content: application/json: @@ -11182,7 +11324,7 @@ paths: type: integer labels: type: array - items: *78 + items: *80 examples: default: value: @@ -11220,7 +11362,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: - *39 - - *73 + - *75 requestBody: required: true content: @@ -11244,7 +11386,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -11267,7 +11409,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: - *39 - - *73 + - *75 requestBody: required: true content: @@ -11292,7 +11434,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -11315,9 +11457,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: - *39 - - *73 + - *75 responses: - '200': &283 + '200': &286 description: Response content: application/json: @@ -11331,7 +11473,7 @@ paths: type: integer labels: type: array - items: *78 + items: *80 examples: default: value: @@ -11372,8 +11514,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: - *39 - - *73 - - &284 + - *75 + - &287 name: name description: The name of a self-hosted runner's custom label. in: path @@ -11381,7 +11523,7 @@ paths: schema: type: string responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -11406,13 +11548,13 @@ paths: description: Response content: application/json: - schema: &84 + schema: &86 title: Announcement Banner description: Announcement at either the repository, organization, or enterprise level type: object properties: - announcement: &80 + announcement: &82 type: - string - 'null' @@ -11421,7 +11563,7 @@ paths: 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)." examples: - Very **important** announcement about _something_. - expires_at: &81 + expires_at: &83 type: - string - 'null' @@ -11433,7 +11575,7 @@ paths: it to an empty string.' examples: - '"2021-01-01T00:00:00.000-07:00"' - user_dismissible: &82 + user_dismissible: &84 type: - boolean - 'null' @@ -11446,7 +11588,7 @@ paths: - expires_at - user_dismissible examples: - default: &83 + default: &85 summary: Announcement banner value: announcement: Very **important** announcement about _something_. @@ -11470,18 +11612,18 @@ paths: required: true content: application/json: - schema: &291 + schema: &294 title: Enterprise Announcement description: Enterprise global announcement type: object properties: - announcement: *80 - expires_at: *81 - user_dismissible: *82 + announcement: *82 + expires_at: *83 + user_dismissible: *84 required: - announcement examples: - default: *83 + default: *85 parameters: - *39 responses: @@ -11489,9 +11631,9 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *83 + default: *85 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -11590,7 +11732,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#get-repositories-belonging-to-an-enterprise-owned-organization parameters: - *39 - - &85 + - &87 name: org description: The organization name. The name is not case sensitive. in: path @@ -11607,7 +11749,7 @@ paths: application/json: schema: type: array - items: &87 + items: &89 title: Accessible Repository description: A repository that may be made accessible to a GitHub App. @@ -11661,7 +11803,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: - *39 - - *85 + - *87 - *17 - *19 responses: @@ -11760,7 +11902,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: - *39 - - *85 + - *87 responses: '200': description: A GitHub App installation that was installed previously. @@ -11768,14 +11910,14 @@ paths: application/json: schema: *20 examples: - default: *86 + default: *88 '201': description: A GitHub App installation. content: application/json: schema: *20 examples: - default: *86 + default: *88 requestBody: required: true content: @@ -11843,7 +11985,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: - *39 - - *85 + - *87 - *21 responses: '204': @@ -11871,7 +12013,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: - *39 - - *85 + - *87 - *21 - *17 - *19 @@ -11883,7 +12025,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -11912,7 +12054,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: - *39 - - *85 + - *87 - *21 requestBody: required: true @@ -11952,7 +12094,7 @@ paths: application/json: schema: *20 examples: - default: *86 + default: *88 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -11973,7 +12115,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#grant-repository-access-to-an-organization-installation parameters: - *39 - - *85 + - *87 - *21 responses: '200': @@ -11983,7 +12125,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -12034,7 +12176,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#remove-repository-access-from-an-organization-installation parameters: - *39 - - *85 + - *87 - *21 responses: '200': @@ -12044,7 +12186,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -12121,7 +12263,7 @@ paths: required: false schema: type: string - - &294 + - &297 name: include description: |- The event types to include: @@ -12139,7 +12281,7 @@ paths: - web - git - all - - &295 + - &298 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. @@ -12147,7 +12289,7 @@ paths: required: false schema: type: string - - &296 + - &299 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. @@ -12155,7 +12297,7 @@ paths: required: false schema: type: string - - &297 + - &300 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -12177,7 +12319,7 @@ paths: application/json: schema: type: array - items: &298 + items: &301 type: object properties: "@timestamp": @@ -12299,7 +12441,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &299 + default: &302 value: - "@timestamp": 1606929874512 action: team.add_member @@ -12479,7 +12621,7 @@ paths: vendor_specific: type: object oneOf: - - &91 + - &93 title: AzureBlobConfig description: Azure Blob Config for audit log streaming configuration. type: object @@ -12498,7 +12640,7 @@ paths: - key_id - encrypted_sas_url - container - - &92 + - &94 title: AzureHubConfig description: Azure Event Hubs Config for audit log streaming configuration. type: object @@ -12517,7 +12659,7 @@ paths: - name - encrypted_connstring - key_id - - &93 + - &95 title: AmazonS3OIDCConfig description: Amazon S3 OIDC Config for audit log streaming configuration. type: object @@ -12545,7 +12687,7 @@ paths: - bucket - key_id - region - - &94 + - &96 title: AmazonS3AccessKeysConfig description: Amazon S3 Access Keys Config for audit log streaming configuration. @@ -12579,7 +12721,7 @@ paths: - encrypted_secret_key - key_id - region - - &95 + - &97 title: SplunkConfig description: Splunk Config for Audit Log Stream Configuration type: object @@ -12607,7 +12749,7 @@ paths: - key_id - port - ssl_verify - - &96 + - &98 title: HecConfig description: Hec Config for Audit Log Stream Configuration type: object @@ -12639,7 +12781,7 @@ paths: - key_id - port - ssl_verify - - &97 + - &99 title: GoogleCloudConfig description: Google Cloud Config for audit log streaming configuration. type: object @@ -12657,7 +12799,7 @@ paths: - bucket - key_id - encrypted_json_credentials - - &98 + - &100 title: DatadogConfig description: Datadog Config for audit log streaming configuration. type: object @@ -12688,7 +12830,7 @@ paths: - stream_type - vendor_specific examples: - default: &99 + default: &101 value: enabled: false stream_type: Azure Event Hubs @@ -12702,7 +12844,7 @@ paths: description: The audit log stream configuration was created successfully. content: application/json: - schema: &88 + schema: &90 title: Get an audit log streaming configuration description: Get an audit log streaming configuration for an enterprise. type: object @@ -12734,7 +12876,7 @@ paths: - created_at - updated_at examples: - default: &89 + default: &91 value: id: 1 stream_type: Splunk @@ -12763,7 +12905,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: - *39 - - &90 + - &92 name: stream_id description: The ID of the audit log stream configuration. in: path @@ -12775,9 +12917,9 @@ paths: description: Lists one audit log stream configuration via stream ID. content: application/json: - schema: *88 + schema: *90 examples: - default: *89 + default: *91 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -12797,7 +12939,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#update-an-existing-audit-log-stream-configuration parameters: - *39 - - *90 + - *92 requestBody: required: true content: @@ -12823,28 +12965,28 @@ paths: vendor_specific: type: object oneOf: - - *91 - - *92 - *93 - *94 - *95 - *96 - *97 - *98 + - *99 + - *100 required: - enabled - stream_type - vendor_specific examples: - default: *99 + default: *101 responses: '200': description: Successful update content: application/json: - schema: *88 + schema: *90 examples: - default: *89 + default: *91 '422': description: Validation error content: @@ -12875,7 +13017,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: - *39 - - *90 + - *92 responses: '204': description: The audit log stream configuration was deleted successfully. @@ -12902,13 +13044,13 @@ paths: subcategory: bypass-requests parameters: - *39 - - &100 + - &102 name: organization_name description: The name of the organization to filter on. in: query schema: type: string - - &101 + - &103 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -12916,7 +13058,7 @@ paths: required: false schema: type: string - - &102 + - &104 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -12924,7 +13066,7 @@ paths: required: false schema: type: string - - &103 + - &105 name: time_period description: |- The time period to filter by. @@ -12940,7 +13082,7 @@ paths: - week - month default: day - - &104 + - &106 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -12967,7 +13109,7 @@ paths: application/json: schema: type: array - items: &300 + items: &303 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -13093,7 +13235,7 @@ paths: - array - 'null' description: The responses to the bypass request. - items: &105 + items: &107 title: Bypass response description: A response made by a delegated bypasser to a bypass request. @@ -13139,7 +13281,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &301 + default: &304 value: - id: 21 number: 42 @@ -13230,11 +13372,11 @@ paths: subcategory: delegated-bypass parameters: - *39 - - *100 - - *101 - *102 - *103 - *104 + - *105 + - *106 - *17 - *19 responses: @@ -13244,7 +13386,7 @@ paths: application/json: schema: type: array - items: &303 + items: &306 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -13362,7 +13504,7 @@ paths: - array - 'null' description: The responses to the bypass request. - items: *105 + items: *107 url: type: string format: uri @@ -13375,7 +13517,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &304 + default: &307 value: - id: 21 number: 42 @@ -13460,17 +13602,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *39 - - &309 + - &312 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: &109 + schema: &111 type: string description: The name of the tool used to generate the code scanning analysis. - - &310 + - &313 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 @@ -13478,23 +13620,23 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &110 + schema: &112 type: - string - 'null' description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *106 - - *107 + - *108 + - *109 - *19 - *17 - - *108 + - *110 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &311 + schema: &314 type: string description: State of a code scanning alert. enum: @@ -13527,42 +13669,42 @@ paths: application/json: schema: type: array - items: &312 + items: &315 type: object properties: - number: &124 + number: &126 type: integer description: The security alert number. readOnly: true - created_at: &131 + created_at: &133 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: &132 + updated_at: &134 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: &129 + url: &131 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &130 + html_url: &132 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &522 + instances_url: &525 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &111 + state: &113 type: - string - 'null' @@ -13572,7 +13714,7 @@ paths: - dismissed - fixed - - fixed_at: &134 + fixed_at: &136 type: - string - 'null' @@ -13584,7 +13726,7 @@ paths: anyOf: - type: 'null' - *4 - dismissed_at: &133 + dismissed_at: &135 type: - string - 'null' @@ -13592,7 +13734,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &523 + dismissed_reason: &526 type: - string - 'null' @@ -13603,14 +13745,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &524 + dismissed_comment: &527 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &525 + rule: &528 type: object properties: id: @@ -13671,43 +13813,43 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &526 + tool: &529 type: object properties: - name: *109 + name: *111 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *110 - most_recent_instance: &527 + guid: *112 + most_recent_instance: &530 type: object properties: - ref: &520 + ref: &523 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &537 + analysis_key: &540 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: &538 + environment: &541 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: &539 + category: &542 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: *111 + state: *113 commit_sha: type: string message: @@ -13715,7 +13857,7 @@ paths: properties: text: type: string - location: &540 + location: &543 type: object description: Describe a region within a file for the alert. properties: @@ -13736,7 +13878,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: &541 + items: &544 type: - string - 'null' @@ -13748,7 +13890,7 @@ paths: - test - library - - repository: &118 + repository: &120 title: Simple Repository description: A GitHub repository. type: object @@ -14092,7 +14234,7 @@ paths: - most_recent_instance - repository examples: - default: &313 + default: &316 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -14323,7 +14465,7 @@ paths: headers: Link: *45 '404': *6 - '503': &190 + '503': &192 description: Service unavailable content: application/json: @@ -14367,8 +14509,8 @@ paths: schema: type: integer default: 30 - - *106 - - *107 + - *108 + - *109 responses: '200': description: Response @@ -14376,7 +14518,7 @@ paths: application/json: schema: type: array - items: &112 + items: &114 type: object description: A code security configuration properties: @@ -14774,7 +14916,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &116 + code_scanning_options: &118 type: - object - 'null' @@ -14793,7 +14935,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &115 + code_scanning_default_setup_options: &117 type: - object - 'null' @@ -14920,9 +15062,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *112 + schema: *114 examples: - default: &113 + default: &115 value: id: 1325 target_type: enterprise @@ -14980,7 +15122,7 @@ paths: description: Response content: application/json: - schema: &315 + schema: &318 type: array description: A list of default code security configurations items: @@ -14994,9 +15136,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *112 + configuration: *114 examples: - default: &316 + default: &319 value: - default_for_new_repos: public configuration: @@ -15085,7 +15227,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *39 - - &114 + - &116 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -15097,9 +15239,9 @@ paths: description: Response content: application/json: - schema: *112 + schema: *114 examples: - default: *113 + default: *115 '304': *35 '403': *27 '404': *6 @@ -15124,7 +15266,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *39 - - *114 + - *116 requestBody: required: true content: @@ -15203,8 +15345,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *115 - code_scanning_options: *116 + code_scanning_default_setup_options: *117 + code_scanning_options: *118 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -15300,13 +15442,13 @@ paths: description: Response content: application/json: - schema: *112 + schema: *114 examples: - default: *113 + default: *115 '304': *35 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -15330,14 +15472,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *39 - - *114 + - *116 responses: - '204': &149 + '204': &151 description: A header with no content is returned. '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -15362,7 +15504,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *39 - - *114 + - *116 requestBody: required: true content: @@ -15389,7 +15531,7 @@ paths: '202': *37 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -15414,7 +15556,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: - *39 - - *114 + - *116 requestBody: required: true content: @@ -15454,12 +15596,12 @@ paths: - none - private_and_internal - public - configuration: *112 + configuration: *114 examples: default: value: default_for_new_repos: all - configuration: &314 + configuration: &317 value: id: 1325 target_type: organization @@ -15516,7 +15658,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *39 - - *114 + - *116 - 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)." @@ -15525,8 +15667,8 @@ paths: schema: type: integer default: 30 - - *106 - - *107 + - *108 + - *109 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -15544,7 +15686,7 @@ paths: application/json: schema: type: array - items: &317 + items: &320 type: object description: Repositories associated with a code security configuration and attachment status @@ -15562,13 +15704,13 @@ paths: - failed - updating - removed_by_enterprise - repository: *118 + repository: *120 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: &318 + repository: &321 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -16051,7 +16193,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &140 + items: &142 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -16064,12 +16206,12 @@ paths: organization: anyOf: - type: 'null' - - *71 + - *73 assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &305 + - &308 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -16146,7 +16288,7 @@ paths: parent: anyOf: - type: 'null' - - &380 + - &383 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -16264,7 +16406,7 @@ paths: - slug - parent - type - - &139 + - &141 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -16387,7 +16529,7 @@ paths: - created_at additionalProperties: false examples: - default: &141 + default: &143 value: total_seats: 2 seats: @@ -16924,7 +17066,7 @@ paths: '401': *23 '403': *27 '404': *6 - '413': &320 + '413': &323 description: Payload Too Large content: application/json: @@ -17349,7 +17491,7 @@ paths: application/json: schema: type: array - items: &203 + items: &205 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -17664,7 +17806,7 @@ paths: - date additionalProperties: true examples: - default: &204 + default: &206 value: - date: '2024-06-24' total_active_users: 24 @@ -17766,7 +17908,7 @@ paths: '500': *38 '403': *27 '404': *6 - '422': &205 + '422': &207 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -17796,7 +17938,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: - *39 - - &119 + - &121 name: day description: The day to request data for, in `YYYY-MM-DD` format. in: query @@ -17811,7 +17953,7 @@ paths: description: Response content: application/json: - schema: &120 + schema: &122 type: object title: Copilot Metrics 1 Day Report description: Links to download the Copilot usage metrics report for @@ -17832,7 +17974,7 @@ paths: - download_links - report_day examples: - default: &121 + default: &123 value: download_links: - https://example.com/copilot-usage-report-1.json @@ -17870,7 +18012,7 @@ paths: description: Response content: application/json: - schema: &122 + schema: &124 type: object title: Copilot Metrics 28 Day Report description: Links to download the latest Copilot usage metrics report @@ -17898,7 +18040,7 @@ paths: - report_start_day - report_end_day examples: - default: &123 + default: &125 value: download_links: - https://example.com/copilot-usage-report-1.json @@ -17932,15 +18074,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: - *39 - - *119 + - *121 responses: '200': description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '500': *38 '403': *27 '404': *6 @@ -17973,9 +18115,9 @@ paths: description: Response content: application/json: - schema: *122 + schema: *124 examples: - default: *123 + default: *125 '500': *38 '403': *27 '404': *6 @@ -18003,7 +18145,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *39 - - &325 + - &328 name: state in: query description: |- @@ -18012,7 +18154,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &326 + - &329 name: severity in: query description: |- @@ -18021,7 +18163,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &327 + - &330 name: ecosystem in: query description: |- @@ -18030,14 +18172,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &328 + - &331 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 - - &329 + - &332 name: epss_percentage in: query description: |- @@ -18049,7 +18191,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 - - &578 + - &581 name: has in: query description: |- @@ -18063,7 +18205,7 @@ paths: type: string enum: - patch - - &330 + - &333 name: assignee in: query description: |- @@ -18072,7 +18214,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &331 + - &334 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -18082,7 +18224,7 @@ paths: enum: - development - runtime - - &332 + - &335 name: sort in: query description: |- @@ -18097,9 +18239,9 @@ paths: - updated - epss_percentage default: created + - *110 - *108 - - *106 - - *107 + - *109 - *17 responses: '200': @@ -18108,11 +18250,11 @@ paths: application/json: schema: type: array - items: &333 + items: &336 type: object description: A Dependabot alert. properties: - number: *124 + number: *126 state: type: string description: The state of the Dependabot alert. @@ -18127,7 +18269,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &125 + package: &127 type: object description: Details for the vulnerable package. readOnly: true @@ -18175,7 +18317,7 @@ paths: - direct - transitive - - security_advisory: &579 + security_advisory: &582 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -18206,13 +18348,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &128 + items: &130 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *125 + package: *127 severity: type: string description: The severity of the vulnerability. @@ -18280,8 +18422,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *126 - epss: *127 + cvss_severities: *128 + epss: *129 cwes: type: array description: Details for the advisory pertaining to Common @@ -18381,12 +18523,12 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *128 - url: *129 - html_url: *130 - created_at: *131 - updated_at: *132 - dismissed_at: *133 + security_vulnerability: *130 + url: *131 + html_url: *132 + created_at: *133 + updated_at: *134 + dismissed_at: *135 dismissed_by: anyOf: - type: 'null' @@ -18410,8 +18552,8 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *134 - auto_dismissed_at: &580 + fixed_at: *136 + auto_dismissed_at: &583 type: - string - 'null' @@ -18419,7 +18561,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &581 + dismissal_request: &584 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -18463,7 +18605,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *118 + repository: *120 required: - number - state @@ -18482,7 +18624,7 @@ paths: - repository additionalProperties: false examples: - default: &334 + default: &337 value: - number: 2 state: dismissed @@ -18865,7 +19007,7 @@ paths: roles: type: array description: The list of enterprise roles available to the enterprise. - items: &138 + items: &140 title: Enterprise Role description: Enterprise custom roles type: object @@ -18993,7 +19135,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-all-enterprise-roles-from-a-team parameters: - *39 - - &135 + - &137 name: team_slug description: The slug of the enterprise team name. in: path @@ -19036,8 +19178,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#assign-an-enterprise-role-to-a-team parameters: - *39 - - *135 - - &136 + - *137 + - &138 name: role_id description: The unique identifier of the role. in: path @@ -19079,8 +19221,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-an-enterprise-role-from-a-team parameters: - *39 - - *135 - - *136 + - *137 + - *138 responses: '204': description: Response @@ -19114,7 +19256,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-all-enterprise-roles-from-a-user parameters: - *39 - - &137 + - &139 name: username description: The handle for the GitHub user account. in: path @@ -19154,8 +19296,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#assign-an-enterprise-role-to-an-enterprise-user parameters: - *39 - - *137 - - *136 + - *139 + - *138 responses: '204': description: Response @@ -19188,8 +19330,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-enterprise-user-role-assignment parameters: - *39 - - *137 - - *136 + - *139 + - *138 responses: '204': description: Response @@ -19223,13 +19365,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#get-an-enterprise-role parameters: - *39 - - *136 + - *138 responses: '200': description: Response content: application/json: - schema: *138 + schema: *140 examples: default: value: @@ -19283,7 +19425,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: - *39 - - *136 + - *138 - *17 - *19 responses: @@ -19293,9 +19435,9 @@ paths: application/json: schema: type: array - items: *139 + items: *141 examples: - default: &206 + default: &208 value: - id: 1 name: Justice League @@ -19334,7 +19476,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: - *39 - - *136 + - *138 - *17 - *19 responses: @@ -19367,7 +19509,7 @@ paths: description: Enterprise Team the user has gotten the role through type: array - items: *139 + items: *141 examples: default: value: @@ -19459,7 +19601,7 @@ paths: application/json: schema: *20 examples: - default: &357 + default: &360 value: id: 1 account: @@ -19600,7 +19742,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: - *39 - - *137 + - *139 responses: '200': description: The user's GitHub Copilot seat details, including usage. @@ -19616,9 +19758,9 @@ paths: teams or multiple organizations are only counted once. seats: type: array - items: *140 + items: *142 examples: - default: *141 + default: *143 '500': *38 '401': *23 '403': *27 @@ -19661,7 +19803,7 @@ paths: type: integer network_configurations: type: array - items: &142 + items: &144 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -19720,7 +19862,7 @@ paths: - name - created_on examples: - default: &437 + default: &440 value: total_count: 2 network_configurations: @@ -19799,9 +19941,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: &143 + default: &145 value: id: 123456789ABCDEF name: My network configuration @@ -19828,7 +19970,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: - *39 - - &144 + - &146 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -19840,9 +19982,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: *143 + default: *145 headers: Link: *45 x-github: @@ -19862,7 +20004,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: - *39 - - *144 + - *146 requestBody: required: true content: @@ -19902,9 +20044,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: *143 + default: *145 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19922,7 +20064,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: - *39 - - *144 + - *146 responses: '204': description: Response @@ -19945,7 +20087,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: - *39 - - &438 + - &441 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -19957,7 +20099,7 @@ paths: description: Response content: application/json: - schema: &439 + schema: &442 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -19996,7 +20138,7 @@ paths: - subnet_id - region examples: - default: &440 + default: &443 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -20035,7 +20177,7 @@ paths: application/json: schema: type: array - items: &145 + items: &147 title: Custom Property for Organization description: Custom property defined for an organization allOf: @@ -20113,7 +20255,7 @@ paths: - property_name - value_type examples: - default: &146 + default: &148 value: - property_name: environment url: https://api.github.com/enterprises/github/org-properties/schema/environment @@ -20173,7 +20315,7 @@ paths: type: array description: The array of organization custom properties to create or update. - items: *145 + items: *147 minItems: 1 maxItems: 100 required: @@ -20206,9 +20348,9 @@ paths: application/json: schema: type: array - items: *145 + items: *147 examples: - default: *146 + default: *148 '403': *27 '404': *6 '422': *7 @@ -20235,7 +20377,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: - *39 - - &147 + - &149 name: custom_property_name description: The custom property name in: path @@ -20247,9 +20389,9 @@ paths: description: Response content: application/json: - schema: *145 + schema: *147 examples: - default: &148 + default: &150 value: property_name: environment url: https://api.github.com/enterprises/github/org-properties/schema/environment @@ -20286,7 +20428,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: - *39 - - *147 + - *149 requestBody: required: true content: @@ -20364,9 +20506,9 @@ paths: description: Response content: application/json: - schema: *145 + schema: *147 examples: - default: *148 + default: *150 '403': *27 '404': *6 '422': *7 @@ -20392,9 +20534,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: - *39 - - *147 + - *149 responses: - '204': *149 + '204': *151 '403': *27 '404': *6 '422': *7 @@ -20445,7 +20587,7 @@ paths: - Hello-World properties: type: array - items: &150 + items: &152 title: Custom Property Value description: Custom property name and associated value type: object @@ -20531,7 +20673,7 @@ paths: type: array description: List of custom property names and associated values to apply to the organizations. - items: *150 + items: *152 required: - organization_logins - properties @@ -20581,7 +20723,7 @@ paths: application/json: schema: type: array - items: &151 + items: &153 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -20659,7 +20801,7 @@ paths: - property_name - value_type examples: - default: &152 + default: &154 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -20717,7 +20859,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *151 + items: *153 minItems: 1 maxItems: 100 required: @@ -20747,9 +20889,9 @@ paths: application/json: schema: type: array - items: *151 + items: *153 examples: - default: *152 + default: *154 '403': *27 '404': *6 x-github: @@ -20772,16 +20914,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#promote-a-custom-property-to-an-enterprise parameters: - *39 - - *85 - - *147 + - *87 + - *149 responses: '200': description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: &153 + default: &155 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -20814,15 +20956,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *39 - - *147 + - *149 responses: '200': description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *153 + default: *155 '403': *27 '404': *6 x-github: @@ -20844,12 +20986,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: - *39 - - *147 + - *149 requestBody: required: true content: application/json: - schema: &411 + schema: &414 title: Custom Property Set Payload description: Custom property set payload type: object @@ -20924,9 +21066,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *153 + default: *155 '403': *27 '404': *6 x-github: @@ -20948,9 +21090,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *39 - - *147 + - *149 responses: - '204': *149 + '204': *151 '403': *27 '404': *6 x-github: @@ -20990,7 +21132,7 @@ paths: - push - repository default: branch - enforcement: &162 + enforcement: &164 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -21003,7 +21145,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &163 + items: &165 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -21045,7 +21187,7 @@ paths: - pull_request - exempt default: always - conditions: &187 + conditions: &189 title: Enterprise ruleset conditions type: object description: |- @@ -21058,7 +21200,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &154 + - &156 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -21084,7 +21226,7 @@ paths: type: string required: - organization_name - - &157 + - &159 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -21113,7 +21255,7 @@ paths: is prevented. required: - repository_name - - &156 + - &158 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -21141,8 +21283,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *154 - - &159 + - *156 + - &161 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -21155,7 +21297,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &155 + items: &157 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -21186,16 +21328,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *155 + items: *157 required: - repository_property - - *156 + - *158 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &158 + - &160 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -21212,22 +21354,22 @@ paths: type: integer required: - organization_id - - *157 - - *156 + - *159 + - *158 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: + - *160 + - *161 - *158 - - *159 - - *156 - type: object title: organization_property_and_repository_name description: Conditions to target organizations by property and all repositories allOf: - - &161 + - &163 title: Repository ruleset conditions for organization properties type: object description: Parameters for a organization property condition @@ -21240,7 +21382,7 @@ paths: description: The organization properties and values to include. All of these properties must match for the condition to pass. - items: &160 + items: &162 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a organization @@ -21264,28 +21406,28 @@ paths: description: The organization properties and values to exclude. The condition will not pass if any of these properties match. - items: *160 + items: *162 required: - organization_property - - *157 - - *156 + - *159 + - *158 - type: object title: organization_property_and_repository_property description: Conditions to target organizations by property and repositories by property allOf: + - *163 - *161 - - *159 - - *156 + - *158 rules: type: array description: An array of rules within the ruleset. - items: &188 + items: &190 title: Repository Rule type: object description: A repository rule. oneOf: - - &164 + - &166 title: creation description: Only allow users with bypass permission to create matching refs. @@ -21297,7 +21439,7 @@ paths: type: string enum: - creation - - &165 + - &167 title: update description: Only allow users with bypass permission to update matching refs. @@ -21318,7 +21460,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &166 + - &168 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -21330,7 +21472,7 @@ paths: type: string enum: - deletion - - &167 + - &169 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -21342,7 +21484,7 @@ paths: type: string enum: - required_linear_history - - &168 + - &170 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -21366,7 +21508,7 @@ paths: type: string required: - required_deployment_environments - - &169 + - &171 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -21378,7 +21520,7 @@ paths: type: string enum: - required_signatures - - &170 + - &172 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. @@ -21481,7 +21623,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &171 + - &173 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -21528,7 +21670,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &172 + - &174 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -21540,7 +21682,7 @@ paths: type: string enum: - non_fast_forward - - &173 + - &175 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -21577,7 +21719,7 @@ paths: required: - operator - pattern - - &174 + - &176 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -21614,7 +21756,7 @@ paths: required: - operator - pattern - - &175 + - &177 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -21651,7 +21793,7 @@ paths: required: - operator - pattern - - &176 + - &178 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -21688,7 +21830,7 @@ paths: required: - operator - pattern - - &177 + - &179 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -21725,7 +21867,7 @@ paths: required: - operator - pattern - - &178 + - &180 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -21749,7 +21891,7 @@ paths: type: string required: - restricted_file_paths - - &179 + - &181 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -21773,7 +21915,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &180 + - &182 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -21796,7 +21938,7 @@ paths: type: string required: - restricted_file_extensions - - &181 + - &183 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -21820,7 +21962,7 @@ paths: maximum: 100 required: - max_file_size - - &182 + - &184 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -21869,7 +22011,7 @@ paths: - repository_id required: - workflows - - &183 + - &185 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -21929,7 +22071,7 @@ paths: - tool required: - code_scanning_tools - - &184 + - &186 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code review @@ -21979,7 +22121,7 @@ paths: description: Response content: application/json: - schema: &185 + schema: &187 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -22014,11 +22156,11 @@ paths: source: type: string description: The name of the source - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 + items: *165 current_user_can_bypass: type: string description: |- @@ -22050,8 +22192,8 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - *156 - - &415 + - *158 + - &418 title: Organization ruleset conditions type: object description: |- @@ -22065,14 +22207,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *156 - - *157 + - *158 + - *159 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *156 + - *158 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -22094,23 +22236,23 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *156 - - *159 + - *158 + - *161 type: - 'null' - object rules: type: array - items: &703 + items: &706 title: Repository Rule type: object description: A repository rule. oneOf: - - *164 - - *165 - *166 - *167 - - &701 + - *168 + - *169 + - &704 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -22188,8 +22330,6 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - *168 - - *169 - *170 - *171 - *172 @@ -22205,6 +22345,8 @@ paths: - *182 - *183 - *184 + - *185 + - *186 created_at: type: string format: date-time @@ -22212,7 +22354,7 @@ paths: type: string format: date-time examples: - default: &186 + default: &188 value: id: 21 name: super cool ruleset @@ -22271,9 +22413,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *186 + default: *188 '404': *6 '500': *38 x-github: @@ -22317,16 +22459,16 @@ paths: - tag - push - repository - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 - conditions: *187 + items: *165 + conditions: *189 rules: description: An array of rules within the ruleset. type: array - items: *188 + items: *190 examples: default: value: @@ -22350,9 +22492,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *186 + default: *188 '404': *6 '500': *38 x-github: @@ -22414,7 +22556,7 @@ paths: application/json: schema: type: array - items: &189 + items: &191 title: Ruleset version type: object description: The historical version of a ruleset @@ -22438,7 +22580,7 @@ paths: type: string format: date-time examples: - default: &418 + default: &421 value: - version_id: 3 actor: @@ -22491,9 +22633,9 @@ paths: description: Response content: application/json: - schema: &419 + schema: &422 allOf: - - *189 + - *191 - type: object required: - state @@ -22546,7 +22688,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &420 + - &423 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -22557,7 +22699,7 @@ paths: enum: - open - resolved - - &421 + - &424 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -22567,7 +22709,7 @@ paths: required: false schema: type: string - - &422 + - &425 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -22576,7 +22718,7 @@ paths: required: false schema: type: string - - &423 + - &426 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -22595,7 +22737,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &424 + - &427 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. @@ -22607,11 +22749,11 @@ paths: - created - updated default: created - - *108 + - *110 - *17 - - *106 - - *107 - - &425 + - *108 + - *109 + - &428 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -22620,7 +22762,7 @@ paths: required: false schema: type: string - - &426 + - &429 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -22629,7 +22771,7 @@ paths: schema: type: boolean default: false - - &427 + - &430 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -22638,7 +22780,7 @@ paths: schema: type: boolean default: false - - &428 + - &431 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -22654,30 +22796,30 @@ paths: application/json: schema: type: array - items: &429 + items: &432 type: object properties: - number: *124 - created_at: *131 + number: *126 + created_at: *133 updated_at: anyOf: - type: 'null' - - *132 - url: *129 - html_url: *130 + - *134 + url: *131 + html_url: *132 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &715 + state: &718 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: &716 + resolution: &719 type: - string - 'null' @@ -22711,7 +22853,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *118 + repository: *120 push_protection_bypassed: type: - boolean @@ -22784,14 +22926,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &717 + - &720 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &719 + - &722 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -22848,7 +22990,7 @@ paths: - blob_url - commit_sha - commit_url - - &720 + - &723 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. @@ -22909,7 +23051,7 @@ paths: - page_url - commit_sha - commit_url - - &721 + - &724 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -22924,7 +23066,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &722 + - &725 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -22939,7 +23081,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &723 + - &726 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -22954,7 +23096,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &724 + - &727 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22969,7 +23111,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &725 + - &728 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22984,7 +23126,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &726 + - &729 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22999,7 +23141,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &727 + - &730 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. @@ -23014,7 +23156,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &728 + - &731 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. @@ -23029,7 +23171,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &729 + - &732 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. @@ -23044,7 +23186,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &730 + - &733 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. @@ -23059,7 +23201,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &731 + - &734 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 @@ -23084,7 +23226,7 @@ paths: - type: 'null' - *4 examples: - default: &430 + default: &433 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -23262,7 +23404,7 @@ paths: headers: Link: *45 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -23293,13 +23435,13 @@ paths: description: Response content: application/json: - schema: &431 + schema: &434 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: &192 + pattern_config_version: &194 type: - string - 'null' @@ -23309,7 +23451,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &191 + items: &193 type: object properties: token_type: @@ -23378,9 +23520,9 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *191 + items: *193 examples: - default: &432 + default: &435 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -23435,7 +23577,7 @@ paths: schema: type: object properties: - pattern_config_version: *192 + pattern_config_version: *194 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -23461,7 +23603,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *192 + custom_pattern_version: *194 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -23497,7 +23639,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 "/enterprises/{enterprise}/settings/billing/advanced-security": get: @@ -23516,7 +23658,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &434 + - &437 name: advanced_security_product in: query description: | @@ -23536,7 +23678,7 @@ paths: description: Success content: application/json: - schema: &435 + schema: &438 type: object properties: total_advanced_security_committers: @@ -23599,7 +23741,7 @@ paths: required: - repositories examples: - default: &436 + default: &439 value: total_advanced_security_committers: 2 total_count: 2 @@ -24022,7 +24164,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/budgets#get-a-budget-by-id parameters: - *39 - - &193 + - &195 name: budget_id description: The ID corresponding to the budget. in: path @@ -24125,7 +24267,7 @@ paths: '404': *6 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24373,7 +24515,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/budgets#delete-a-budget parameters: - *39 - - *193 + - *195 responses: '200': description: Response when deleting a budget @@ -24400,7 +24542,7 @@ paths: '404': *6 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24500,7 +24642,7 @@ paths: '400': *14 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24630,7 +24772,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#get-a-cost-center-by-id parameters: - *39 - - &195 + - &197 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -24688,7 +24830,7 @@ paths: - name - resources examples: - default: &194 + default: &196 value: id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -24702,7 +24844,7 @@ paths: '400': *14 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24792,13 +24934,13 @@ paths: - name - resources examples: - default: *194 + default: *196 '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24816,7 +24958,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#delete-a-cost-center parameters: - *39 - - *195 + - *197 responses: '200': description: Response when deleting a cost center @@ -24855,7 +24997,7 @@ paths: '404': *6 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24876,7 +25018,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#add-resources-to-a-cost-center parameters: - *39 - - *195 + - *197 requestBody: required: true content: @@ -24947,9 +25089,9 @@ paths: previous_cost_center: yet-another-cost-center '400': *14 '403': *27 - '409': *117 + '409': *119 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24969,7 +25111,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#remove-resources-from-a-cost-center parameters: - *39 - - *195 + - *197 requestBody: required: true content: @@ -25016,7 +25158,7 @@ paths: '400': *14 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25037,7 +25179,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-premium-request-usage-report-for-an-enterprise parameters: - *39 - - &198 + - &200 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, @@ -25046,7 +25188,7 @@ paths: required: false schema: type: integer - - &200 + - &202 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 @@ -25055,7 +25197,7 @@ paths: required: false schema: type: integer - - &199 + - &201 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -25064,7 +25206,7 @@ paths: required: false schema: type: integer - - &201 + - &203 name: organization description: The organization name to query usage for. The name is not case sensitive. @@ -25084,7 +25226,7 @@ paths: required: false schema: type: string - - &202 + - &204 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -25223,7 +25365,7 @@ paths: '403': *27 '404': *6 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25256,7 +25398,7 @@ paths: usage_report_exports: type: array description: List of usage report exports - items: &196 + items: &198 type: object properties: id: @@ -25353,7 +25495,7 @@ paths: '403': *27 '404': *6 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25421,9 +25563,9 @@ paths: description: Report export request accepted content: application/json: - schema: *196 + schema: *198 examples: - usage-report-export: &197 + usage-report-export: &199 value: id: a1b2c3d4-e5f6-7890-abcd-ef1234567890 report_type: detailed @@ -25439,7 +25581,7 @@ paths: '403': *27 '404': *6 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25473,14 +25615,14 @@ paths: description: Usage report export details content: application/json: - schema: *196 + schema: *198 examples: - usage-report-export: *197 + usage-report-export: *199 '401': *23 '403': *27 '404': *6 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25501,7 +25643,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-usage-report-for-an-enterprise parameters: - *39 - - *198 + - *200 - name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -25510,7 +25652,7 @@ paths: required: false schema: type: integer - - *199 + - *201 - name: cost_center_id description: The ID corresponding to a cost center. The default value is no cost center. @@ -25593,7 +25735,7 @@ paths: '400': *14 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25617,17 +25759,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-usage-summary-for-an-enterprise parameters: - *39 - - *198 - *200 - - *199 + - *202 - *201 + - *203 - name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *202 + - *204 - name: sku description: The SKU to query for usage. in: query @@ -25760,7 +25902,7 @@ paths: '400': *14 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25794,7 +25936,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-enterprise-team parameters: - *39 - - *135 + - *137 - 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`). @@ -25826,13 +25968,13 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 '500': *38 '403': *27 '404': *6 - '422': *205 + '422': *207 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -25859,9 +26001,9 @@ paths: application/json: schema: type: array - items: *139 + items: *141 examples: - default: *206 + default: *208 headers: Link: *45 '403': *27 @@ -25938,9 +26080,9 @@ paths: description: Response content: application/json: - schema: *139 + schema: *141 examples: - default: &211 + default: &213 value: id: 1 name: Justice League @@ -25969,7 +26111,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *39 - - &207 + - &209 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -25988,7 +26130,7 @@ paths: type: array items: *4 examples: - default: &208 + default: &210 value: - login: octocat id: 1 @@ -26027,7 +26169,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *39 - - *207 + - *209 requestBody: required: true content: @@ -26058,7 +26200,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26076,7 +26218,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *39 - - *207 + - *209 requestBody: required: true content: @@ -26107,7 +26249,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26125,8 +26267,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *39 - - *207 - - *137 + - *209 + - *139 responses: '200': description: User is a member of the enterprise team. @@ -26134,7 +26276,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &209 + exampleKey1: &211 value: login: octocat id: 1 @@ -26170,8 +26312,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *39 - - *207 - - *137 + - *209 + - *139 responses: '201': description: Successfully added team member @@ -26179,7 +26321,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *209 + exampleKey1: *211 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26197,8 +26339,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *39 - - *207 - - *137 + - *209 + - *139 responses: '204': description: Response @@ -26220,7 +26362,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *39 - - *207 + - *209 - *17 - *19 responses: @@ -26230,9 +26372,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: &210 + default: &212 value: login: github id: 1 @@ -26263,7 +26405,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *39 - - *207 + - *209 requestBody: required: true content: @@ -26291,9 +26433,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: &246 + default: &248 value: - login: github id: 1 @@ -26324,7 +26466,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *39 - - *207 + - *209 requestBody: required: true content: @@ -26365,16 +26507,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *39 - - *207 - - *85 + - *209 + - *87 responses: '200': description: The team is assigned to the organization content: application/json: - schema: *71 + schema: *73 examples: - default: *210 + default: *212 '404': description: The team is not assigned to the organization x-github: @@ -26393,16 +26535,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *39 - - *207 - - *85 + - *209 + - *87 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *71 + schema: *73 examples: - default: *210 + default: *212 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26419,8 +26561,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *39 - - *207 - - *85 + - *209 + - *87 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -26444,7 +26586,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *39 - - &212 + - &214 name: team_slug description: The slug of the team name. in: path @@ -26456,9 +26598,9 @@ paths: description: Response content: application/json: - schema: *139 + schema: *141 examples: - default: *211 + default: *213 headers: Link: *45 '403': *27 @@ -26478,7 +26620,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *39 - - *212 + - *214 requestBody: required: true content: @@ -26536,9 +26678,9 @@ paths: description: Response content: application/json: - schema: *139 + schema: *141 examples: - default: *211 + default: *213 headers: Link: *45 '403': *27 @@ -26561,7 +26703,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *39 - - *212 + - *214 responses: '204': description: Response @@ -26660,7 +26802,7 @@ paths: application/json: schema: type: array - items: &241 + items: &243 title: Event description: Event type: object @@ -26671,7 +26813,7 @@ paths: type: - string - 'null' - actor: &213 + actor: &215 title: Actor description: Actor type: object @@ -26712,7 +26854,7 @@ paths: - id - name - url - org: *213 + org: *215 payload: oneOf: - title: CreateEvent @@ -26759,7 +26901,7 @@ paths: properties: action: type: string - discussion: &853 + discussion: &856 title: Discussion description: A Discussion in a repository. type: object @@ -27056,7 +27198,7 @@ paths: - id labels: type: array - items: &216 + items: &218 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -27139,7 +27281,7 @@ paths: properties: action: type: string - issue: &217 + issue: &219 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -27260,7 +27402,7 @@ paths: milestone: anyOf: - type: 'null' - - &401 + - &404 title: Milestone description: A collection of related issues and pull requests. @@ -27432,7 +27574,7 @@ paths: timeline_url: type: string format: uri - type: &367 + type: &370 title: Issue Type description: The type of issue. type: @@ -27486,12 +27628,12 @@ paths: - node_id - name - description - repository: *76 + repository: *78 performed_via_github_app: anyOf: - type: 'null' - *5 - author_association: &214 + author_association: &216 title: author_association type: string description: How the author is associated with the @@ -27507,7 +27649,7 @@ paths: - OWNER examples: - OWNER - reactions: &215 + reactions: &217 title: Reaction Rollup type: object properties: @@ -27543,7 +27685,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &775 + sub_issues_summary: &778 title: Sub-issues Summary type: object properties: @@ -27567,7 +27709,7 @@ paths: pinned_comment: anyOf: - type: 'null' - - &218 + - &220 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -27618,16 +27760,16 @@ paths: issue_url: type: string format: uri - author_association: *214 + author_association: *216 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *215 + reactions: *217 pin: anyOf: - type: 'null' - - &660 + - &663 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -27654,7 +27796,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &776 + issue_dependencies_summary: &779 title: Issue Dependencies Summary type: object properties: @@ -27673,7 +27815,7 @@ paths: - total_blocking issue_field_values: type: array - items: &645 + items: &648 title: Issue Field Value description: A value assigned to an issue field type: object @@ -27773,10 +27915,10 @@ paths: assignees: type: array items: *4 - label: *216 + label: *218 labels: type: array - items: *216 + items: *218 required: - action - issue @@ -27785,8 +27927,8 @@ paths: properties: action: type: string - issue: *217 - comment: *218 + issue: *219 + comment: *220 required: - action - issue @@ -27967,7 +28109,7 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 allow_forking: type: boolean is_template: @@ -28058,7 +28200,7 @@ paths: type: string number: type: integer - pull_request: &220 + pull_request: &222 title: Pull Request Minimal type: object properties: @@ -28129,10 +28271,10 @@ paths: assignees: type: array items: *4 - label: *216 + label: *218 labels: type: array - items: *216 + items: *218 required: - action - number @@ -28142,7 +28284,7 @@ paths: properties: action: type: string - pull_request: *220 + pull_request: *222 comment: type: object properties: @@ -28396,7 +28538,7 @@ paths: - pull_request updated_at: type: string - pull_request: *220 + pull_request: *222 required: - action - review @@ -28445,7 +28587,7 @@ paths: updated_at: type: string format: date-time - reactions: *215 + reactions: *217 required: - action - comment @@ -28456,7 +28598,7 @@ paths: type: string release: allOf: - - &694 + - &697 title: Release description: A release. type: object @@ -28538,7 +28680,7 @@ paths: author: *4 assets: type: array - items: &695 + items: &698 title: Release Asset description: Data related to a release. type: object @@ -28613,7 +28755,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *215 + reactions: *217 required: - assets_url - upload_url @@ -28706,7 +28848,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28796,7 +28938,7 @@ paths: _links: type: object properties: - timeline: &221 + timeline: &223 title: Link With Type description: Hypermedia Link with Type type: object @@ -28808,17 +28950,17 @@ paths: required: - href - type - user: *221 - security_advisories: *221 - current_user: *221 - current_user_public: *221 - current_user_actor: *221 - current_user_organization: *221 + user: *223 + security_advisories: *223 + current_user: *223 + current_user_public: *223 + current_user_actor: *223 + current_user_organization: *223 current_user_organizations: type: array - items: *221 - repository_discussions: *221 - repository_discussions_category: *221 + items: *223 + repository_discussions: *223 + repository_discussions_category: *223 required: - timeline - user @@ -28880,7 +29022,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *222 + - *224 - *17 - *19 responses: @@ -28890,7 +29032,7 @@ paths: application/json: schema: type: array - items: &223 + items: &225 title: Base Gist description: Base Gist type: object @@ -28987,7 +29129,7 @@ paths: - created_at - updated_at examples: - default: &224 + default: &226 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -29111,7 +29253,7 @@ paths: description: Response content: application/json: - schema: &225 + schema: &227 title: Gist Simple description: Gist Simple type: object @@ -29129,7 +29271,7 @@ paths: url: type: string format: uri - user: &782 + user: &785 title: Public User description: Public User type: object @@ -29503,7 +29645,7 @@ paths: truncated: type: boolean examples: - default: &226 + default: &228 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -29607,7 +29749,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *222 + - *224 - *17 - *19 responses: @@ -29617,9 +29759,9 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *224 + default: *226 headers: Link: *45 '422': *15 @@ -29641,7 +29783,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *222 + - *224 - *17 - *19 responses: @@ -29651,9 +29793,9 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *224 + default: *226 headers: Link: *45 '401': *23 @@ -29681,7 +29823,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &227 + - &229 name: gist_id description: The unique identifier of the gist. in: path @@ -29693,10 +29835,10 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *226 - '403': &230 + default: *228 + '403': &232 description: Forbidden Gist content: application/json: @@ -29745,7 +29887,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *227 + - *229 requestBody: required: true content: @@ -29809,9 +29951,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - updateGist: *226 + updateGist: *228 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -29969,7 +30111,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *227 + - *229 responses: '204': description: Response @@ -29998,7 +30140,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *227 + - *229 - *17 - *19 responses: @@ -30008,7 +30150,7 @@ paths: application/json: schema: type: array - items: &228 + items: &230 title: Gist Comment description: A comment made to a gist. type: object @@ -30046,7 +30188,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *214 + author_association: *216 required: - url - id @@ -30111,7 +30253,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *227 + - *229 requestBody: required: true content: @@ -30137,9 +30279,9 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: - default: &229 + default: &231 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -30197,8 +30339,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *227 - - &231 + - *229 + - &233 name: comment_id description: The unique identifier of the comment. in: path @@ -30211,12 +30353,12 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: - default: *229 + default: *231 '304': *35 '404': *6 - '403': *230 + '403': *232 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -30238,8 +30380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *227 - - *231 + - *229 + - *233 requestBody: required: true content: @@ -30265,9 +30407,9 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: - default: *229 + default: *231 '404': *6 x-github: githubCloudOnly: false @@ -30284,8 +30426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *227 - - *231 + - *229 + - *233 responses: '204': description: Response @@ -30308,7 +30450,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *227 + - *229 - *17 - *19 responses: @@ -30409,7 +30551,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *227 + - *229 - *17 - *19 responses: @@ -30419,7 +30561,7 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: default: value: @@ -30484,13 +30626,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *227 + - *229 responses: '201': description: Response content: application/json: - schema: *223 + schema: *225 examples: default: value: @@ -30561,7 +30703,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *227 + - *229 responses: '204': description: Response if gist is starred @@ -30591,7 +30733,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *227 + - *229 responses: '204': description: Response @@ -30613,7 +30755,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *227 + - *229 responses: '204': description: Response @@ -30642,7 +30784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *227 + - *229 - name: sha in: path required: true @@ -30653,9 +30795,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *226 + default: *228 '422': *15 '404': *6 '403': *27 @@ -30818,7 +30960,7 @@ paths: type: array items: allOf: - - *76 + - *78 repository_selection: type: string examples: @@ -31026,7 +31168,7 @@ paths: - closed - all default: open - - &370 + - &373 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -31044,8 +31186,8 @@ paths: - updated - comments default: created - - *108 - - *222 + - *110 + - *224 - name: collab in: query required: false @@ -31075,9 +31217,9 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: &371 + default: &374 value: - id: 1 node_id: MDU6SXNzdWUx @@ -31357,7 +31499,7 @@ paths: application/json: schema: type: array - items: *219 + items: *221 examples: default: value: @@ -31655,7 +31797,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &232 + X-CommonMarker-Version: &234 example: 0.17.4 schema: type: string @@ -31710,7 +31852,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *232 + X-CommonMarker-Version: *234 content: text/html: schema: @@ -31739,7 +31881,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: - - &235 + - &237 name: account_id description: account_id parameter in: path @@ -31751,7 +31893,7 @@ paths: description: Response content: application/json: - schema: &234 + schema: &236 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -31785,7 +31927,7 @@ paths: - 'null' id: type: integer - plan: &233 + plan: &235 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -31888,7 +32030,7 @@ paths: - 'null' updated_at: type: string - plan: *233 + plan: *235 required: - url - id @@ -31896,7 +32038,7 @@ paths: - login - marketplace_purchase examples: - default: &236 + default: &238 value: url: https://api.github.com/orgs/github type: Organization @@ -31981,9 +32123,9 @@ paths: application/json: schema: type: array - items: *233 + items: *235 examples: - default: &237 + default: &239 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -32023,14 +32165,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &238 + - &240 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &239 + - &241 name: sort description: The property to sort the results by. in: query @@ -32060,9 +32202,9 @@ paths: application/json: schema: type: array - items: *234 + items: *236 examples: - default: &240 + default: &242 value: - url: https://api.github.com/orgs/github type: Organization @@ -32136,15 +32278,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: - - *235 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *236 examples: - default: *236 + default: *238 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -32176,9 +32318,9 @@ paths: application/json: schema: type: array - items: *233 + items: *235 examples: - default: *237 + default: *239 headers: Link: *45 '401': *23 @@ -32201,8 +32343,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *238 - - *239 + - *240 + - *241 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -32222,9 +32364,9 @@ paths: application/json: schema: type: array - items: *234 + items: *236 examples: - default: *240 + default: *242 headers: Link: *45 '401': *23 @@ -32489,14 +32631,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: - - &449 + - &452 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &450 + - &453 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -32513,7 +32655,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -32558,7 +32700,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &455 + '301': &458 description: Moved permanently content: application/json: @@ -32580,7 +32722,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &668 + - &671 name: all description: If `true`, show notifications marked as read. in: query @@ -32588,7 +32730,7 @@ paths: schema: type: boolean default: false - - &669 + - &672 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -32597,8 +32739,8 @@ paths: schema: type: boolean default: false - - *222 - - &670 + - *224 + - &673 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: @@ -32623,14 +32765,14 @@ paths: application/json: schema: type: array - items: &242 + items: &244 title: Thread description: Thread type: object properties: id: type: string - repository: &276 + repository: &279 title: Minimal Repository description: Minimal Repository type: object @@ -32982,7 +33124,7 @@ paths: type: boolean examples: - false - security_and_analysis: &412 + security_and_analysis: &415 type: - object - 'null' @@ -33194,7 +33336,7 @@ paths: - url - subscription_url examples: - default: &671 + default: &674 value: - id: '1' repository: @@ -33360,7 +33502,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &243 + - &245 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 @@ -33374,7 +33516,7 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: default: value: @@ -33477,7 +33619,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *243 + - *245 responses: '205': description: Reset Content @@ -33500,7 +33642,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *243 + - *245 responses: '204': description: No content @@ -33523,13 +33665,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: - - *243 + - *245 responses: '200': description: Response content: application/json: - schema: &244 + schema: &246 title: Thread Subscription description: Thread Subscription type: object @@ -33573,7 +33715,7 @@ paths: - url - subscribed examples: - default: &245 + default: &247 value: subscribed: true ignored: false @@ -33604,7 +33746,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *243 + - *245 requestBody: required: false content: @@ -33625,9 +33767,9 @@ paths: description: Response content: application/json: - schema: *244 + schema: *246 examples: - default: *245 + default: *247 '304': *35 '403': *27 '401': *23 @@ -33650,7 +33792,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *243 + - *245 responses: '204': description: Response @@ -33745,9 +33887,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: *246 + default: *248 headers: Link: example: ; rel="next" @@ -33799,7 +33941,7 @@ paths: - 3 custom_roles: type: array - items: &321 + items: &324 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -33848,7 +33990,7 @@ paths: - created_at - updated_at examples: - default: &322 + default: &325 value: id: 8030 name: Security Engineer @@ -33895,13 +34037,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &247 + schema: &249 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -33935,12 +34077,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *247 + schema: *249 examples: selected_actions: *42 responses: @@ -33969,13 +34111,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &248 + schema: &250 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -34009,12 +34151,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *248 + schema: *250 examples: selected_actions: *44 responses: @@ -34043,7 +34185,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: - - *85 + - *87 - name: page in: query description: The page number of results to fetch. @@ -34089,7 +34231,7 @@ paths: items: anyOf: - type: 'null' - - *118 + - *120 additionalProperties: false examples: default: @@ -34194,7 +34336,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: - - *85 + - *87 requestBody: required: true content: @@ -34260,7 +34402,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: - - *85 + - *87 requestBody: required: true content: @@ -34313,7 +34455,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: - - *85 + - *87 responses: '200': description: Response @@ -34321,9 +34463,9 @@ paths: application/json: schema: type: array - items: *150 + items: *152 examples: - default: &677 + default: &680 value: - property_name: environment value: production @@ -34357,7 +34499,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: - - *85 + - *87 requestBody: required: true content: @@ -34369,11 +34511,11 @@ paths: type: array description: A list of custom property names and associated values to apply to the organization. - items: *150 + items: *152 required: - properties examples: - default: &678 + default: &681 value: properties: - property_name: environment @@ -34414,13 +34556,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-an-organization parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &249 + schema: &251 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -34830,7 +34972,7 @@ paths: - updated_at - archived_at examples: - default-response: &250 + default-response: &252 value: login: github id: 1 @@ -34932,7 +35074,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#update-an-organization parameters: - - *85 + - *87 requestBody: required: false content: @@ -35156,18 +35298,18 @@ paths: description: Response content: application/json: - schema: *249 + schema: *251 examples: - default: *250 + default: *252 '422': description: Validation failed content: application/json: schema: oneOf: - - *251 - - *252 - '409': *117 + - *253 + - *254 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35190,7 +35332,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#delete-an-organization parameters: - - *85 + - *87 responses: '202': *37 '404': *6 @@ -35215,15 +35357,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *253 + schema: *255 examples: - default: *254 + default: *256 headers: Link: *45 x-github: @@ -35246,7 +35388,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: - - *85 + - *87 - *17 - *19 responses: @@ -35264,7 +35406,7 @@ paths: type: integer repository_cache_usages: type: array - items: &462 + items: &465 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -35322,7 +35464,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: - - *85 + - *87 - *17 - *19 responses: @@ -35342,7 +35484,7 @@ paths: type: array items: *46 examples: - default: *255 + default: *257 headers: Link: *45 x-github: @@ -35362,7 +35504,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: - - *85 + - *87 requestBody: required: true content: @@ -35462,7 +35604,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: - - *85 + - *87 responses: '200': description: Response @@ -35500,7 +35642,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: - - *85 + - *87 - *48 responses: '200': @@ -35509,7 +35651,7 @@ paths: application/json: schema: *47 examples: - default: *256 + default: *258 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35528,7 +35670,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: - - *85 + - *87 - *48 responses: '204': @@ -35553,7 +35695,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: - *48 - - *85 + - *87 responses: '200': description: Response @@ -35591,7 +35733,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: - - *85 + - *87 - *48 - *51 responses: @@ -35601,7 +35743,7 @@ paths: application/json: schema: *50 examples: - default: *257 + default: *259 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35620,7 +35762,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: - - *85 + - *87 - *48 - *51 responses: @@ -35643,7 +35785,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: - - *85 + - *87 responses: '200': description: Response @@ -35679,7 +35821,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: - - *85 + - *87 responses: '200': description: Response @@ -35714,15 +35856,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *258 + schema: *260 examples: - default: *259 + default: *261 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35740,7 +35882,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: - - *85 + - *87 responses: '200': description: Response @@ -35758,7 +35900,7 @@ paths: type: array items: *54 examples: - default: *260 + default: *262 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35776,7 +35918,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: - - *85 + - *87 responses: '200': description: Response @@ -35820,7 +35962,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: - - *85 + - *87 - *56 responses: '200': @@ -35849,7 +35991,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: - - *85 + - *87 - *56 requestBody: required: true @@ -35921,7 +36063,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: - - *85 + - *87 - *56 responses: '202': @@ -35936,6 +36078,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: + - *87 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *57 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *27 + 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: + - *87 + requestBody: + required: true + content: + application/json: + schema: *263 + examples: + default: *58 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *57 + examples: + default: *58 + '400': + description: Invalid input + '403': *27 + '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: + - *87 + - 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': *27 + '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 @@ -35950,13 +36197,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: - - *85 + - *87 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &261 + schema: &264 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -35970,7 +36217,7 @@ paths: required: - include_claim_keys examples: - default: &262 + default: &265 value: include_claim_keys: - repo @@ -35992,20 +36239,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *261 + schema: *264 examples: - default: *262 + default: *265 responses: '201': description: Empty response content: application/json: - schema: &287 + schema: &290 title: Empty Object description: An object without any properties. type: object @@ -36035,7 +36282,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: - - *85 + - *87 responses: '200': description: Response @@ -36044,7 +36291,7 @@ paths: schema: type: object properties: - enabled_repositories: &264 + enabled_repositories: &267 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -36057,9 +36304,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: *58 - selected_actions_url: *263 - sha_pinning_required: *59 + allowed_actions: *60 + selected_actions_url: *266 + sha_pinning_required: *61 required: - enabled_repositories examples: @@ -36089,7 +36336,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: - - *85 + - *87 responses: '204': description: Response @@ -36100,9 +36347,9 @@ paths: schema: type: object properties: - enabled_repositories: *264 - allowed_actions: *58 - sha_pinning_required: *59 + enabled_repositories: *267 + allowed_actions: *60 + sha_pinning_required: *61 required: - enabled_repositories examples: @@ -36130,13 +36377,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *265 + schema: *268 examples: response: summary: Example response @@ -36162,12 +36409,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *266 + schema: *269 examples: application/json: value: @@ -36177,7 +36424,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 x-github: enabledForGitHubApps: true @@ -36197,15 +36444,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *267 + default: *270 '404': *6 x-github: enabledForGitHubApps: true @@ -36224,7 +36471,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: - - *85 + - *87 responses: '204': description: Response @@ -36234,7 +36481,7 @@ paths: required: true content: application/json: - schema: *60 + schema: *62 examples: default: summary: Set approval policy to first time contributors @@ -36256,15 +36503,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *61 + default: *63 '403': *27 '404': *6 x-github: @@ -36282,14 +36529,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *269 + schema: *272 examples: - default: *61 + default: *63 responses: '204': description: Empty response for successful settings update @@ -36319,7 +36566,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: - - *85 + - *87 - *17 - *19 responses: @@ -36337,9 +36584,9 @@ paths: type: number repositories: type: array - items: *76 + items: *78 examples: - default: &271 + default: &274 value: total_count: 1 repositories: @@ -36479,7 +36726,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: - - *85 + - *87 responses: '204': description: Response @@ -36523,8 +36770,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: - - *85 - - &270 + - *87 + - &273 name: repository_id description: The unique identifier of the repository. in: path @@ -36552,8 +36799,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: - - *85 - - *270 + - *87 + - *273 responses: '204': description: Response @@ -36576,15 +36823,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *63 + schema: *65 examples: - default: *64 + default: *66 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -36607,7 +36854,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: - - *85 + - *87 responses: '204': description: Response @@ -36615,9 +36862,9 @@ paths: required: false content: application/json: - schema: *63 + schema: *65 examples: - selected_actions: *64 + selected_actions: *66 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -36637,7 +36884,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: - - *85 + - *87 responses: '200': description: Response @@ -36685,7 +36932,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: - - *85 + - *87 requestBody: required: true content: @@ -36712,7 +36959,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 x-github: enabledForGitHubApps: true @@ -36732,7 +36979,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: - - *85 + - *87 - *17 - *19 responses: @@ -36747,9 +36994,9 @@ paths: type: integer repositories: type: array - items: *76 + items: *78 examples: - default: *271 + default: *274 '403': *27 '404': *6 x-github: @@ -36769,7 +37016,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: - - *85 + - *87 requestBody: required: true content: @@ -36817,14 +37064,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: - - *85 - - *270 + - *87 + - *273 responses: '204': description: No content '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 x-github: enabledForGitHubApps: true @@ -36844,14 +37091,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: - - *85 - - *270 + - *87 + - *273 responses: '204': description: No content '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 x-github: enabledForGitHubApps: true @@ -36873,15 +37120,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: *67 + default: *69 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36902,7 +37149,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: - - *85 + - *87 responses: '204': description: Success response @@ -36913,9 +37160,9 @@ paths: required: false content: application/json: - schema: *273 + schema: *276 examples: - default: *67 + default: *69 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36935,7 +37182,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: - - *85 + - *87 - *17 - *19 - name: visible_to_repository @@ -36960,7 +37207,7 @@ paths: type: number runner_groups: type: array - items: &274 + items: &277 type: object properties: id: @@ -37077,7 +37324,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: - - *85 + - *87 requestBody: required: true content: @@ -37150,9 +37397,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: - default: &275 + default: &278 value: id: 2 name: octo-runner-group @@ -37187,14 +37434,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: - - *85 - - *70 + - *87 + - *72 responses: '200': description: Response content: application/json: - schema: *274 + schema: *277 examples: default: value: @@ -37230,8 +37477,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: - - *85 - - *70 + - *87 + - *72 requestBody: required: true content: @@ -37287,9 +37534,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: - default: *275 + default: *278 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -37308,8 +37555,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: - - *85 - - *70 + - *87 + - *72 responses: '204': description: Response @@ -37332,8 +37579,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: - - *85 - - *70 + - *87 + - *72 - *17 - *19 responses: @@ -37353,7 +37600,7 @@ paths: type: array items: *46 examples: - default: *255 + default: *257 headers: Link: *45 x-github: @@ -37375,8 +37622,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: - - *85 - - *70 + - *87 + - *72 - *19 - *17 responses: @@ -37394,9 +37641,9 @@ paths: type: number repositories: type: array - items: *276 + items: *279 examples: - default: &785 + default: &788 value: total_count: 1 repositories: @@ -37648,8 +37895,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: - - *85 - - *70 + - *87 + - *72 requestBody: required: true content: @@ -37693,9 +37940,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: - - *85 - - *70 - - *270 + - *87 + - *72 + - *273 responses: '204': description: Response @@ -37717,9 +37964,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: - - *85 - - *70 - - *270 + - *87 + - *72 + - *273 responses: '204': description: Response @@ -37742,8 +37989,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: - - *85 - - *70 + - *87 + - *72 - *17 - *19 responses: @@ -37761,9 +38008,9 @@ paths: type: number runners: type: array - items: *74 + items: *76 examples: - default: *75 + default: *77 headers: Link: *45 x-github: @@ -37784,8 +38031,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: - - *85 - - *70 + - *87 + - *72 requestBody: required: true content: @@ -37829,9 +38076,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: - - *85 - - *70 - - *73 + - *87 + - *72 + - *75 responses: '204': description: Response @@ -37853,9 +38100,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: - - *85 - - *70 - - *73 + - *87 + - *72 + - *75 responses: '204': description: Response @@ -37885,7 +38132,7 @@ paths: in: query schema: type: string - - *85 + - *87 - *17 - *19 responses: @@ -37903,9 +38150,9 @@ paths: type: integer runners: type: array - items: *74 + items: *76 examples: - default: *75 + default: *77 headers: Link: *45 x-github: @@ -37929,7 +38176,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: - - *85 + - *87 responses: '200': description: Response @@ -37937,9 +38184,9 @@ paths: application/json: schema: type: array - items: *277 + items: *280 examples: - default: *278 + default: *281 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37961,7 +38208,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: - - *85 + - *87 requestBody: required: true content: @@ -38004,10 +38251,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *279 + '201': *282 '404': *6 '422': *7 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38035,15 +38282,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: - - *85 + - *87 responses: '201': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *280 + default: *283 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38071,15 +38318,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: - - *85 + - *87 responses: '201': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *281 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38101,16 +38348,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: - - *85 - - *73 + - *87 + - *75 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: *282 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38131,8 +38378,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: - - *85 - - *73 + - *87 + - *75 responses: '204': description: Response @@ -38158,10 +38405,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: - - *85 - - *73 + - *87 + - *75 responses: - '200': *79 + '200': *81 '404': *6 x-github: githubCloudOnly: false @@ -38183,8 +38430,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: - - *85 - - *73 + - *87 + - *75 requestBody: required: true content: @@ -38208,7 +38455,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -38232,8 +38479,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: - - *85 - - *73 + - *87 + - *75 requestBody: required: true content: @@ -38258,7 +38505,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -38282,10 +38529,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: - - *85 - - *73 + - *87 + - *75 responses: - '200': *283 + '200': *286 '404': *6 x-github: githubCloudOnly: false @@ -38312,11 +38559,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: - - *85 - - *73 - - *284 + - *87 + - *75 + - *287 responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -38341,7 +38588,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-organization-secrets parameters: - - *85 + - *87 - *17 - *19 responses: @@ -38359,7 +38606,7 @@ paths: type: integer secrets: type: array - items: &285 + items: &288 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -38434,13 +38681,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-public-key parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &482 + schema: &485 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -38475,7 +38722,7 @@ paths: - key_id - key examples: - default: &483 + default: &486 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38500,8 +38747,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - - *85 - - &286 + - *87 + - &289 name: secret_name description: The name of the secret. in: path @@ -38513,7 +38760,7 @@ paths: description: Response content: application/json: - schema: *285 + schema: *288 examples: default: value: @@ -38543,8 +38790,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -38601,7 +38848,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -38627,8 +38874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 responses: '204': description: Response @@ -38654,8 +38901,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: - - *85 - - *286 + - *87 + - *289 - *19 - *17 responses: @@ -38673,9 +38920,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: &290 + default: &293 value: total_count: 1 repositories: @@ -38767,8 +39014,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: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -38820,8 +39067,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -38854,8 +39101,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -38887,8 +39134,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - - *85 - - &467 + - *87 + - &470 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)." @@ -38912,7 +39159,7 @@ paths: type: integer variables: type: array - items: &288 + items: &291 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -39002,7 +39249,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-organization-variable parameters: - - *85 + - *87 requestBody: required: true content: @@ -39050,7 +39297,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -39075,8 +39322,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - - *85 - - &289 + - *87 + - &292 name: name description: The name of the variable. in: path @@ -39088,7 +39335,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *291 examples: default: value: @@ -39118,8 +39365,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - - *85 - - *289 + - *87 + - *292 requestBody: required: true content: @@ -39181,8 +39428,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - - *85 - - *289 + - *87 + - *292 responses: '204': description: Response @@ -39208,8 +39455,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: - - *85 - - *289 + - *87 + - *292 - *19 - *17 responses: @@ -39227,9 +39474,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: *290 + default: *293 '409': description: Response when the visibility of the variable is not set to `selected` @@ -39255,8 +39502,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: - - *85 - - *289 + - *87 + - *292 requestBody: required: true content: @@ -39305,8 +39552,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: - - *85 - - *289 + - *87 + - *292 - name: repository_id in: path required: true @@ -39340,8 +39587,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: - - *85 - - *289 + - *87 + - *292 - name: repository_id in: path required: true @@ -39372,15 +39619,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#get-announcement-banner-for-organization parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *83 + default: *85 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -39399,19 +39646,19 @@ paths: required: true content: application/json: - schema: *291 + schema: *294 examples: - default: *83 + default: *85 parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *83 + default: *85 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -39427,7 +39674,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#remove-announcement-banner-from-organization parameters: - - *85 + - *87 responses: '204': description: Response @@ -39460,7 +39707,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *85 + - *87 requestBody: required: true content: @@ -39579,7 +39826,7 @@ paths: type: integer deployment_records: type: array - items: &292 + items: &295 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -39624,7 +39871,7 @@ paths: description: The ID of the provenance attestation associated with the deployment record. examples: - default: &293 + default: &296 value: total_count: 1 deployment_records: @@ -39659,7 +39906,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *85 + - *87 - name: cluster in: path description: The cluster name. @@ -39797,9 +40044,9 @@ paths: type: integer deployment_records: type: array - items: *292 + items: *295 examples: - default: *293 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39819,7 +40066,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *85 + - *87 requestBody: required: true content: @@ -39983,7 +40230,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *85 + - *87 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -40009,9 +40256,9 @@ paths: - 3 deployment_records: type: array - items: *292 + items: *295 examples: - default: *293 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40031,7 +40278,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *85 + - *87 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -40115,9 +40362,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *106 - - *107 - - *85 + - *108 + - *109 + - *87 requestBody: required: true content: @@ -40141,12 +40388,12 @@ paths: required: - subject_digests examples: - default: &814 + default: &817 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &815 + withPredicateType: &818 value: subject_digests: - sha256:abc123 @@ -40205,7 +40452,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &816 + default: &819 value: attestations_subject_digests: - sha256:abc: @@ -40314,7 +40561,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *85 + - *87 requestBody: required: true content: @@ -40379,7 +40626,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *85 + - *87 - name: subject_digest description: Subject Digest in: path @@ -40412,9 +40659,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *106 - - *107 - - *85 + - *108 + - *109 + - *87 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -40462,7 +40709,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-id parameters: - - *85 + - *87 - name: attestation_id description: Attestation ID in: path @@ -40498,9 +40745,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestations parameters: - *17 - - *106 - - *107 - - *85 + - *108 + - *109 + - *87 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -40556,7 +40803,7 @@ paths: initiator: type: string examples: - default: &496 + default: &499 value: attestations: - bundle: @@ -40674,7 +40921,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: - - *85 + - *87 - 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). @@ -40682,10 +40929,10 @@ paths: required: false schema: type: string - - *294 - - *295 - - *296 - *297 + - *298 + - *299 + - *300 - *17 responses: '200': @@ -40694,9 +40941,9 @@ paths: application/json: schema: type: array - items: *298 + items: *301 examples: - default: *299 + default: *302 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -40713,7 +40960,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *85 + - *87 - *17 - *19 responses: @@ -40725,7 +40972,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40744,8 +40991,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: If the user is blocked @@ -40770,8 +41017,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -40791,8 +41038,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -40818,17 +41065,17 @@ paths: category: orgs subcategory: bypass-requests parameters: - - *85 - - &302 + - *87 + - &305 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - *101 - - *102 - *103 - *104 + - *105 + - *106 - *17 - *19 responses: @@ -40838,9 +41085,9 @@ paths: application/json: schema: type: array - items: *300 + items: *303 examples: - default: *301 + default: *304 '404': *6 '500': *38 "/orgs/{org}/bypass-requests/secret-scanning": @@ -40863,12 +41110,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *85 - - *302 - - *101 - - *102 + - *87 + - *305 - *103 - *104 + - *105 + - *106 - *17 - *19 responses: @@ -40878,9 +41125,9 @@ paths: application/json: schema: type: array - items: *303 + items: *306 examples: - default: *304 + default: *307 '404': *6 '500': *38 "/orgs/{org}/campaigns": @@ -40899,15 +41146,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *85 + - *87 - *19 - *17 - - *108 + - *110 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &306 + schema: &309 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -40933,7 +41180,7 @@ paths: application/json: schema: type: array - items: &307 + items: &310 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -40964,7 +41211,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *305 + items: *308 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -40983,7 +41230,7 @@ paths: - string - 'null' format: date-time - state: *306 + state: *309 contact_link: description: The contact link of the campaign. type: @@ -41081,7 +41328,7 @@ paths: headers: Link: *45 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41105,7 +41352,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *85 + - *87 requestBody: required: true content: @@ -41206,9 +41453,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *310 examples: - default: &308 + default: &311 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -41257,7 +41504,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41279,7 +41526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *85 + - *87 - name: campaign_number description: The campaign number. in: path @@ -41291,16 +41538,16 @@ paths: description: Response content: application/json: - schema: *307 + schema: *310 examples: - default: *308 + default: *311 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41321,7 +41568,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#update-a-campaign parameters: - - *85 + - *87 - name: campaign_number description: The campaign number. in: path @@ -41371,7 +41618,7 @@ paths: - string - 'null' format: uri - state: *306 + state: *309 examples: default: value: @@ -41381,9 +41628,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *310 examples: - default: *308 + default: *311 '400': description: Bad Request content: @@ -41395,7 +41642,7 @@ paths: content: application/json: schema: *3 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41416,7 +41663,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *85 + - *87 - name: campaign_number description: The campaign number. in: path @@ -41427,7 +41674,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41449,20 +41696,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: - - *85 - - *309 - - *310 - - *106 - - *107 + - *87 + - *312 + - *313 + - *108 + - *109 - *19 - *17 - - *108 + - *110 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: *311 + schema: *314 - name: sort description: The property by which to sort the results. in: query @@ -41478,7 +41725,7 @@ paths: be returned. in: query required: false - schema: &521 + schema: &524 type: string description: Severity of a code scanning alert. enum: @@ -41504,13 +41751,13 @@ paths: application/json: schema: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 headers: Link: *45 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41532,7 +41779,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: - - *85 + - *87 - name: target_type in: query description: The target type of the code security configuration @@ -41551,8 +41798,8 @@ paths: schema: type: integer default: 30 - - *106 - - *107 + - *108 + - *109 responses: '200': description: Response @@ -41560,7 +41807,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -41643,7 +41890,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#create-a-code-security-configuration parameters: - - *85 + - *87 requestBody: required: true content: @@ -41730,7 +41977,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *116 + code_scanning_options: *118 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -41739,7 +41986,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *115 + code_scanning_default_setup_options: *117 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -41878,9 +42125,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *112 + schema: *114 examples: - default: *314 + default: *317 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41902,15 +42149,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-default-code-security-configurations parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *315 + schema: *318 examples: - default: *316 + default: *319 '304': *35 '403': *27 '404': *6 @@ -41936,7 +42183,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *85 + - *87 requestBody: required: true content: @@ -41962,11 +42209,11 @@ paths: - 32 - 91 responses: - '204': *149 + '204': *151 '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41988,16 +42235,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-a-code-security-configuration parameters: - - *85 - - *114 + - *87 + - *116 responses: '200': description: Response content: application/json: - schema: *112 + schema: *114 examples: - default: *314 + default: *317 '304': *35 '403': *27 '404': *6 @@ -42021,8 +42268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-code-security-configuration parameters: - - *85 - - *114 + - *87 + - *116 requestBody: required: true content: @@ -42109,8 +42356,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *115 - code_scanning_options: *116 + code_scanning_default_setup_options: *117 + code_scanning_options: *118 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -42235,7 +42482,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *112 + schema: *114 examples: default: value: @@ -42294,14 +42541,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *85 - - *114 + - *87 + - *116 responses: - '204': *149 + '204': *151 '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42325,8 +42572,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *85 - - *114 + - *87 + - *116 requestBody: required: true content: @@ -42389,8 +42636,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: - - *85 - - *114 + - *87 + - *116 requestBody: required: true content: @@ -42430,12 +42677,12 @@ paths: - none - private_and_internal - public - configuration: *112 + configuration: *114 examples: default: value: default_for_new_repos: all - configuration: *314 + configuration: *317 '403': *27 '404': *6 x-github: @@ -42459,8 +42706,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: - - *85 - - *114 + - *87 + - *116 - 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)." @@ -42469,8 +42716,8 @@ paths: schema: type: integer default: 30 - - *106 - - *107 + - *108 + - *109 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -42488,13 +42735,13 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *318 + repository: *321 '403': *27 '404': *6 x-github: @@ -42518,7 +42765,7 @@ paths: parameters: - *17 - *19 - - *85 + - *87 responses: '200': description: Response @@ -42534,7 +42781,7 @@ paths: type: integer codespaces: type: array - items: &372 + items: &375 type: object title: Codespace description: A codespace. @@ -42565,11 +42812,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *276 + repository: *279 machine: anyOf: - type: 'null' - - &553 + - &556 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -42856,7 +43103,7 @@ paths: - pulls_url - recent_folders examples: - default: &373 + default: &376 value: total_count: 3 codespaces: @@ -43288,7 +43535,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *85 + - *87 deprecated: true requestBody: required: true @@ -43355,7 +43602,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: - - *85 + - *87 deprecated: true requestBody: required: true @@ -43410,7 +43657,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *85 + - *87 requestBody: required: true content: @@ -43462,7 +43709,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *85 + - *87 - *17 - *19 responses: @@ -43480,7 +43727,7 @@ paths: type: integer secrets: type: array - items: &319 + items: &322 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -43521,7 +43768,7 @@ paths: - updated_at - visibility examples: - default: &554 + default: &557 value: total_count: 2 secrets: @@ -43553,13 +43800,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &555 + schema: &558 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -43594,7 +43841,7 @@ paths: - key_id - key examples: - default: &556 + default: &559 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -43617,16 +43864,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 responses: '200': description: Response content: application/json: - schema: *319 + schema: *322 examples: - default: &558 + default: &561 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -43653,8 +43900,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: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -43709,7 +43956,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -43735,8 +43982,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 responses: '204': description: Response @@ -43761,8 +44008,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: - - *85 - - *286 + - *87 + - *289 - *19 - *17 responses: @@ -43780,9 +44027,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: *290 + default: *293 '404': *6 x-github: githubCloudOnly: false @@ -43804,8 +44051,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: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -43855,8 +44102,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -43889,8 +44136,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -43929,7 +44176,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: - - *85 + - *87 responses: '200': description: OK @@ -44070,7 +44317,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: - - *85 + - *87 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -44093,9 +44340,9 @@ paths: currently being billed. seats: type: array - items: *140 + items: *142 examples: - default: *141 + default: *143 headers: Link: *45 '500': *38 @@ -44131,7 +44378,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: - - *85 + - *87 requestBody: content: application/json: @@ -44209,7 +44456,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: - - *85 + - *87 requestBody: content: application/json: @@ -44289,7 +44536,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: - - *85 + - *87 requestBody: content: application/json: @@ -44366,7 +44613,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: - - *85 + - *87 requestBody: content: application/json: @@ -44448,7 +44695,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: - - *85 + - *87 responses: '200': description: OK @@ -44501,7 +44748,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: - - *85 + - *87 requestBody: description: The content exclusion rules to set required: true @@ -44557,7 +44804,7 @@ paths: '401': *23 '403': *27 '404': *6 - '413': *320 + '413': *323 '422': *7 x-github: githubCloudOnly: @@ -44588,7 +44835,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: - - *85 + - *87 - 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`). @@ -44620,13 +44867,13 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 '500': *38 '403': *27 '404': *6 - '422': *205 + '422': *207 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44652,16 +44899,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: - - *85 - - *119 + - *87 + - *121 responses: '200': description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '500': *38 '403': *27 '404': *6 @@ -44690,15 +44937,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *122 + schema: *124 examples: - default: *123 + default: *125 '500': *38 '403': *27 '404': *6 @@ -44727,16 +44974,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: - - *85 - - *119 + - *87 + - *121 responses: '200': description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '500': *38 '403': *27 '404': *6 @@ -44765,15 +45012,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *122 + schema: *124 examples: - default: *123 + default: *125 '500': *38 '403': *27 '404': *6 @@ -44798,7 +45045,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: - - *85 + - *87 - *17 - name: page description: Page token @@ -44957,7 +45204,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: - - *85 + - *87 - name: credential_id in: path required: true @@ -44988,7 +45235,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: - - *85 + - *87 responses: '200': description: Response - list of custom role names @@ -45004,7 +45251,7 @@ paths: - 3 custom_roles: type: array - items: *321 + items: *324 examples: default: value: @@ -45091,12 +45338,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#create-a-custom-repository-role parameters: - - *85 + - *87 requestBody: required: true content: application/json: - schema: &323 + schema: &326 type: object properties: name: @@ -45138,9 +45385,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '422': *15 '404': *6 x-github: @@ -45164,16 +45411,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - - *85 - - *136 + - *87 + - *138 responses: '200': description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '404': *6 x-github: githubCloudOnly: true @@ -45195,13 +45442,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - - *85 - - *136 + - *87 + - *138 requestBody: required: true content: application/json: - schema: &324 + schema: &327 type: object properties: name: @@ -45240,9 +45487,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '422': *15 '404': *6 x-github: @@ -45266,8 +45513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - - *85 - - *136 + - *87 + - *138 responses: '204': description: Response @@ -45295,12 +45542,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *323 + schema: *326 examples: default: value: @@ -45314,9 +45561,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '422': *15 '404': *6 x-github: @@ -45346,16 +45593,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: - - *85 - - *136 + - *87 + - *138 responses: '200': description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '404': *6 x-github: githubCloudOnly: true @@ -45383,13 +45630,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: - - *85 - - *136 + - *87 + - *138 requestBody: required: true content: application/json: - schema: *324 + schema: *327 examples: default: value: @@ -45404,9 +45651,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '422': *15 '404': *6 x-github: @@ -45436,8 +45683,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: - - *85 - - *136 + - *87 + - *138 responses: '204': description: Response @@ -45465,12 +45712,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *85 - - *325 - - *326 - - *327 + - *87 - *328 - *329 + - *330 + - *331 + - *332 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -45500,7 +45747,7 @@ paths: enum: - patch - deployment - - *330 + - *333 - name: runtime_risk in: query description: |- @@ -45509,11 +45756,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *331 - - *332 + - *334 + - *335 + - *110 - *108 - - *106 - - *107 + - *109 - *17 responses: '200': @@ -45522,9 +45769,9 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: *334 + default: *337 '304': *35 '400': *14 '403': *27 @@ -45550,7 +45797,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-organization-secrets parameters: - - *85 + - *87 - *17 - *19 responses: @@ -45568,7 +45815,7 @@ paths: type: integer secrets: type: array - items: &335 + items: &338 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -45641,13 +45888,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-public-key parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &584 + schema: &587 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -45666,7 +45913,7 @@ paths: - key_id - key examples: - default: &585 + default: &588 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -45689,14 +45936,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 responses: '200': description: Response content: application/json: - schema: *335 + schema: *338 examples: default: value: @@ -45724,8 +45971,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -45782,7 +46029,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -45806,8 +46053,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 responses: '204': description: Response @@ -45831,8 +46078,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: - - *85 - - *286 + - *87 + - *289 - *19 - *17 responses: @@ -45850,9 +46097,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: *290 + default: *293 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45873,8 +46120,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: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -45924,8 +46171,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -45956,8 +46203,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -45993,8 +46240,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *85 - - &593 + - *87 + - &596 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -46002,7 +46249,7 @@ paths: required: false schema: type: string - - &594 + - &597 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -46010,7 +46257,7 @@ paths: required: false schema: type: string - - &595 + - &598 name: time_period description: |- The time period to filter by. @@ -46026,7 +46273,7 @@ paths: - week - month default: month - - &596 + - &599 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -46041,7 +46288,7 @@ paths: - denied - all default: all - - *302 + - *305 - *17 - *19 responses: @@ -46051,7 +46298,7 @@ paths: application/json: schema: type: array - items: &597 + items: &600 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -46161,7 +46408,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: &336 + items: &339 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -46214,7 +46461,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &598 + default: &601 value: - id: 21 number: 42 @@ -46301,12 +46548,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *85 - - *302 - - *101 - - *102 + - *87 + - *305 - *103 - - &337 + - *104 + - *105 + - &340 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -46332,7 +46579,7 @@ paths: application/json: schema: type: array - items: &599 + items: &602 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -46442,7 +46689,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: *336 + items: *339 url: type: string format: uri @@ -46455,7 +46702,7 @@ paths: examples: - https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &600 + default: &603 value: - id: 21 number: 42 @@ -46542,12 +46789,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *85 - - *302 - - *101 - - *102 + - *87 + - *305 - *103 - - *337 + - *104 + - *105 + - *340 - *17 - *19 responses: @@ -46557,7 +46804,7 @@ paths: application/json: schema: type: array - items: &601 + items: &604 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -46671,7 +46918,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: *105 + items: *107 url: type: string format: uri @@ -46684,7 +46931,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &602 + default: &605 value: - id: 21 number: 42 @@ -46764,7 +47011,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: - - *85 + - *87 responses: '200': description: Response @@ -46772,7 +47019,7 @@ paths: application/json: schema: type: array - items: &382 + items: &385 title: Package description: A software package type: object @@ -46825,7 +47072,7 @@ paths: repository: anyOf: - type: 'null' - - *276 + - *279 created_at: type: string format: date-time @@ -46843,7 +47090,7 @@ paths: - created_at - updated_at examples: - default: &383 + default: &386 value: - id: 197 name: hello_docker @@ -46921,7 +47168,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-organization-events parameters: - - *85 + - *87 - *17 - *19 responses: @@ -46931,7 +47178,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: 200-response: value: @@ -47004,7 +47251,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#get-an-external-group parameters: - - *85 + - *87 - name: group_id description: The unique identifier of the group. in: path @@ -47030,7 +47277,7 @@ paths: description: Response content: application/json: - schema: &446 + schema: &449 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -47120,7 +47367,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &447 + default: &450 value: group_id: '123' group_name: Octocat admins @@ -47158,7 +47405,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: - - *85 + - *87 - *17 - name: page description: Page token @@ -47175,7 +47422,7 @@ paths: description: Response content: application/json: - schema: &443 + schema: &446 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -47215,7 +47462,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &444 + default: &447 value: groups: - group_id: '123' @@ -47250,7 +47497,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-failed-organization-invitations parameters: - - *85 + - *87 - *17 - *19 responses: @@ -47260,7 +47507,7 @@ paths: application/json: schema: type: array - items: &361 + items: &364 title: Organization Invitation description: Organization Invitation type: object @@ -47314,7 +47561,7 @@ paths: - invitation_teams_url - node_id examples: - default: &362 + default: &365 value: - id: 1 login: monalisa @@ -47373,7 +47620,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: - - *85 + - *87 responses: '200': description: Response @@ -47381,7 +47628,7 @@ paths: application/json: schema: type: array - items: &413 + items: &416 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -47395,7 +47642,7 @@ paths: - name - description examples: - default: &414 + default: &417 value: - name: add_assignee description: Assign or remove a user @@ -47426,7 +47673,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-organization-webhooks parameters: - - *85 + - *87 - *17 - *19 responses: @@ -47436,7 +47683,7 @@ paths: application/json: schema: type: array - items: &338 + items: &341 title: Org Hook description: Org Hook type: object @@ -47557,7 +47804,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#create-an-organization-webhook parameters: - - *85 + - *87 requestBody: required: true content: @@ -47619,9 +47866,9 @@ paths: description: Response content: application/json: - schema: *338 + schema: *341 examples: - default: &339 + default: &342 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -47665,8 +47912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - - *85 - - &340 + - *87 + - &343 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. @@ -47679,9 +47926,9 @@ paths: description: Response content: application/json: - schema: *338 + schema: *341 examples: - default: *339 + default: *342 '404': *6 x-github: githubCloudOnly: false @@ -47702,8 +47949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - - *85 - - *340 + - *87 + - *343 requestBody: required: false content: @@ -47749,7 +47996,7 @@ paths: description: Response content: application/json: - schema: *338 + schema: *341 examples: default: value: @@ -47788,8 +48035,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *85 - - *340 + - *87 + - *343 responses: '204': description: Response @@ -47814,8 +48061,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: - - *85 - - *340 + - *87 + - *343 responses: '200': description: Response @@ -47843,8 +48090,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: - - *85 - - *340 + - *87 + - *343 requestBody: required: false content: @@ -47892,10 +48139,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *85 - - *340 + - *87 + - *343 - *17 - - *341 + - *344 responses: '200': description: Response @@ -47903,9 +48150,9 @@ paths: application/json: schema: type: array - items: *342 + items: *345 examples: - default: *343 + default: *346 '400': *14 '422': *15 x-github: @@ -47928,17 +48175,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: - - *85 - - *340 + - *87 + - *343 - *16 responses: '200': description: Response content: application/json: - schema: *344 + schema: *347 examples: - default: *345 + default: *348 '400': *14 '422': *15 x-github: @@ -47961,8 +48208,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: - - *85 - - *340 + - *87 + - *343 - *16 responses: '202': *37 @@ -47988,8 +48235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *85 - - *340 + - *87 + - *343 responses: '204': description: Response @@ -48011,8 +48258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *85 - - &350 + - *87 + - &353 name: actor_type in: path description: The type of the actor @@ -48025,14 +48272,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &351 + - &354 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &346 + - &349 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`.' @@ -48040,7 +48287,7 @@ paths: required: true schema: type: string - - &347 + - &350 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) @@ -48051,7 +48298,7 @@ paths: type: string - *19 - *17 - - *108 + - *110 - name: sort description: The property to sort the results by. in: query @@ -48134,13 +48381,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - - *85 - - *346 - - *347 + - *87 + - *349 + - *350 - *19 - *17 - - *108 - - &356 + - *110 + - &359 name: sort description: The property to sort the results by. in: query @@ -48218,15 +48465,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - - *85 - - *346 - - *347 + - *87 + - *349 + - *350 responses: '200': description: Response content: application/json: - schema: &348 + schema: &351 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -48242,7 +48489,7 @@ paths: type: integer format: int64 examples: - default: &349 + default: &352 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -48262,24 +48509,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *85 - - &352 + - *87 + - &355 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *346 - - *347 + - *349 + - *350 responses: '200': description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: enabledForGitHubApps: true category: orgs @@ -48297,19 +48544,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *85 - - *346 - - *347 + - *87 + - *349 - *350 - - *351 + - *353 + - *354 responses: '200': description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: enabledForGitHubApps: true category: orgs @@ -48326,10 +48573,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - - *85 - - *346 - - *347 - - &353 + - *87 + - *349 + - *350 + - &356 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -48342,7 +48589,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &357 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -48358,7 +48605,7 @@ paths: type: integer format: int64 examples: - default: &355 + default: &358 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -48394,19 +48641,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - - *85 - - *352 - - *346 - - *347 - - *353 + - *87 + - *355 + - *349 + - *350 + - *356 responses: '200': description: Response content: application/json: - schema: *354 + schema: *357 examples: - default: *355 + default: *358 x-github: enabledForGitHubApps: true category: orgs @@ -48423,20 +48670,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *85 - - *350 - - *351 - - *346 - - *347 + - *87 - *353 + - *354 + - *349 + - *350 + - *356 responses: '200': description: Response content: application/json: - schema: *354 + schema: *357 examples: - default: *355 + default: *358 x-github: enabledForGitHubApps: true category: orgs @@ -48453,14 +48700,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - - *85 - - *352 - - *346 - - *347 + - *87 + - *355 + - *349 + - *350 - *19 - *17 - - *108 - - *356 + - *110 + - *359 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -48536,7 +48783,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: - - *85 + - *87 responses: '200': description: Response @@ -48544,7 +48791,7 @@ paths: application/json: schema: *20 examples: - default: *357 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -48567,7 +48814,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *85 + - *87 - *17 - *19 responses: @@ -48656,7 +48903,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *85 + - *87 responses: '200': description: Response @@ -48664,12 +48911,12 @@ paths: application/json: schema: anyOf: - - &359 + - &362 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &358 + limit: &361 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -48697,7 +48944,7 @@ paths: properties: {} additionalProperties: false examples: - default: &360 + default: &363 value: limit: collaborators_only origin: organization @@ -48721,18 +48968,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *85 + - *87 requestBody: required: true content: application/json: - schema: &633 + schema: &636 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *358 + limit: *361 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -48757,9 +49004,9 @@ paths: description: Response content: application/json: - schema: *359 + schema: *362 examples: - default: *360 + default: *363 '422': *15 x-github: githubCloudOnly: false @@ -48777,7 +49024,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *85 + - *87 responses: '204': description: Response @@ -48803,7 +49050,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-pending-organization-invitations parameters: - - *85 + - *87 - *17 - *19 - name: role @@ -48837,9 +49084,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *362 + default: *365 headers: Link: *45 '404': *6 @@ -48863,7 +49110,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#create-an-organization-invitation parameters: - - *85 + - *87 requestBody: required: false content: @@ -48917,7 +49164,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: default: value: @@ -48973,8 +49220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - - *85 - - &363 + - *87 + - &366 name: invitation_id description: The unique identifier of the invitation. in: path @@ -49007,8 +49254,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - - *85 - - *363 + - *87 + - *366 - *17 - *19 responses: @@ -49018,9 +49265,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: &381 + default: &384 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -49055,7 +49302,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: - - *85 + - *87 responses: '200': description: Response @@ -49063,7 +49310,7 @@ paths: application/json: schema: type: array - items: &364 + items: &367 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -49213,7 +49460,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: - - *85 + - *87 requestBody: required: true content: @@ -49306,9 +49553,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: &365 + default: &368 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -49363,8 +49610,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: - - *85 - - &366 + - *87 + - &369 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -49465,9 +49712,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: *365 + default: *368 '404': *6 '422': *7 x-github: @@ -49491,10 +49738,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: - - *85 - - *366 + - *87 + - *369 responses: - '204': *149 + '204': *151 '404': *6 '422': *7 x-github: @@ -49514,7 +49761,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: - - *85 + - *87 responses: '200': description: Response @@ -49522,7 +49769,7 @@ paths: application/json: schema: type: array - items: *367 + items: *370 examples: default: value: @@ -49560,7 +49807,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: - - *85 + - *87 requestBody: required: true content: @@ -49610,9 +49857,9 @@ paths: description: Response content: application/json: - schema: *367 + schema: *370 examples: - default: &368 + default: &371 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -49644,8 +49891,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: - - *85 - - &369 + - *87 + - &372 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -49701,9 +49948,9 @@ paths: description: Response content: application/json: - schema: *367 + schema: *370 examples: - default: *368 + default: *371 '404': *6 '422': *7 x-github: @@ -49727,8 +49974,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: - - *85 - - *369 + - *87 + - *372 responses: '204': description: Response @@ -49761,7 +50008,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: - - *85 + - *87 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -49791,7 +50038,7 @@ paths: - closed - all default: open - - *370 + - *373 - name: type description: Can be the name of an issue type. in: query @@ -49809,8 +50056,8 @@ paths: - updated - comments default: created - - *108 - - *222 + - *110 + - *224 - *17 - *19 responses: @@ -49820,9 +50067,9 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: *371 + default: *374 headers: Link: *45 '404': *6 @@ -49844,7 +50091,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-members parameters: - - *85 + - *87 - 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) @@ -49882,7 +50129,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 '422': *15 @@ -49902,8 +50149,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response if requester is an organization member and user is @@ -49937,8 +50184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -49964,8 +50211,8 @@ paths: parameters: - *17 - *19 - - *85 - - *137 + - *87 + - *139 responses: '200': description: Response @@ -49981,9 +50228,9 @@ paths: type: integer codespaces: type: array - items: *372 + items: *375 examples: - default: *373 + default: *376 '304': *35 '500': *38 '401': *23 @@ -50008,9 +50255,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *85 - - *137 - - &374 + - *87 + - *139 + - &377 name: codespace_name in: path required: true @@ -50043,17 +50290,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: - - *85 - - *137 - - *374 + - *87 + - *139 + - *377 responses: '200': description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: &552 + default: &555 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -50226,14 +50473,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: - - *85 - - *137 + - *87 + - *139 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *140 + schema: *142 examples: default: value: @@ -50302,14 +50549,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - - *85 - - *137 + - *87 + - *139 responses: '200': description: Response content: application/json: - schema: &375 + schema: &378 title: Org Membership description: Org Membership type: object @@ -50358,7 +50605,7 @@ paths: format: uri examples: - https://api.github.com/orgs/octocat - organization: *71 + organization: *73 user: anyOf: - type: 'null' @@ -50378,7 +50625,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &376 + response-if-user-has-an-active-admin-membership-with-organization: &379 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -50450,8 +50697,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - - *85 - - *137 + - *87 + - *139 requestBody: required: false content: @@ -50479,9 +50726,9 @@ paths: description: Response content: application/json: - schema: *375 + schema: *378 examples: - response-if-user-already-had-membership-with-organization: *376 + response-if-user-already-had-membership-with-organization: *379 '422': *15 '403': *27 x-github: @@ -50505,8 +50752,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -50531,7 +50778,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-organization-migrations parameters: - - *85 + - *87 - *17 - *19 - name: exclude @@ -50553,7 +50800,7 @@ paths: application/json: schema: type: array - items: &377 + items: &380 title: Migration description: A migration. type: object @@ -50595,7 +50842,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *76 + items: *78 url: type: string format: uri @@ -50810,7 +51057,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#start-an-organization-migration parameters: - - *85 + - *87 requestBody: required: true content: @@ -50891,7 +51138,7 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: default: value: @@ -51069,8 +51316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - - *85 - - &378 + - *87 + - &381 name: migration_id description: The unique identifier of the migration. in: path @@ -51098,7 +51345,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *377 + schema: *380 examples: default: value: @@ -51267,8 +51514,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *85 - - *378 + - *87 + - *381 responses: '302': description: Response @@ -51289,8 +51536,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *85 - - *378 + - *87 + - *381 responses: '204': description: Response @@ -51313,9 +51560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - - *85 - - *378 - - &797 + - *87 + - *381 + - &800 name: repo_name description: repo_name parameter in: path @@ -51342,8 +51589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *85 - - *378 + - *87 + - *381 - *17 - *19 responses: @@ -51353,9 +51600,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: &388 + default: &391 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -51496,7 +51743,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: - - *85 + - *87 responses: '200': description: Response @@ -51550,7 +51797,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: - - *85 + - *87 responses: '200': description: Response - list of organization roles @@ -51566,7 +51813,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &379 + items: &382 title: Organization Role description: Organization roles type: object @@ -51728,7 +51975,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#create-a-custom-organization-role parameters: - - *85 + - *87 requestBody: required: true content: @@ -51775,7 +52022,7 @@ paths: description: Response content: application/json: - schema: *379 + schema: *382 examples: default: value: @@ -51804,7 +52051,7 @@ paths: updated_at: '2022-07-04T22:19:11Z' '422': *15 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -51826,8 +52073,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: - - *85 - - *212 + - *87 + - *214 responses: '204': description: Response @@ -51852,9 +52099,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: - - *85 - - *212 - - *136 + - *87 + - *214 + - *138 responses: '204': description: Response @@ -51883,9 +52130,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: - - *85 - - *212 - - *136 + - *87 + - *214 + - *138 responses: '204': description: Response @@ -51910,8 +52157,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -51936,9 +52183,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: - - *85 - - *137 - - *136 + - *87 + - *139 + - *138 responses: '204': description: Response @@ -51968,9 +52215,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: - - *85 - - *137 - - *136 + - *87 + - *139 + - *138 responses: '204': description: Response @@ -51998,14 +52245,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - - *85 - - *136 + - *87 + - *138 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: default: value: @@ -52062,8 +52309,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - - *85 - - *136 + - *87 + - *138 requestBody: required: true content: @@ -52102,7 +52349,7 @@ paths: description: Response content: application/json: - schema: *379 + schema: *382 examples: default: value: @@ -52130,7 +52377,7 @@ paths: created_at: '2022-07-04T22:19:11Z' updated_at: '2022-07-04T22:19:11Z' '422': *15 - '409': *117 + '409': *119 '404': *6 x-github: githubCloudOnly: true @@ -52155,8 +52402,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - - *85 - - *136 + - *87 + - *138 responses: '204': description: Response @@ -52181,8 +52428,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: - - *85 - - *136 + - *87 + - *138 - *17 - *19 responses: @@ -52261,7 +52508,7 @@ paths: parent: anyOf: - type: 'null' - - *380 + - *383 type: description: The ownership type of the team type: string @@ -52294,7 +52541,7 @@ paths: - type - parent examples: - default: *381 + default: *384 headers: Link: *45 '404': @@ -52323,8 +52570,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: - - *85 - - *136 + - *87 + - *138 - *17 - *19 responses: @@ -52353,7 +52600,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *380 + items: *383 name: type: - string @@ -52470,7 +52717,7 @@ paths: - type - url examples: - default: *208 + default: *210 headers: Link: *45 '404': @@ -52494,7 +52741,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: - - *85 + - *87 - 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) @@ -52521,7 +52768,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -52546,8 +52793,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: - - *85 - - *137 + - *87 + - *139 requestBody: required: false content: @@ -52604,8 +52851,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -52662,8 +52909,8 @@ paths: - docker - nuget - container - - *85 - - &798 + - *87 + - &801 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -52699,12 +52946,12 @@ paths: application/json: schema: type: array - items: *382 + items: *385 examples: - default: *383 + default: *386 '403': *27 '401': *23 - '400': &800 + '400': &803 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -52726,7 +52973,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &384 + - &387 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 @@ -52744,20 +52991,20 @@ paths: - docker - nuget - container - - &385 + - &388 name: package_name description: The name of the package. in: path required: true schema: type: string - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *382 + schema: *385 examples: default: value: @@ -52809,9 +53056,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *384 - - *385 - - *85 + - *387 + - *388 + - *87 responses: '204': description: Response @@ -52843,9 +53090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *384 - - *385 - - *85 + - *387 + - *388 + - *87 - name: token description: package token schema: @@ -52877,9 +53124,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: - - *384 - - *385 - - *85 + - *387 + - *388 + - *87 - *19 - *17 - name: state @@ -52899,7 +53146,7 @@ paths: application/json: schema: type: array - items: &386 + items: &389 title: Package Version description: A version of a software package type: object @@ -53034,10 +53281,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: - - *384 - - *385 - - *85 - - &387 + - *387 + - *388 + - *87 + - &390 name: package_version_id description: Unique identifier of the package version. in: path @@ -53049,7 +53296,7 @@ paths: description: Response content: application/json: - schema: *386 + schema: *389 examples: default: value: @@ -53085,10 +53332,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *384 - - *385 - - *85 - *387 + - *388 + - *87 + - *390 responses: '204': description: Response @@ -53120,10 +53367,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *384 - - *385 - - *85 - *387 + - *388 + - *87 + - *390 responses: '204': description: Response @@ -53150,10 +53397,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: - - *85 + - *87 - *17 - *19 - - &389 + - &392 name: sort description: The property by which to sort the results. in: query @@ -53163,8 +53410,8 @@ paths: enum: - created_at default: created_at - - *108 - - &390 + - *110 + - &393 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -53176,7 +53423,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &391 + - &394 name: repository description: The name of the repository to use to filter the results. in: query @@ -53185,7 +53432,7 @@ paths: type: string examples: - Hello-World - - &392 + - &395 name: permission description: The permission to use to filter the results. in: query @@ -53194,7 +53441,7 @@ paths: type: string examples: - issues_read - - &393 + - &396 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) @@ -53204,7 +53451,7 @@ paths: schema: type: string format: date-time - - &394 + - &397 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) @@ -53214,7 +53461,7 @@ paths: schema: type: string format: date-time - - &395 + - &398 name: token_id description: The ID of the token in: query @@ -53382,7 +53629,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: - - *85 + - *87 requestBody: required: true content: @@ -53449,7 +53696,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: - - *85 + - *87 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -53490,7 +53737,7 @@ paths: '422': *15 '404': *6 '403': *27 - '204': *149 + '204': *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53511,7 +53758,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: - - *85 + - *87 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -53531,9 +53778,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *388 + default: *391 headers: Link: *45 x-github: @@ -53556,17 +53803,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: - - *85 + - *87 - *17 - *19 - - *389 - - *108 - - *390 - - *391 - *392 + - *110 - *393 - *394 - *395 + - *396 + - *397 + - *398 responses: '500': *38 '422': *15 @@ -53717,7 +53964,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: - - *85 + - *87 requestBody: required: true content: @@ -53777,7 +54024,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: - - *85 + - *87 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -53807,7 +54054,7 @@ paths: responses: '500': *38 '404': *6 - '204': *149 + '204': *151 '403': *27 '422': *15 x-github: @@ -53829,7 +54076,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: - - *85 + - *87 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -53848,9 +54095,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *388 + default: *391 headers: Link: *45 x-github: @@ -53874,7 +54121,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: - - *85 + - *87 - *17 - *19 responses: @@ -53892,7 +54139,7 @@ paths: type: integer configurations: type: array - items: &396 + items: &399 title: Organization private registry description: Private registry configuration for an organization type: object @@ -53997,7 +54244,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: - - *85 + - *87 requestBody: required: true content: @@ -54188,7 +54435,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &397 + org-private-registry-with-selected-visibility: &400 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -54229,7 +54476,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: - - *85 + - *87 responses: '200': description: Response @@ -54279,16 +54526,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: - - *85 - - *286 + - *87 + - *289 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *396 + schema: *399 examples: - default: *397 + default: *400 '404': *6 x-github: githubCloudOnly: false @@ -54309,8 +54556,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: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -54415,8 +54662,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: - - *85 - - *286 + - *87 + - *289 responses: '204': description: Response @@ -54439,15 +54686,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-organization parameters: - - *85 + - *87 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *106 - - *107 + - *108 + - *109 - *17 responses: '200': @@ -54456,7 +54703,7 @@ paths: application/json: schema: type: array - items: &398 + items: &401 title: Projects v2 Project description: A projects v2 project type: object @@ -54530,7 +54777,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &886 + - &889 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -54615,7 +54862,7 @@ paths: - deleted_at - deleted_by examples: - default: &399 + default: &402 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -54718,22 +54965,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &400 + - &403 name: project_number description: The project's number. in: path required: true schema: type: integer - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: - default: *399 + default: *402 headers: Link: *45 '304': *35 @@ -54755,8 +55002,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: - - *85 - - *400 + - *87 + - *403 requestBody: required: true description: Details of the draft item to create in the project. @@ -54790,7 +55037,7 @@ paths: description: Response content: application/json: - schema: &405 + schema: &408 title: Projects v2 Item description: An item belonging to a project type: object @@ -54803,8 +55050,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *217 - - &567 + - *219 + - &570 title: Pull Request Simple description: Pull Request Simple type: object @@ -54924,7 +55171,7 @@ paths: milestone: anyOf: - type: 'null' - - *401 + - *404 active_lock_reason: type: - string @@ -54973,7 +55220,7 @@ paths: items: *4 requested_teams: type: array - items: *305 + items: *308 head: type: object properties: @@ -54981,7 +55228,7 @@ paths: type: string ref: type: string - repo: *76 + repo: *78 sha: type: string user: @@ -55001,7 +55248,7 @@ paths: type: string ref: type: string - repo: *76 + repo: *78 sha: type: string user: @@ -55017,7 +55264,7 @@ paths: _links: type: object properties: - comments: &402 + comments: &405 title: Link description: Hypermedia Link type: object @@ -55026,13 +55273,13 @@ paths: type: string required: - href - commits: *402 - statuses: *402 - html: *402 - issue: *402 - review_comments: *402 - review_comment: *402 - self: *402 + commits: *405 + statuses: *405 + html: *405 + issue: *405 + review_comments: *405 + review_comment: *405 + self: *405 required: - comments - commits @@ -55042,8 +55289,8 @@ paths: - review_comments - review_comment - self - author_association: *214 - auto_merge: &680 + author_association: *216 + auto_merge: &683 title: Auto merge description: The status of auto merging a pull request. type: @@ -55145,7 +55392,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &404 + content_type: &407 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -55189,7 +55436,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &406 + draft_issue: &409 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -55263,11 +55510,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *400 - - *85 + - *403 + - *87 - *17 - - *106 - - *107 + - *108 + - *109 responses: '200': description: Response @@ -55275,7 +55522,7 @@ paths: application/json: schema: type: array - items: &403 + items: &406 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -55428,7 +55675,7 @@ paths: - updated_at - project_url examples: - default: &819 + default: &822 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55558,8 +55805,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: - - *400 - - *85 + - *403 + - *87 requestBody: required: true content: @@ -55605,7 +55852,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &820 + items: &823 type: object properties: name: @@ -55642,7 +55889,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &821 + iteration_configuration: &824 type: object description: The configuration for iteration fields. properties: @@ -55692,7 +55939,7 @@ paths: value: name: Due date data_type: date - single_select_field: &822 + single_select_field: &825 summary: Create a single select field value: name: Priority @@ -55719,7 +55966,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &823 + iteration_field: &826 summary: Create an iteration field value: name: Sprint @@ -55743,9 +55990,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *403 + schema: *406 examples: - text_field: &824 + text_field: &827 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -55754,7 +56001,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: &825 + number_field: &828 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -55763,7 +56010,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: &826 + date_field: &829 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -55772,7 +56019,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: &827 + single_select_field: &830 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55806,7 +56053,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &828 + iteration_field: &831 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -55851,23 +56098,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *400 - - &829 + - *403 + - &832 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: &830 + default: &833 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55923,8 +56170,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: - - *400 - - *85 + - *403 + - *87 - 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. @@ -55946,8 +56193,8 @@ paths: maxItems: 50 items: type: string - - *106 - - *107 + - *108 + - *109 - *17 responses: '200': @@ -55956,7 +56203,7 @@ paths: application/json: schema: type: array - items: &407 + items: &410 title: Projects v2 Item description: An item belonging to a project type: object @@ -55973,7 +56220,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *404 + content_type: *407 content: type: - object @@ -56023,7 +56270,7 @@ paths: - updated_at - archived_at examples: - default: &408 + default: &411 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -56720,8 +56967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - - *85 - - *400 + - *87 + - *403 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -56791,22 +57038,22 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *406 + value: *409 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *406 + value: *409 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *406 + value: *409 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *406 + value: *409 '304': *35 '403': *27 '401': *23 @@ -56826,9 +57073,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: - - *400 - - *85 - - &409 + - *403 + - *87 + - &412 name: item_id description: The unique identifier of the project item. in: path @@ -56854,9 +57101,9 @@ paths: description: Response content: application/json: - schema: *407 + schema: *410 examples: - default: *408 + default: *411 headers: Link: *45 '304': *35 @@ -56877,9 +57124,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *400 - - *85 - - *409 + - *403 + - *87 + - *412 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -56952,13 +57199,13 @@ paths: description: Response content: application/json: - schema: *407 + schema: *410 examples: - text_field: *408 - number_field: *408 - date_field: *408 - single_select_field: *408 - iteration_field: *408 + text_field: *411 + number_field: *411 + date_field: *411 + single_select_field: *411 + iteration_field: *411 '401': *23 '403': *27 '404': *6 @@ -56978,9 +57225,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *400 - - *85 - - *409 + - *403 + - *87 + - *412 responses: '204': description: Response @@ -57003,8 +57250,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: - - *85 - - *400 + - *87 + - *403 requestBody: required: true content: @@ -57078,7 +57325,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &811 + schema: &814 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -57182,7 +57429,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &410 + value: &413 value: id: 1 number: 1 @@ -57228,10 +57475,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *410 + value: *413 roadmap_view: summary: Response for creating a roadmap view - value: *410 + value: *413 '304': *35 '403': *27 '401': *23 @@ -57259,9 +57506,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: - - *400 - - *85 - - &831 + - *403 + - *87 + - &834 name: view_number description: The number that identifies the project view. in: path @@ -57283,8 +57530,8 @@ paths: maxItems: 50 items: type: string - - *106 - - *107 + - *108 + - *109 - *17 responses: '200': @@ -57293,9 +57540,9 @@ paths: application/json: schema: type: array - items: *407 + items: *410 examples: - default: *408 + default: *411 headers: Link: *45 '304': *35 @@ -57320,7 +57567,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: - - *85 + - *87 responses: '200': description: Response @@ -57328,9 +57575,9 @@ paths: application/json: schema: type: array - items: *151 + items: *153 examples: - default: *152 + default: *154 '403': *27 '404': *6 x-github: @@ -57357,7 +57604,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: - - *85 + - *87 requestBody: required: true content: @@ -57368,7 +57615,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *151 + items: *153 minItems: 1 maxItems: 100 required: @@ -57398,9 +57645,9 @@ paths: application/json: schema: type: array - items: *151 + items: *153 examples: - default: *152 + default: *154 '403': *27 '404': *6 x-github: @@ -57421,16 +57668,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: - - *85 - - *147 + - *87 + - *149 responses: '200': description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *153 + default: *155 '403': *27 '404': *6 x-github: @@ -57453,13 +57700,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: - - *85 - - *147 + - *87 + - *149 requestBody: required: true content: application/json: - schema: *411 + schema: *414 examples: default: value: @@ -57475,9 +57722,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *153 + default: *155 '403': *27 '404': *6 x-github: @@ -57500,10 +57747,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: - - *85 - - *147 + - *87 + - *149 responses: - '204': *149 + '204': *151 '403': *27 '404': *6 x-github: @@ -57524,7 +57771,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: - - *85 + - *87 - *17 - *19 - name: repository_query @@ -57565,7 +57812,7 @@ paths: - octocat/Hello-World properties: type: array - items: *150 + items: *152 description: List of custom property names and associated values required: - repository_id @@ -57614,7 +57861,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: - - *85 + - *87 requestBody: required: true content: @@ -57634,7 +57881,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *150 + items: *152 required: - repository_names - properties @@ -57675,7 +57922,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-public-organization-members parameters: - - *85 + - *87 - *17 - *19 responses: @@ -57687,7 +57934,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -57706,8 +57953,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response if user is a public member @@ -57731,8 +57978,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -57753,8 +58000,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -57778,7 +58025,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-organization-repositories parameters: - - *85 + - *87 - 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 @@ -57825,9 +58072,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *388 + default: *391 headers: Link: *45 x-github: @@ -57848,7 +58095,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-organization-repository parameters: - - *85 + - *87 requestBody: required: true content: @@ -58031,7 +58278,7 @@ paths: description: Response content: application/json: - schema: &454 + schema: &457 title: Full Repository description: Full Repository type: object @@ -58394,7 +58641,7 @@ paths: template_repository: anyOf: - type: 'null' - - *76 + - *78 temp_clone_token: type: - string @@ -58494,13 +58741,13 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 organization: anyOf: - type: 'null' - *4 - parent: *76 - source: *76 + parent: *78 + source: *78 forks: type: integer master_branch: @@ -58513,7 +58760,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &572 + code_of_conduct: &575 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -58543,7 +58790,7 @@ paths: - key - name - html_url - security_and_analysis: *412 + security_and_analysis: *415 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -58627,7 +58874,7 @@ paths: - network_count - subscribers_count examples: - default: &456 + default: &459 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -59145,7 +59392,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: - - *85 + - *87 responses: '200': description: Response @@ -59153,9 +59400,9 @@ paths: application/json: schema: type: array - items: *413 + items: *416 examples: - default: *414 + default: *417 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -59177,10 +59424,10 @@ paths: category: orgs subcategory: rules parameters: - - *85 + - *87 - *17 - *19 - - &702 + - &705 name: targets description: | A comma-separated list of rule targets to filter by. @@ -59199,7 +59446,7 @@ paths: application/json: schema: type: array - items: *185 + items: *187 examples: default: value: @@ -59246,7 +59493,7 @@ paths: category: orgs subcategory: rules parameters: - - *85 + - *87 requestBody: description: Request body required: true @@ -59267,22 +59514,20 @@ paths: - push - repository default: branch - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 - conditions: *415 + items: *165 + conditions: *418 rules: type: array description: An array of rules within the ruleset. - items: &417 + items: &420 title: Repository Rule type: object description: A repository rule. oneOf: - - *164 - - *165 - *166 - *167 - *168 @@ -59302,6 +59547,8 @@ paths: - *182 - *183 - *184 + - *185 + - *186 required: - name - enforcement @@ -59339,9 +59586,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: &416 + default: &419 value: id: 21 name: super cool ruleset @@ -59396,8 +59643,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *85 - - &704 + - *87 + - &707 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 @@ -59407,16 +59654,16 @@ paths: schema: type: string x-multi-segment: true - - *302 - - *103 - - &705 + - *305 + - *105 + - &708 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 - - &706 + - &709 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -59436,7 +59683,7 @@ paths: description: Response content: application/json: - schema: &707 + schema: &710 title: Rule Suites description: Response type: array @@ -59492,7 +59739,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &708 + default: &711 value: - id: 21 actor_id: 12 @@ -59535,8 +59782,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *85 - - &709 + - *87 + - &712 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -59552,7 +59799,7 @@ paths: description: Response content: application/json: - schema: &710 + schema: &713 title: Rule Suite description: Response type: object @@ -59659,7 +59906,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &711 + default: &714 value: id: 21 actor_id: 12 @@ -59720,7 +59967,7 @@ paths: category: orgs subcategory: rules parameters: - - *85 + - *87 - name: ruleset_id description: The ID of the ruleset. in: path @@ -59732,9 +59979,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *416 + default: *419 '404': *6 '500': *38 put: @@ -59752,7 +59999,7 @@ paths: category: orgs subcategory: rules parameters: - - *85 + - *87 - name: ruleset_id description: The ID of the ruleset. in: path @@ -59778,16 +60025,16 @@ paths: - tag - push - repository - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 - conditions: *415 + items: *165 + conditions: *418 rules: description: An array of rules within the ruleset. type: array - items: *417 + items: *420 examples: default: value: @@ -59822,9 +60069,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *416 + default: *419 '404': *6 '422': *15 '500': *38 @@ -59843,7 +60090,7 @@ paths: category: orgs subcategory: rules parameters: - - *85 + - *87 - name: ruleset_id description: The ID of the ruleset. in: path @@ -59866,7 +60113,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-history parameters: - - *85 + - *87 - *17 - *19 - name: ruleset_id @@ -59882,9 +60129,9 @@ paths: application/json: schema: type: array - items: *189 + items: *191 examples: - default: *418 + default: *421 '404': *6 '500': *38 x-github: @@ -59903,7 +60150,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-version parameters: - - *85 + - *87 - name: ruleset_id description: The ID of the ruleset. in: path @@ -59921,7 +60168,7 @@ paths: description: Response content: application/json: - schema: *419 + schema: *422 examples: default: value: @@ -59983,16 +60230,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: - - *85 - - *420 - - *421 - - *422 + - *87 - *423 - *424 - - *108 + - *425 + - *426 + - *427 + - *110 - *19 - *17 - - &713 + - &716 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 @@ -60002,7 +60249,7 @@ paths: required: false schema: type: string - - &714 + - &717 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 @@ -60012,10 +60259,10 @@ paths: required: false schema: type: string - - *425 - - *426 - - *427 - *428 + - *429 + - *430 + - *431 responses: '200': description: Response @@ -60023,13 +60270,13 @@ paths: application/json: schema: type: array - items: *429 + items: *432 examples: - default: *430 + default: *433 headers: Link: *45 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60054,15 +60301,15 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *431 + schema: *434 examples: - default: *432 + default: *435 '403': *27 '404': *6 patch: @@ -60083,7 +60330,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *85 + - *87 requestBody: required: true content: @@ -60091,7 +60338,7 @@ paths: schema: type: object properties: - pattern_config_version: *192 + pattern_config_version: *194 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -60117,7 +60364,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *192 + custom_pattern_version: *194 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -60153,7 +60400,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 "/orgs/{org}/security-advisories": get: @@ -60171,8 +60418,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: - - *85 - - *108 + - *87 + - *110 - name: sort description: The property to sort the results by. in: query @@ -60184,8 +60431,8 @@ paths: - updated - published default: created - - *106 - - *107 + - *108 + - *109 - 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)." @@ -60215,7 +60462,7 @@ paths: application/json: schema: type: array - items: &735 + items: &738 description: A repository security advisory. type: object properties: @@ -60423,7 +60670,7 @@ paths: required: - vector_string - score - cvss_severities: *126 + cvss_severities: *128 cwes: type: - array @@ -60459,7 +60706,7 @@ paths: login: type: string description: The username of the user credited. - type: *433 + type: *436 credits_detailed: type: - array @@ -60470,7 +60717,7 @@ paths: type: object properties: user: *4 - type: *433 + type: *436 state: type: string description: The state of the user's acceptance of the @@ -60496,13 +60743,13 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *305 + items: *308 private_fork: readOnly: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *118 + - *120 type: - 'null' required: @@ -60534,7 +60781,7 @@ paths: - private_fork additionalProperties: false examples: - default: &736 + default: &739 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -60913,7 +61160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#list-security-manager-teams parameters: - - *85 + - *87 responses: '200': description: Response @@ -60921,7 +61168,7 @@ paths: application/json: schema: type: array - items: *380 + items: *383 examples: default: value: @@ -60961,8 +61208,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - - *85 - - *212 + - *87 + - *214 responses: '204': description: Response @@ -60987,8 +61234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *85 - - *212 + - *87 + - *214 responses: '204': description: Response @@ -61019,8 +61266,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: - - *85 - - *434 + - *87 + - *437 - *17 - *19 responses: @@ -61028,9 +61275,9 @@ paths: description: Success content: application/json: - schema: *435 + schema: *438 examples: - default: *436 + default: *439 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -61050,7 +61297,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: - - *85 + - *87 responses: '200': description: Immutable releases settings response @@ -61100,7 +61347,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: - - *85 + - *87 responses: '204': description: Response @@ -61158,7 +61405,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: - - *85 + - *87 - *19 - *17 responses: @@ -61176,9 +61423,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: *290 + default: *293 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61197,7 +61444,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: - - *85 + - *87 requestBody: required: true content: @@ -61246,8 +61493,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: - - *85 - - *270 + - *87 + - *273 responses: '204': description: Response @@ -61269,8 +61516,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: - - *85 - - *270 + - *87 + - *273 responses: '204': description: Response @@ -61293,7 +61540,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: - - *85 + - *87 - *17 - *19 responses: @@ -61311,9 +61558,9 @@ paths: type: integer network_configurations: type: array - items: *142 + items: *144 examples: - default: *437 + default: *440 headers: Link: *45 x-github: @@ -61334,7 +61581,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: - - *85 + - *87 requestBody: required: true content: @@ -61377,9 +61624,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: *143 + default: *145 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61399,16 +61646,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: - - *85 - - *144 + - *87 + - *146 responses: '200': description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: *143 + default: *145 headers: Link: *45 x-github: @@ -61429,8 +61676,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: - - *85 - - *144 + - *87 + - *146 requestBody: required: true content: @@ -61470,9 +61717,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: *143 + default: *145 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61491,8 +61738,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: - - *85 - - *144 + - *87 + - *146 responses: '204': description: Response @@ -61515,16 +61762,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: - - *85 - - *438 + - *87 + - *441 responses: '200': description: Response content: application/json: - schema: *439 + schema: *442 examples: - default: *440 + default: *443 headers: Link: *45 x-github: @@ -61543,7 +61790,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: - - *85 + - *87 - *17 - name: page description: Page token @@ -61562,7 +61809,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &454 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -61614,7 +61861,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &452 + default: &455 value: groups: - group_id: '123' @@ -61659,8 +61906,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: - - *85 - - *212 + - *87 + - *214 - 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`). @@ -61692,13 +61939,13 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 '500': *38 '403': *27 '404': *6 - '422': *205 + '422': *207 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61716,7 +61963,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-teams parameters: - - *85 + - *87 - *17 - *19 - name: team_type @@ -61738,9 +61985,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 headers: Link: *45 '403': *27 @@ -61762,7 +62009,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#create-a-team parameters: - - *85 + - *87 requestBody: required: true content: @@ -61834,7 +62081,7 @@ paths: description: Response content: application/json: - schema: &441 + schema: &444 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -61908,7 +62155,7 @@ paths: parent: anyOf: - type: 'null' - - *380 + - *383 members_count: type: integer examples: @@ -62233,7 +62480,7 @@ paths: - repos_count - organization examples: - default: &442 + default: &445 value: id: 1 node_id: MDQ6VGVhbTE= @@ -62303,16 +62550,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - - *85 - - *212 + - *87 + - *214 responses: '200': description: Response content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '404': *6 x-github: githubCloudOnly: false @@ -62333,8 +62580,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - - *85 - - *212 + - *87 + - *214 requestBody: required: false content: @@ -62397,16 +62644,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '201': description: Response content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '404': *6 '422': *15 '403': *27 @@ -62431,12 +62678,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - - *85 - - *212 + - *87 + - *214 responses: '204': description: Response - '422': &445 + '422': &448 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -62458,17 +62705,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: - - *85 - - *212 + - *87 + - *214 responses: '200': description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: *444 - '422': *445 + default: *447 + '422': *448 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -62487,8 +62734,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: - - *85 - - *212 + - *87 + - *214 requestBody: required: true content: @@ -62512,10 +62759,10 @@ paths: description: Response content: application/json: - schema: *446 + schema: *449 examples: - default: *447 - '422': *445 + default: *450 + '422': *448 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -62534,12 +62781,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: - - *85 - - *212 + - *87 + - *214 responses: '204': description: Response - '422': *445 + '422': *448 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -62560,8 +62807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - - *85 - - *212 + - *87 + - *214 - *17 - *19 responses: @@ -62571,12 +62818,12 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *362 + default: *365 headers: Link: *45 - '422': *445 + '422': *448 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62596,8 +62843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - - *85 - - *212 + - *87 + - *214 - name: role description: Filters members returned by their role in the team. in: query @@ -62620,7 +62867,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -62650,15 +62897,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - - *85 - - *212 - - *137 + - *87 + - *214 + - *139 responses: '200': description: Response content: application/json: - schema: &448 + schema: &451 title: Team Membership description: Team Membership type: object @@ -62686,7 +62933,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &778 + response-if-user-is-a-team-maintainer: &781 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -62722,9 +62969,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: - - *85 - - *212 - - *137 + - *87 + - *214 + - *139 requestBody: required: false content: @@ -62749,9 +62996,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *451 examples: - response-if-users-membership-with-team-is-now-pending: &779 + response-if-users-membership-with-team-is-now-pending: &782 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -62786,9 +63033,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - - *85 - - *212 - - *137 + - *87 + - *214 + - *139 responses: '204': description: Response @@ -62814,8 +63061,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - - *85 - - *212 + - *87 + - *214 - *17 - *19 responses: @@ -62825,9 +63072,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *388 + default: *391 headers: Link: *45 x-github: @@ -62856,16 +63103,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *85 - - *212 - - *449 - - *450 + - *87 + - *214 + - *452 + - *453 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &780 + schema: &783 title: Team Repository description: A team's access to a repository. type: object @@ -62891,7 +63138,7 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 forks: type: integer permissions: @@ -63506,10 +63753,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *85 - - *212 - - *449 - - *450 + - *87 + - *214 + - *452 + - *453 requestBody: required: false content: @@ -63554,10 +63801,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - - *85 - - *212 - - *449 - - *450 + - *87 + - *214 + - *452 + - *453 responses: '204': description: Response @@ -63583,17 +63830,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: - - *85 - - *212 + - *87 + - *214 responses: '200': description: Response content: application/json: - schema: *451 + schema: *454 examples: - default: *452 - '422': *445 + default: *455 + '422': *448 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -63615,8 +63862,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: - - *85 - - *212 + - *87 + - *214 requestBody: required: true content: @@ -63659,7 +63906,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *454 examples: default: value: @@ -63671,7 +63918,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *445 + '422': *448 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -63692,8 +63939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - - *85 - - *212 + - *87 + - *214 - *17 - *19 responses: @@ -63703,9 +63950,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - response-if-child-teams-exist: &781 + response-if-child-teams-exist: &784 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -63758,7 +64005,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: - - *85 + - *87 - name: security_product in: path description: The security feature to enable or disable. @@ -63859,7 +64106,7 @@ paths: resources: type: object properties: - core: &453 + core: &456 title: Rate Limit type: object properties: @@ -63876,21 +64123,21 @@ paths: - remaining - reset - used - graphql: *453 - search: *453 - code_search: *453 - source_import: *453 - integration_manifest: *453 - code_scanning_upload: *453 - actions_runner_registration: *453 - scim: *453 - dependency_snapshots: *453 - dependency_sbom: *453 - code_scanning_autofix: *453 + graphql: *456 + search: *456 + code_search: *456 + source_import: *456 + integration_manifest: *456 + code_scanning_upload: *456 + actions_runner_registration: *456 + scim: *456 + dependency_snapshots: *456 + dependency_sbom: *456 + code_scanning_autofix: *456 required: - core - search - rate: *453 + rate: *456 required: - rate - resources @@ -63995,14 +64242,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *454 + schema: *457 examples: default-response: summary: Default response @@ -64511,7 +64758,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *455 + '301': *458 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64529,8 +64776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -64832,10 +65079,10 @@ paths: description: Response content: application/json: - schema: *454 + schema: *457 examples: - default: *456 - '307': &457 + default: *459 + '307': &460 description: Temporary Redirect content: application/json: @@ -64864,8 +65111,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -64887,9 +65134,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': *457 + '307': *460 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64911,11 +65158,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 - - &474 + - &477 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -64938,7 +65185,7 @@ paths: type: integer artifacts: type: array - items: &458 + items: &461 title: Artifact description: An artifact type: object @@ -65033,7 +65280,7 @@ paths: - expires_at - updated_at examples: - default: &475 + default: &478 value: total_count: 2 artifacts: @@ -65094,9 +65341,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *449 - - *450 - - &459 + - *452 + - *453 + - &462 name: artifact_id description: The unique identifier of the artifact. in: path @@ -65108,7 +65355,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *461 examples: default: value: @@ -65146,9 +65393,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *449 - - *450 - - *459 + - *452 + - *453 + - *462 responses: '204': description: Response @@ -65172,9 +65419,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *449 - - *450 - - *459 + - *452 + - *453 + - *462 - name: archive_format in: path required: true @@ -65188,7 +65435,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': &636 + '410': &639 description: Gone content: application/json: @@ -65213,14 +65460,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: &460 + schema: &463 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -65254,13 +65501,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: application/json: - schema: *460 + schema: *463 examples: selected_actions: *42 responses: @@ -65289,14 +65536,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: &461 + schema: &464 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -65330,13 +65577,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: application/json: - schema: *461 + schema: *464 examples: selected_actions: *44 responses: @@ -65367,14 +65614,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *462 + schema: *465 examples: default: value: @@ -65400,11 +65647,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: - - *449 - - *450 + - *452 + - *453 - *17 - *19 - - &463 + - &466 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 @@ -65432,13 +65679,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *108 + - *110 responses: '200': description: Response content: application/json: - schema: &464 + schema: &467 title: Repository actions caches description: Repository actions caches type: object @@ -65488,7 +65735,7 @@ paths: - total_count - actions_caches examples: - default: &465 + default: &468 value: total_count: 1 actions_caches: @@ -65520,23 +65767,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: - - *449 - - *450 + - *452 + - *453 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *463 + - *466 responses: '200': description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65556,8 +65803,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: - - *449 - - *450 + - *452 + - *453 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -65588,9 +65835,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: - - *449 - - *450 - - &466 + - *452 + - *453 + - &469 name: job_id description: The unique identifier of the job. in: path @@ -65602,7 +65849,7 @@ paths: description: Response content: application/json: - schema: &478 + schema: &481 title: Job description: Information of a job execution in a workflow run type: object @@ -65949,9 +66196,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: - - *449 - - *450 - - *466 + - *452 + - *453 + - *469 responses: '302': description: Response @@ -65979,9 +66226,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: - - *449 - - *450 - - *466 + - *452 + - *453 + - *469 requestBody: required: false content: @@ -66003,7 +66250,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -66027,8 +66274,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Status response @@ -66078,8 +66325,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -66113,7 +66360,7 @@ paths: description: Empty response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -66142,8 +66389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -66161,7 +66408,7 @@ paths: type: integer secrets: type: array - items: &480 + items: &483 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -66182,7 +66429,7 @@ paths: - created_at - updated_at examples: - default: &481 + default: &484 value: total_count: 2 secrets: @@ -66215,9 +66462,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *449 - - *450 - - *467 + - *452 + - *453 + - *470 - *19 responses: '200': @@ -66234,7 +66481,7 @@ paths: type: integer variables: type: array - items: &484 + items: &487 title: Actions Variable type: object properties: @@ -66268,7 +66515,7 @@ paths: - created_at - updated_at examples: - default: &485 + default: &488 value: total_count: 2 variables: @@ -66301,8 +66548,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -66311,12 +66558,12 @@ paths: schema: type: object properties: - enabled: &468 + enabled: &471 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *58 - selected_actions_url: *263 - sha_pinning_required: *59 + allowed_actions: *60 + selected_actions_url: *266 + sha_pinning_required: *61 required: - enabled examples: @@ -66346,8 +66593,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -66358,9 +66605,9 @@ paths: schema: type: object properties: - enabled: *468 - allowed_actions: *58 - sha_pinning_required: *59 + enabled: *471 + allowed_actions: *60 + sha_pinning_required: *61 required: - enabled examples: @@ -66391,14 +66638,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: &469 + schema: &472 type: object properties: access_level: @@ -66416,7 +66663,7 @@ paths: required: - access_level examples: - default: &470 + default: &473 value: access_level: organization x-github: @@ -66441,15 +66688,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: application/json: - schema: *469 + schema: *472 examples: - default: *470 + default: *473 responses: '204': description: Response @@ -66473,14 +66720,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *265 + schema: *268 examples: default: value: @@ -66504,8 +66751,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Empty response for successful settings update @@ -66515,7 +66762,7 @@ paths: required: true content: application/json: - schema: *266 + schema: *269 examples: default: summary: Set retention days @@ -66539,16 +66786,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *267 + default: *270 '404': *6 x-github: enabledForGitHubApps: true @@ -66567,8 +66814,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -66578,7 +66825,7 @@ paths: required: true content: application/json: - schema: *60 + schema: *62 examples: default: summary: Set approval policy to first time contributors @@ -66602,16 +66849,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *61 + default: *63 '403': *27 '404': *6 x-github: @@ -66631,15 +66878,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: application/json: - schema: *269 + schema: *272 examples: - default: *61 + default: *63 responses: '204': description: Empty response for successful settings update @@ -66663,16 +66910,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *63 + schema: *65 examples: - default: *64 + default: *66 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66695,8 +66942,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -66704,9 +66951,9 @@ paths: required: false content: application/json: - schema: *63 + schema: *65 examples: - selected_actions: *64 + selected_actions: *66 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66728,16 +66975,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: *67 + default: *69 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66758,8 +67005,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Success response @@ -66770,9 +67017,9 @@ paths: required: true content: application/json: - schema: *273 + schema: *276 examples: - default: *67 + default: *69 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66799,8 +67046,8 @@ paths: in: query schema: type: string - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -66818,9 +67065,9 @@ paths: type: integer runners: type: array - items: *74 + items: *76 examples: - default: *75 + default: *77 headers: Link: *45 x-github: @@ -66844,8 +67091,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -66853,9 +67100,9 @@ paths: application/json: schema: type: array - items: *277 + items: *280 examples: - default: *278 + default: *281 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66877,8 +67124,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -66921,10 +67168,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *279 + '201': *282 '404': *6 '422': *7 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66952,16 +67199,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: - - *449 - - *450 + - *452 + - *453 responses: '201': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *280 + default: *283 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66989,16 +67236,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: - - *449 - - *450 + - *452 + - *453 responses: '201': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *281 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67020,17 +67267,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: *282 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67051,9 +67298,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 responses: '204': description: Response @@ -67079,11 +67326,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 responses: - '200': *79 + '200': *81 '404': *6 x-github: githubCloudOnly: false @@ -67105,9 +67352,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 requestBody: required: true content: @@ -67131,7 +67378,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -67155,9 +67402,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 requestBody: required: true content: @@ -67182,7 +67429,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -67206,11 +67453,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 responses: - '200': *283 + '200': *286 '404': *6 x-github: githubCloudOnly: false @@ -67237,12 +67484,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: - - *449 - - *450 - - *73 - - *284 + - *452 + - *453 + - *75 + - *287 responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -67268,9 +67515,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: - - *449 - - *450 - - &488 + - *452 + - *453 + - &491 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. @@ -67278,7 +67525,7 @@ paths: required: false schema: type: string - - &489 + - &492 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -67286,7 +67533,7 @@ paths: required: false schema: type: string - - &490 + - &493 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -67295,7 +67542,7 @@ paths: required: false schema: type: string - - &491 + - &494 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 @@ -67322,7 +67569,7 @@ paths: - pending - *17 - *19 - - &492 + - &495 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)." @@ -67331,7 +67578,7 @@ paths: schema: type: string format: date-time - - &471 + - &474 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -67340,13 +67587,13 @@ paths: schema: type: boolean default: false - - &493 + - &496 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &494 + - &497 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -67369,7 +67616,7 @@ paths: type: integer workflow_runs: type: array - items: &472 + items: &475 title: Workflow Run description: An invocation of a workflow type: object @@ -67486,7 +67733,7 @@ paths: type: - array - 'null' - items: *220 + items: *222 created_at: type: string format: date-time @@ -67547,7 +67794,7 @@ paths: head_commit: anyOf: - type: 'null' - - &516 + - &519 title: Simple Commit description: A commit. type: object @@ -67621,8 +67868,8 @@ paths: - timestamp - author - committer - repository: *276 - head_repository: *276 + repository: *279 + head_repository: *279 head_repository_id: type: integer examples: @@ -67662,7 +67909,7 @@ paths: - workflow_url - pull_requests examples: - default: &495 + default: &498 value: total_count: 1 workflow_runs: @@ -67898,24 +68145,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *449 - - *450 - - &473 + - *452 + - *453 + - &476 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *471 + - *474 responses: '200': description: Response content: application/json: - schema: *472 + schema: *475 examples: - default: &476 + default: &479 value: id: 30433642 name: Build @@ -68156,9 +68403,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '204': description: Response @@ -68181,9 +68428,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '200': description: Response @@ -68311,15 +68558,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '201': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -68346,13 +68593,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 - *17 - *19 - - *474 - - *108 + - *477 + - *110 responses: '200': description: Response @@ -68368,9 +68615,9 @@ paths: type: integer artifacts: type: array - items: *458 + items: *461 examples: - default: *475 + default: *478 headers: Link: *45 x-github: @@ -68394,25 +68641,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *449 - - *450 - - *473 - - &477 + - *452 + - *453 + - *476 + - &480 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *471 + - *474 responses: '200': description: Response content: application/json: - schema: *472 + schema: *475 examples: - default: *476 + default: *479 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68435,10 +68682,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: - - *449 - - *450 - - *473 - - *477 + - *452 + - *453 + - *476 + - *480 - *17 - *19 responses: @@ -68456,9 +68703,9 @@ paths: type: integer jobs: type: array - items: *478 + items: *481 examples: - default: &479 + default: &482 value: total_count: 1 jobs: @@ -68571,10 +68818,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *449 - - *450 - - *473 - - *477 + - *452 + - *453 + - *476 + - *480 responses: '302': description: Response @@ -68602,19 +68849,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '202': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68637,9 +68884,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 requestBody: required: true content: @@ -68706,19 +68953,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '202': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68741,9 +68988,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 - 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 @@ -68773,9 +69020,9 @@ paths: type: integer jobs: type: array - items: *478 + items: *481 examples: - default: *479 + default: *482 headers: Link: *45 x-github: @@ -68800,9 +69047,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '302': description: Response @@ -68829,9 +69076,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '204': description: Response @@ -68858,9 +69105,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '200': description: Response @@ -68929,7 +69176,7 @@ paths: items: type: object properties: - type: &603 + type: &606 type: string description: The type of reviewer. enum: @@ -68940,7 +69187,7 @@ paths: reviewer: anyOf: - *4 - - *305 + - *308 required: - environment - wait_timer @@ -69015,9 +69262,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 requestBody: required: true content: @@ -69067,7 +69314,7 @@ paths: application/json: schema: type: array - items: &588 + items: &591 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -69179,7 +69426,7 @@ paths: - created_at - updated_at examples: - default: &589 + default: &592 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -69235,9 +69482,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 requestBody: required: false content: @@ -69259,7 +69506,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -69282,9 +69529,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 requestBody: required: false content: @@ -69306,7 +69553,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -69339,9 +69586,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '200': description: Response @@ -69478,8 +69725,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -69497,9 +69744,9 @@ paths: type: integer secrets: type: array - items: *480 + items: *483 examples: - default: *481 + default: *484 headers: Link: *45 x-github: @@ -69524,16 +69771,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69555,17 +69802,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '200': description: Response content: application/json: - schema: *480 + schema: *483 examples: - default: &616 + default: &619 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -69591,9 +69838,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 requestBody: required: true content: @@ -69624,7 +69871,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -69650,9 +69897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '204': description: Response @@ -69677,9 +69924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *449 - - *450 - - *467 + - *452 + - *453 + - *470 - *19 responses: '200': @@ -69696,9 +69943,9 @@ paths: type: integer variables: type: array - items: *484 + items: *487 examples: - default: *485 + default: *488 headers: Link: *45 x-github: @@ -69721,8 +69968,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -69749,7 +69996,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -69774,17 +70021,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *449 - - *450 - - *289 + - *452 + - *453 + - *292 responses: '200': description: Response content: application/json: - schema: *484 + schema: *487 examples: - default: &617 + default: &620 value: name: USERNAME value: octocat @@ -69810,9 +70057,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *449 - - *450 - - *289 + - *452 + - *453 + - *292 requestBody: required: true content: @@ -69854,9 +70101,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *449 - - *450 - - *289 + - *452 + - *453 + - *292 responses: '204': description: Response @@ -69881,8 +70128,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -69900,7 +70147,7 @@ paths: type: integer workflows: type: array - items: &486 + items: &489 title: Workflow description: A GitHub Actions workflow type: object @@ -70018,9 +70265,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *449 - - *450 - - &487 + - *452 + - *453 + - &490 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -70035,7 +70282,7 @@ paths: description: Response content: application/json: - schema: *486 + schema: *489 examples: default: value: @@ -70068,9 +70315,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *449 - - *450 - - *487 + - *452 + - *453 + - *490 responses: '204': description: Response @@ -70095,9 +70342,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *449 - - *450 - - *487 + - *452 + - *453 + - *490 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -70184,9 +70431,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *449 - - *450 - - *487 + - *452 + - *453 + - *490 responses: '204': description: Response @@ -70213,19 +70460,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: - - *449 - - *450 - - *487 - - *488 - - *489 + - *452 + - *453 - *490 - *491 - - *17 - - *19 - *492 - - *471 - *493 - *494 + - *17 + - *19 + - *495 + - *474 + - *496 + - *497 responses: '200': description: Response @@ -70241,9 +70488,9 @@ paths: type: integer workflow_runs: type: array - items: *472 + items: *475 examples: - default: *495 + default: *498 headers: Link: *45 x-github: @@ -70276,9 +70523,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *449 - - *450 - - *487 + - *452 + - *453 + - *490 responses: '200': description: Response @@ -70339,12 +70586,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *449 - - *450 - - *108 + - *452 + - *453 + - *110 - *17 - - *106 - - *107 + - *108 + - *109 - name: ref description: |- The Git reference for the activities you want to list. @@ -70508,8 +70755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -70521,7 +70768,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 '404': *6 @@ -70546,8 +70793,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: - - *449 - - *450 + - *452 + - *453 - name: assignee in: path required: true @@ -70583,8 +70830,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#create-an-attestation parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -70696,11 +70943,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#list-attestations parameters: - - *449 - - *450 + - *452 + - *453 - *17 - - *106 - - *107 + - *108 + - *109 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -70754,7 +71001,7 @@ paths: initiator: type: string examples: - default: *496 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70774,8 +71021,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -70783,7 +71030,7 @@ paths: application/json: schema: type: array - items: &497 + items: &500 title: Autolink reference description: An autolink reference. type: object @@ -70842,8 +71089,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -70882,9 +71129,9 @@ paths: description: response content: application/json: - schema: *497 + schema: *500 examples: - default: &498 + default: &501 value: id: 1 key_prefix: TICKET- @@ -70915,9 +71162,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: - - *449 - - *450 - - &499 + - *452 + - *453 + - &502 name: autolink_id description: The unique identifier of the autolink. in: path @@ -70929,9 +71176,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *500 examples: - default: *498 + default: *501 '404': *6 x-github: githubCloudOnly: false @@ -70951,9 +71198,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: - - *449 - - *450 - - *499 + - *452 + - *453 + - *502 responses: '204': description: Response @@ -70977,8 +71224,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response if Dependabot is enabled @@ -71028,8 +71275,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -71050,8 +71297,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -71071,8 +71318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *449 - - *450 + - *452 + - *453 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -71110,7 +71357,7 @@ paths: - url protected: type: boolean - protection: &501 + protection: &504 title: Branch Protection description: Branch Protection type: object @@ -71153,7 +71400,7 @@ paths: required: - contexts - checks - enforce_admins: &504 + enforce_admins: &507 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -71170,7 +71417,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &506 + required_pull_request_reviews: &509 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -71192,7 +71439,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *305 + items: *308 apps: description: The list of apps with review dismissal access. @@ -71224,7 +71471,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *305 + items: *308 apps: description: The list of apps allowed to bypass pull request requirements. @@ -71254,7 +71501,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &503 + restrictions: &506 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -71317,7 +71564,7 @@ paths: type: string teams: type: array - items: *305 + items: *308 apps: type: array items: @@ -71547,9 +71794,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *449 - - *450 - - &502 + - *452 + - *453 + - &505 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). @@ -71563,14 +71810,14 @@ paths: description: Response content: application/json: - schema: &512 + schema: &515 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &563 + commit: &566 title: Commit description: Commit type: object @@ -71609,7 +71856,7 @@ paths: author: anyOf: - type: 'null' - - &500 + - &503 title: Git User description: Metaproperties for Git author/committer information. @@ -71631,7 +71878,7 @@ paths: committer: anyOf: - type: 'null' - - *500 + - *503 message: type: string examples: @@ -71655,7 +71902,7 @@ paths: required: - sha - url - verification: &623 + verification: &626 title: Verification type: object properties: @@ -71691,14 +71938,14 @@ paths: author: oneOf: - *4 - - *287 + - *290 type: - 'null' - object committer: oneOf: - *4 - - *287 + - *290 type: - 'null' - object @@ -71735,7 +71982,7 @@ paths: type: integer files: type: array - items: &574 + items: &577 title: Diff Entry description: Diff Entry type: object @@ -71831,7 +72078,7 @@ paths: - self protected: type: boolean - protection: *501 + protection: *504 protection_url: type: string format: uri @@ -71940,7 +72187,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *455 + '301': *458 '404': *6 x-github: githubCloudOnly: false @@ -71962,15 +72209,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *501 + schema: *504 examples: default: value: @@ -72164,9 +72411,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -72426,7 +72673,7 @@ paths: url: type: string format: uri - required_status_checks: &509 + required_status_checks: &512 title: Status Check Policy description: Status Check Policy type: object @@ -72507,7 +72754,7 @@ paths: items: *4 teams: type: array - items: *305 + items: *308 apps: type: array items: *5 @@ -72525,7 +72772,7 @@ paths: items: *4 teams: type: array - items: *305 + items: *308 apps: type: array items: *5 @@ -72585,7 +72832,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *503 + restrictions: *506 required_conversation_resolution: type: object properties: @@ -72697,9 +72944,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -72724,17 +72971,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: &505 + default: &508 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -72756,17 +73003,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72785,9 +73032,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -72812,17 +73059,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *506 + schema: *509 examples: - default: &507 + default: &510 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -72918,9 +73165,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -73018,9 +73265,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *509 examples: - default: *507 + default: *510 '422': *15 x-github: githubCloudOnly: false @@ -73041,9 +73288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -73070,17 +73317,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: &508 + default: &511 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -73103,17 +73350,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *508 + default: *511 '404': *6 x-github: githubCloudOnly: false @@ -73133,9 +73380,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -73160,17 +73407,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *509 + schema: *512 examples: - default: &510 + default: &513 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -73196,9 +73443,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -73250,9 +73497,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *512 examples: - default: *510 + default: *513 '404': *6 '422': *15 x-github: @@ -73274,9 +73521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -73300,9 +73547,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response @@ -73336,9 +73583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -73405,9 +73652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -73471,9 +73718,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: content: application/json: @@ -73539,15 +73786,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *503 + schema: *506 examples: default: value: @@ -73638,9 +73885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -73663,9 +73910,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: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response @@ -73675,7 +73922,7 @@ paths: type: array items: *5 examples: - default: &511 + default: &514 value: - id: 1 slug: octoapp @@ -73732,9 +73979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -73768,7 +74015,7 @@ paths: type: array items: *5 examples: - default: *511 + default: *514 '422': *15 x-github: githubCloudOnly: false @@ -73789,9 +74036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -73825,7 +74072,7 @@ paths: type: array items: *5 examples: - default: *511 + default: *514 '422': *15 x-github: githubCloudOnly: false @@ -73846,9 +74093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -73882,7 +74129,7 @@ paths: type: array items: *5 examples: - default: *511 + default: *514 '422': *15 x-github: githubCloudOnly: false @@ -73904,9 +74151,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: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response @@ -73914,9 +74161,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 '404': *6 x-github: githubCloudOnly: false @@ -73936,9 +74183,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -73974,9 +74221,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 '422': *15 x-github: githubCloudOnly: false @@ -73997,9 +74244,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -74035,9 +74282,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 '422': *15 x-github: githubCloudOnly: false @@ -74058,9 +74305,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: content: application/json: @@ -74095,9 +74342,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 '422': *15 x-github: githubCloudOnly: false @@ -74119,9 +74366,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: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response @@ -74131,7 +74378,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 '404': *6 x-github: githubCloudOnly: false @@ -74155,9 +74402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -74190,7 +74437,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 '422': *15 x-github: githubCloudOnly: false @@ -74215,9 +74462,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -74250,7 +74497,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 '422': *15 x-github: githubCloudOnly: false @@ -74275,9 +74522,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -74310,7 +74557,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 '422': *15 x-github: githubCloudOnly: false @@ -74337,9 +74584,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -74361,7 +74608,7 @@ paths: description: Response content: application/json: - schema: *512 + schema: *515 examples: default: value: @@ -74475,12 +74722,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *449 - - *450 - - *101 - - *102 + - *452 + - *453 - *103 - *104 + - *105 + - *106 - *17 - *19 responses: @@ -74490,9 +74737,9 @@ paths: application/json: schema: type: array - items: *300 + items: *303 examples: - default: *301 + default: *304 '404': *6 '500': *38 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -74512,8 +74759,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: bypass_request_number in: path required: true @@ -74527,7 +74774,7 @@ paths: description: Response content: application/json: - schema: *300 + schema: *303 examples: default: value: @@ -74586,12 +74833,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *449 - - *450 - - *101 - - *102 + - *452 + - *453 - *103 - *104 + - *105 + - *106 - *17 - *19 responses: @@ -74601,9 +74848,9 @@ paths: application/json: schema: type: array - items: *303 + items: *306 examples: - default: *304 + default: *307 '404': *6 '403': *27 '500': *38 @@ -74627,8 +74874,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *449 - - *450 + - *452 + - *453 - name: bypass_request_number in: path required: true @@ -74640,7 +74887,7 @@ paths: description: A single bypass request. content: application/json: - schema: *303 + schema: *306 examples: default: value: @@ -74698,8 +74945,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *449 - - *450 + - *452 + - *453 - name: bypass_request_number in: path required: true @@ -74770,8 +75017,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *449 - - *450 + - *452 + - *453 - name: bypass_response_id in: path required: true @@ -74804,8 +75051,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -75084,7 +75331,7 @@ paths: description: Response content: application/json: - schema: &513 + schema: &516 title: CheckRun description: A check performed on the code of a given code change type: object @@ -75219,8 +75466,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *220 - deployment: &842 + items: *222 + deployment: &845 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -75507,9 +75754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *449 - - *450 - - &514 + - *452 + - *453 + - &517 name: check_run_id description: The unique identifier of the check run. in: path @@ -75521,9 +75768,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *516 examples: - default: &515 + default: &518 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -75623,9 +75870,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *449 - - *450 - - *514 + - *452 + - *453 + - *517 requestBody: required: true content: @@ -75865,9 +76112,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *516 examples: - default: *515 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75887,9 +76134,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *449 - - *450 - - *514 + - *452 + - *453 + - *517 - *17 - *19 responses: @@ -75999,15 +76246,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *449 - - *450 - - *514 + - *452 + - *453 + - *517 responses: '201': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -76045,8 +76292,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -76068,7 +76315,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &517 + schema: &520 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -76150,12 +76397,12 @@ paths: type: - array - 'null' - items: *220 + items: *222 app: anyOf: - type: 'null' - *5 - repository: *276 + repository: *279 created_at: type: - string @@ -76166,7 +76413,7 @@ paths: - string - 'null' format: date-time - head_commit: *516 + head_commit: *519 latest_check_runs_count: type: integer check_runs_url: @@ -76194,7 +76441,7 @@ paths: - check_runs_url - pull_requests examples: - default: &518 + default: &521 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -76485,9 +76732,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *517 + schema: *520 examples: - default: *518 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76506,8 +76753,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -76568,7 +76815,7 @@ paths: required: - app_id - setting - repository: *276 + repository: *279 examples: default: value: @@ -76816,9 +77063,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *449 - - *450 - - &519 + - *452 + - *453 + - &522 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -76830,9 +77077,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *520 examples: - default: *518 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76855,17 +77102,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: - - *449 - - *450 - - *519 - - &569 + - *452 + - *453 + - *522 + - &572 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &570 + - &573 name: status description: Returns check runs with the specified `status`. in: query @@ -76904,9 +77151,9 @@ paths: type: integer check_runs: type: array - items: *513 + items: *516 examples: - default: &571 + default: &574 value: total_count: 1 check_runs: @@ -77008,15 +77255,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *449 - - *450 - - *519 + - *452 + - *453 + - *522 responses: '201': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -77043,30 +77290,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: - - *449 - - *450 - - *309 - - *310 + - *452 + - *453 + - *312 + - *313 - *19 - *17 - - &535 + - &538 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: *520 - - &536 + schema: *523 + - &539 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer + - *110 - *108 - - *106 - - *107 + - *109 - name: sort description: The property by which to sort the results. in: query @@ -77082,13 +77329,13 @@ paths: be returned. in: query required: false - schema: *311 + schema: *314 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *521 + schema: *524 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -77107,24 +77354,24 @@ paths: items: type: object properties: - number: *124 - created_at: *131 - updated_at: *132 - url: *129 - html_url: *130 - instances_url: *522 - state: *111 - fixed_at: *134 + number: *126 + created_at: *133 + updated_at: *134 + url: *131 + html_url: *132 + instances_url: *525 + state: *113 + fixed_at: *136 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *133 - dismissed_reason: *523 - dismissed_comment: *524 - rule: *525 - tool: *526 - most_recent_instance: *527 + dismissed_at: *135 + dismissed_reason: *526 + dismissed_comment: *527 + rule: *528 + tool: *529 + most_recent_instance: *530 dismissal_approved_by: anyOf: - type: 'null' @@ -77247,14 +77494,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &528 + '403': &531 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77274,9 +77521,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: - - *449 - - *450 - - &529 + - *452 + - *453 + - &532 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -77284,30 +77531,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *124 + schema: *126 responses: '200': description: Response content: application/json: - schema: &530 + schema: &533 type: object properties: - number: *124 - created_at: *131 - updated_at: *132 - url: *129 - html_url: *130 - instances_url: *522 - state: *111 - fixed_at: *134 + number: *126 + created_at: *133 + updated_at: *134 + url: *131 + html_url: *132 + instances_url: *525 + state: *113 + fixed_at: *136 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *133 - dismissed_reason: *523 - dismissed_comment: *524 + dismissed_at: *135 + dismissed_reason: *526 + dismissed_comment: *527 rule: type: object properties: @@ -77369,8 +77616,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *526 - most_recent_instance: *527 + tool: *529 + most_recent_instance: *530 dismissal_approved_by: anyOf: - type: 'null' @@ -77466,9 +77713,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77486,9 +77733,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 requestBody: required: true content: @@ -77503,8 +77750,8 @@ paths: enum: - open - dismissed - dismissed_reason: *523 - dismissed_comment: *524 + dismissed_reason: *526 + dismissed_comment: *527 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -77532,7 +77779,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *533 examples: default: value: @@ -77608,14 +77855,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &534 + '403': &537 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': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77635,15 +77882,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 responses: '200': description: Response content: application/json: - schema: &531 + schema: &534 type: object properties: status: @@ -77670,13 +77917,13 @@ paths: - description - started_at examples: - default: &532 + default: &535 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &533 + '400': &536 description: Bad Request content: application/json: @@ -77687,9 +77934,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': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77712,29 +77959,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 responses: '200': description: OK content: application/json: - schema: *531 + schema: *534 examples: - default: *532 + default: *535 '202': description: Accepted content: application/json: - schema: *531 + schema: *534 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *533 + '400': *536 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -77744,7 +77991,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77766,9 +78013,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 requestBody: required: false content: @@ -77814,12 +78061,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *533 - '403': *534 + '400': *536 + '403': *537 '404': *6 '422': description: Unprocessable Entity - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77839,13 +78086,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 - *19 - *17 - - *535 - - *536 + - *538 + - *539 responses: '200': description: Response @@ -77856,10 +78103,10 @@ paths: items: type: object properties: - ref: *520 - analysis_key: *537 - environment: *538 - category: *539 + ref: *523 + analysis_key: *540 + environment: *541 + category: *542 state: type: - string @@ -77876,7 +78123,7 @@ paths: properties: text: type: string - location: *540 + location: *543 html_url: type: string classifications: @@ -77884,7 +78131,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: *541 + items: *544 examples: default: value: @@ -77921,9 +78168,9 @@ paths: end_column: 50 classifications: - source - '403': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77955,30 +78202,30 @@ 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: - - *449 - - *450 - - *309 - - *310 + - *452 + - *453 + - *312 + - *313 - *19 - *17 - - *536 + - *539 - 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: *520 + schema: *523 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &542 + schema: &545 type: string description: An identifier for the upload. examples: - 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *108 + - *110 - name: sort description: The property by which to sort the results. in: query @@ -77995,23 +78242,23 @@ paths: application/json: schema: type: array - items: &543 + items: &546 type: object properties: - ref: *520 - commit_sha: &551 + ref: *523 + commit_sha: &554 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: *537 + analysis_key: *540 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *539 + category: *542 error: type: string examples: @@ -78036,8 +78283,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *542 - tool: *526 + sarif_id: *545 + tool: *529 deletable: type: boolean warning: @@ -78099,9 +78346,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -78135,8 +78382,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: - - *449 - - *450 + - *452 + - *453 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -78149,7 +78396,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *546 examples: response: summary: application/json response @@ -78203,14 +78450,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *528 + '403': *531 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -78290,8 +78537,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: - - *449 - - *450 + - *452 + - *453 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -78347,9 +78594,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': *534 + '403': *537 '404': *6 - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -78369,8 +78616,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -78378,7 +78625,7 @@ paths: application/json: schema: type: array - items: &544 + items: &547 title: CodeQL Database description: A CodeQL database. type: object @@ -78490,9 +78737,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': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78519,8 +78766,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: - - *449 - - *450 + - *452 + - *453 - name: language in: path description: The language of the CodeQL database. @@ -78532,7 +78779,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *547 examples: default: value: @@ -78564,11 +78811,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': &576 + '302': &579 description: Found - '403': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78588,8 +78835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *449 - - *450 + - *452 + - *453 - name: language in: path description: The language of the CodeQL database. @@ -78599,9 +78846,9 @@ paths: responses: '204': description: Response - '403': *534 + '403': *537 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78627,8 +78874,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -78637,7 +78884,7 @@ paths: type: object additionalProperties: false properties: - language: &545 + language: &548 type: string description: The language targeted by the CodeQL query enum: @@ -78717,7 +78964,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &549 + schema: &552 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -78725,9 +78972,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *118 + controller_repo: *120 actor: *4 - query_language: *545 + query_language: *548 query_pack_url: type: string description: The download url for the query pack. @@ -78775,7 +79022,7 @@ paths: items: type: object properties: - repository: &546 + repository: &549 title: Repository Identifier description: Repository Identifier type: object @@ -78817,7 +79064,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &550 + analysis_status: &553 type: string description: The new status of the CodeQL variant analysis repository task. @@ -78849,7 +79096,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &547 + access_mismatch_repos: &550 type: object properties: repository_count: @@ -78864,7 +79111,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: *546 + items: *549 required: - repository_count - repositories @@ -78887,8 +79134,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *547 - over_limit_repos: *547 + no_codeql_db_repos: *550 + over_limit_repos: *550 required: - access_mismatch_repos - not_found_repos @@ -78904,7 +79151,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &548 + value: &551 summary: Default response value: id: 1 @@ -79050,17 +79297,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *548 + value: *551 repository_lists: summary: Response for a successful variant analysis submission - value: *548 + value: *551 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79081,8 +79328,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: - - *449 - - *450 + - *452 + - *453 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -79094,11 +79341,11 @@ paths: description: Response content: application/json: - schema: *549 + schema: *552 examples: - default: *548 + default: *551 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79119,7 +79366,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: - - *449 + - *452 - name: repo in: path description: The name of the controller repository. @@ -79153,8 +79400,8 @@ paths: schema: type: object properties: - repository: *118 - analysis_status: *550 + repository: *120 + analysis_status: *553 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -79258,7 +79505,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79279,8 +79526,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -79373,9 +79620,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79394,8 +79641,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -79464,7 +79711,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -79489,7 +79736,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *534 + '403': *537 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -79503,7 +79750,7 @@ paths: content: application/json: schema: *3 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79560,8 +79807,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -79569,7 +79816,7 @@ paths: schema: type: object properties: - commit_sha: *551 + commit_sha: *554 ref: type: string description: |- @@ -79629,7 +79876,7 @@ paths: schema: type: object properties: - id: *542 + id: *545 url: type: string description: The REST API URL for checking the status of the upload. @@ -79643,11 +79890,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': *534 + '403': *537 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -79666,8 +79913,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: - - *449 - - *450 + - *452 + - *453 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -79715,10 +79962,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': *528 + '403': *531 '404': description: Not Found if the sarif id does not match any upload - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -79740,8 +79987,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -79765,7 +80012,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *112 + configuration: *114 examples: default: value: @@ -79797,7 +80044,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': *149 + '204': *151 '304': *35 '403': *27 '404': *6 @@ -79822,8 +80069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *449 - - *450 + - *452 + - *453 - 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 @@ -79951,8 +80198,8 @@ paths: parameters: - *17 - *19 - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -79968,7 +80215,7 @@ paths: type: integer codespaces: type: array - items: *372 + items: *375 examples: default: value: @@ -80266,8 +80513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -80331,22 +80578,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -80370,8 +80617,8 @@ paths: parameters: - *17 - *19 - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -80435,8 +80682,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: - - *449 - - *450 + - *452 + - *453 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -80473,9 +80720,9 @@ paths: type: integer machines: type: array - items: *553 + items: *556 examples: - default: &788 + default: &791 value: total_count: 2 machines: @@ -80515,8 +80762,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *449 - - *450 + - *452 + - *453 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -80603,8 +80850,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: - - *449 - - *450 + - *452 + - *453 - 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 @@ -80652,7 +80899,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80673,8 +80920,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -80692,7 +80939,7 @@ paths: type: integer secrets: type: array - items: &557 + items: &560 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -80713,7 +80960,7 @@ paths: - created_at - updated_at examples: - default: *554 + default: *557 headers: Link: *45 x-github: @@ -80736,16 +80983,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *555 + schema: *558 examples: - default: *556 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -80765,17 +81012,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '200': description: Response content: application/json: - schema: *557 + schema: *560 examples: - default: *558 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80795,9 +81042,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: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 requestBody: required: true content: @@ -80825,7 +81072,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -80849,9 +81096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '204': description: Response @@ -80879,8 +81126,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *449 - - *450 + - *452 + - *453 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -80918,7 +81165,7 @@ paths: application/json: schema: type: array - items: &559 + items: &562 title: Collaborator description: Collaborator type: object @@ -81111,9 +81358,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: - - *449 - - *450 - - *137 + - *452 + - *453 + - *139 responses: '204': description: Response if user is a collaborator @@ -81159,9 +81406,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *449 - - *450 - - *137 + - *452 + - *453 + - *139 requestBody: required: false content: @@ -81187,7 +81434,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &635 + schema: &638 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -81199,7 +81446,7 @@ paths: format: int64 examples: - 42 - repository: *276 + repository: *279 invitee: anyOf: - type: 'null' @@ -81375,7 +81622,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *251 + schema: *253 '403': *27 x-github: triggersNotification: true @@ -81415,9 +81662,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *449 - - *450 - - *137 + - *452 + - *453 + - *139 responses: '204': description: No Content when collaborator was removed from the repository. @@ -81448,9 +81695,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *449 - - *450 - - *137 + - *452 + - *453 + - *139 responses: '200': description: if user has admin permissions @@ -81470,7 +81717,7 @@ paths: user: anyOf: - type: 'null' - - *559 + - *562 required: - permission - role_name @@ -81524,8 +81771,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -81535,7 +81782,7 @@ paths: application/json: schema: type: array - items: &560 + items: &563 title: Commit Comment description: Commit Comment type: object @@ -81576,8 +81823,8 @@ paths: updated_at: type: string format: date-time - author_association: *214 - reactions: *215 + author_association: *216 + reactions: *217 required: - url - html_url @@ -81593,7 +81840,7 @@ paths: - created_at - updated_at examples: - default: &565 + default: &568 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -81652,17 +81899,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '200': description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: &566 + default: &569 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -81719,9 +81966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -81743,7 +81990,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: default: value: @@ -81794,9 +82041,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '204': description: Response @@ -81817,9 +82064,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 - 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. @@ -81845,7 +82092,7 @@ paths: application/json: schema: type: array - items: &561 + items: &564 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -81889,7 +82136,7 @@ paths: - content - created_at examples: - default: &638 + default: &641 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -81934,9 +82181,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -81968,9 +82215,9 @@ paths: description: Reaction exists content: application/json: - schema: *561 + schema: *564 examples: - default: &562 + default: &565 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -81999,9 +82246,9 @@ paths: description: Reaction created content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -82023,10 +82270,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *449 - - *450 - - *231 - - &639 + - *452 + - *453 + - *233 + - &642 name: reaction_id description: The unique identifier of the reaction. in: path @@ -82081,8 +82328,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *449 - - *450 + - *452 + - *453 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -82138,9 +82385,9 @@ paths: application/json: schema: type: array - items: *563 + items: *566 examples: - default: &687 + default: &690 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -82214,7 +82461,7 @@ paths: '500': *38 '400': *14 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82234,9 +82481,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *449 - - *450 - - &564 + - *452 + - *453 + - &567 name: commit_sha description: The SHA of the commit. in: path @@ -82283,7 +82530,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82308,9 +82555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *449 - - *450 - - *564 + - *452 + - *453 + - *567 - *17 - *19 responses: @@ -82320,9 +82567,9 @@ paths: application/json: schema: type: array - items: *560 + items: *563 examples: - default: *565 + default: *568 headers: Link: *45 x-github: @@ -82350,9 +82597,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *449 - - *450 - - *564 + - *452 + - *453 + - *567 requestBody: required: true content: @@ -82387,9 +82634,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: *566 + default: *569 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -82417,9 +82664,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: - - *449 - - *450 - - *564 + - *452 + - *453 + - *567 - *17 - *19 responses: @@ -82429,9 +82676,9 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: &679 + default: &682 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -82911,7 +83158,7 @@ paths: draft: false headers: Link: *45 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82968,11 +83215,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *449 - - *450 + - *452 + - *453 - *19 - *17 - - &568 + - &571 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)" @@ -82987,9 +83234,9 @@ paths: description: Response content: application/json: - schema: *563 + schema: *566 examples: - default: &665 + default: &668 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -83076,8 +83323,8 @@ paths: '422': *15 '404': *6 '500': *38 - '503': *190 - '409': *117 + '503': *192 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83102,11 +83349,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: - - *449 - - *450 - - *568 - - *569 - - *570 + - *452 + - *453 + - *571 + - *572 + - *573 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -83140,9 +83387,9 @@ paths: type: integer check_runs: type: array - items: *513 + items: *516 examples: - default: *571 + default: *574 headers: Link: *45 x-github: @@ -83167,9 +83414,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: - - *449 - - *450 - - *568 + - *452 + - *453 + - *571 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -83177,7 +83424,7 @@ paths: schema: type: integer example: 1 - - *569 + - *572 - *17 - *19 responses: @@ -83195,7 +83442,7 @@ paths: type: integer check_suites: type: array - items: *517 + items: *520 examples: default: value: @@ -83395,9 +83642,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: - - *449 - - *450 - - *568 + - *452 + - *453 + - *571 - *17 - *19 responses: @@ -83468,7 +83715,7 @@ paths: type: string total_count: type: integer - repository: *276 + repository: *279 commit_url: type: string format: uri @@ -83599,9 +83846,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *449 - - *450 - - *568 + - *452 + - *453 + - *571 - *17 - *19 responses: @@ -83611,7 +83858,7 @@ paths: application/json: schema: type: array - items: &740 + items: &743 title: Status description: The status of a commit. type: object @@ -83692,7 +83939,7 @@ paths: site_admin: false headers: Link: *45 - '301': *455 + '301': *458 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83720,8 +83967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -83754,11 +84001,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *572 + - *575 code_of_conduct_file: anyOf: - type: 'null' - - &573 + - &576 title: Community Health File type: object properties: @@ -83774,23 +84021,23 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 contributing: anyOf: - type: 'null' - - *573 + - *576 readme: anyOf: - type: 'null' - - *573 + - *576 issue_template: anyOf: - type: 'null' - - *573 + - *576 pull_request_template: anyOf: - type: 'null' - - *573 + - *576 required: - code_of_conduct - code_of_conduct_file @@ -83919,8 +84166,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *449 - - *450 + - *452 + - *453 - *19 - *17 - name: basehead @@ -83968,8 +84215,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *563 - merge_base_commit: *563 + base_commit: *566 + merge_base_commit: *566 status: type: string enum: @@ -83993,10 +84240,10 @@ paths: - 6 commits: type: array - items: *563 + items: *566 files: type: array - items: *574 + items: *577 required: - url - html_url @@ -84240,7 +84487,7 @@ paths: module Test" '404': *6 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84282,8 +84529,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *449 - - *450 + - *452 + - *453 - name: path description: path parameter in: path @@ -84453,7 +84700,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &575 + response-if-content-is-a-file-github-object: &578 summary: Response if content is a file value: type: file @@ -84590,7 +84837,7 @@ paths: - size - type - url - - &692 + - &695 title: Content File description: Content File type: object @@ -84808,7 +85055,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *575 + response-if-content-is-a-file: *578 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -84877,7 +85124,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *576 + '302': *579 '304': *35 x-github: githubCloudOnly: false @@ -84900,8 +85147,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *449 - - *450 + - *452 + - *453 - name: path description: path parameter in: path @@ -84996,7 +85243,7 @@ paths: description: Response content: application/json: - schema: &577 + schema: &580 title: File Commit description: File Commit type: object @@ -85152,7 +85399,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *580 examples: example-for-creating-a-file: value: @@ -85206,7 +85453,7 @@ paths: schema: oneOf: - *3 - - &618 + - &621 description: Repository rule violation was detected type: object properties: @@ -85227,7 +85474,7 @@ paths: items: type: object properties: - placeholder_id: &732 + placeholder_id: &735 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -85259,8 +85506,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *449 - - *450 + - *452 + - *453 - name: path description: path parameter in: path @@ -85321,7 +85568,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *580 examples: default: value: @@ -85355,8 +85602,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *117 - '503': *190 + '409': *119 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85376,8 +85623,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *449 - - *450 + - *452 + - *453 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -85501,26 +85748,26 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *449 - - *450 - - *325 - - *326 - - *327 + - *452 + - *453 - *328 + - *329 + - *330 + - *331 - 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 - - *329 - - *578 - - *330 - - *331 - *332 + - *581 + - *333 + - *334 + - *335 + - *110 - *108 - - *106 - - *107 + - *109 - *17 responses: '200': @@ -85529,11 +85776,11 @@ paths: application/json: schema: type: array - items: &582 + items: &585 type: object description: A Dependabot alert. properties: - number: *124 + number: *126 state: type: string description: The state of the Dependabot alert. @@ -85548,7 +85795,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *125 + package: *127 manifest_path: type: string description: The full path to the dependency manifest file, @@ -85579,13 +85826,13 @@ paths: - direct - transitive - - security_advisory: *579 - security_vulnerability: *128 - url: *129 - html_url: *130 - created_at: *131 - updated_at: *132 - dismissed_at: *133 + security_advisory: *582 + security_vulnerability: *130 + url: *131 + html_url: *132 + created_at: *133 + updated_at: *134 + dismissed_at: *135 dismissed_by: anyOf: - type: 'null' @@ -85609,9 +85856,9 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *134 - auto_dismissed_at: *580 - dismissal_request: *581 + fixed_at: *136 + auto_dismissed_at: *583 + dismissal_request: *584 assignees: type: array description: The users assigned to this alert. @@ -85866,9 +86113,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *449 - - *450 - - &583 + - *452 + - *453 + - &586 name: alert_number in: path description: |- @@ -85877,13 +86124,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *124 + schema: *126 responses: '200': description: Response content: application/json: - schema: *582 + schema: *585 examples: default: value: @@ -86015,9 +86262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *449 - - *450 - - *583 + - *452 + - *453 + - *586 requestBody: required: true content: @@ -86073,7 +86320,7 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: default: value: @@ -86180,7 +86427,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *7 x-github: githubCloudOnly: false @@ -86203,8 +86450,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -86222,7 +86469,7 @@ paths: type: integer secrets: type: array - items: &586 + items: &589 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -86276,16 +86523,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *584 + schema: *587 examples: - default: *585 + default: *588 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86305,15 +86552,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '200': description: Response content: application/json: - schema: *586 + schema: *589 examples: default: value: @@ -86339,9 +86586,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 requestBody: required: true content: @@ -86369,7 +86616,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -86393,9 +86640,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '204': description: Response @@ -86417,8 +86664,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: - - *449 - - *450 + - *452 + - *453 - 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 @@ -86592,8 +86839,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -86853,8 +87100,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -86937,7 +87184,7 @@ paths: - version - url additionalProperties: false - metadata: &587 + metadata: &590 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -86976,7 +87223,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *587 + metadata: *590 resolved: type: object description: A collection of resolved package dependencies. @@ -86990,7 +87237,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *587 + metadata: *590 relationship: type: string description: A notation of whether a dependency is requested @@ -87123,8 +87370,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *449 - - *450 + - *452 + - *453 - name: sha description: The SHA recorded at creation time. in: query @@ -87165,9 +87412,9 @@ paths: application/json: schema: type: array - items: *588 + items: *591 examples: - default: *589 + default: *592 headers: Link: *45 x-github: @@ -87233,8 +87480,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -87316,7 +87563,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: simple-example: summary: Simple example @@ -87389,9 +87636,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *449 - - *450 - - &590 + - *452 + - *453 + - &593 name: deployment_id description: deployment_id parameter in: path @@ -87403,7 +87650,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: default: value: @@ -87468,9 +87715,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *449 - - *450 - - *590 + - *452 + - *453 + - *593 responses: '204': description: Response @@ -87492,9 +87739,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *449 - - *450 - - *590 + - *452 + - *453 + - *593 - *17 - *19 responses: @@ -87504,7 +87751,7 @@ paths: application/json: schema: type: array - items: &591 + items: &594 title: Deployment Status description: The status of a deployment. type: object @@ -87668,9 +87915,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *449 - - *450 - - *590 + - *452 + - *453 + - *593 requestBody: required: true content: @@ -87745,9 +87992,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: &592 + default: &595 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -87803,9 +88050,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *449 - - *450 - - *590 + - *452 + - *453 + - *593 - name: status_id in: path required: true @@ -87816,9 +88063,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: *592 + default: *595 '404': *6 x-github: githubCloudOnly: false @@ -87845,12 +88092,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 - - *593 - - *594 - - *595 + - *452 + - *453 - *596 + - *597 + - *598 + - *599 - *17 - *19 responses: @@ -87860,9 +88107,9 @@ paths: application/json: schema: type: array - items: *597 + items: *600 examples: - default: *598 + default: *601 '404': *6 '403': *27 '500': *38 @@ -87886,8 +88133,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -87899,7 +88146,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *597 + schema: *600 examples: default: value: @@ -87955,8 +88202,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -88015,12 +88262,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *449 - - *450 - - *593 - - *594 - - *595 + - *452 + - *453 - *596 + - *597 + - *598 + - *599 - *17 - *19 responses: @@ -88030,9 +88277,9 @@ paths: application/json: schema: type: array - items: *599 + items: *602 examples: - default: *600 + default: *603 '404': *6 '403': *27 '500': *38 @@ -88056,8 +88303,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -88069,7 +88316,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *599 + schema: *602 examples: default: value: @@ -88120,8 +88367,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -88159,7 +88406,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *599 + schema: *602 examples: default: value: @@ -88210,8 +88457,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -88282,8 +88529,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -88316,12 +88563,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 - - *101 - - *102 + - *452 + - *453 - *103 - - *337 + - *104 + - *105 + - *340 - *17 - *19 responses: @@ -88331,9 +88578,9 @@ paths: application/json: schema: type: array - items: *601 + items: *604 examples: - default: *602 + default: *605 '404': *6 '403': *27 '500': *38 @@ -88358,8 +88605,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -88371,7 +88618,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *601 + schema: *604 examples: default: value: @@ -88429,8 +88676,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -88499,8 +88746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -88557,8 +88804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -88576,7 +88823,7 @@ paths: - 5 environments: type: array - items: &604 + items: &607 title: Environment description: Details of a deployment environment type: object @@ -88638,7 +88885,7 @@ paths: type: string examples: - wait_timer - wait_timer: &606 + wait_timer: &609 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -88680,11 +88927,11 @@ paths: items: type: object properties: - type: *603 + type: *606 reviewer: anyOf: - *4 - - *305 + - *308 required: - id - node_id @@ -88707,7 +88954,7 @@ paths: - id - node_id - type - deployment_branch_policy: &607 + deployment_branch_policy: &610 type: - object - 'null' @@ -88824,9 +89071,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *449 - - *450 - - &605 + - *452 + - *453 + - &608 name: environment_name in: path required: true @@ -88839,9 +89086,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *607 examples: - default: &608 + default: &611 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -88925,9 +89172,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 requestBody: required: false content: @@ -88937,7 +89184,7 @@ paths: - object - 'null' properties: - wait_timer: *606 + wait_timer: *609 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -88956,14 +89203,14 @@ paths: items: type: object properties: - type: *603 + type: *606 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *607 + deployment_branch_policy: *610 additionalProperties: false examples: default: @@ -88983,9 +89230,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *607 examples: - default: *608 + default: *611 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -89009,9 +89256,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 responses: '204': description: Default response @@ -89036,9 +89283,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 - *17 - *19 responses: @@ -89057,7 +89304,7 @@ paths: - 2 branch_policies: type: array - items: &609 + items: &612 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -89118,9 +89365,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 requestBody: required: true content: @@ -89168,9 +89415,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *612 examples: - example-wildcard: &610 + example-wildcard: &613 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -89212,10 +89459,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *449 - - *450 - - *605 - - &611 + - *452 + - *453 + - *608 + - &614 name: branch_policy_id in: path required: true @@ -89227,9 +89474,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *612 examples: - default: *610 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89248,10 +89495,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *449 - - *450 - - *605 - - *611 + - *452 + - *453 + - *608 + - *614 requestBody: required: true content: @@ -89280,9 +89527,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *612 examples: - default: *610 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89301,10 +89548,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *449 - - *450 - - *605 - - *611 + - *452 + - *453 + - *608 + - *614 responses: '204': description: Response @@ -89329,9 +89576,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: - - *605 - - *450 - - *449 + - *608 + - *453 + - *452 responses: '200': description: List of deployment protection rules @@ -89348,7 +89595,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &612 + items: &615 title: Deployment protection rule description: Deployment protection rule type: object @@ -89370,7 +89617,7 @@ paths: for the environment. examples: - true - app: &613 + app: &616 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -89473,9 +89720,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: - - *605 - - *450 - - *449 + - *608 + - *453 + - *452 requestBody: content: application/json: @@ -89496,9 +89743,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *612 + schema: *615 examples: - default: &614 + default: &617 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -89533,9 +89780,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: - - *605 - - *450 - - *449 + - *608 + - *453 + - *452 - *19 - *17 responses: @@ -89555,7 +89802,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *613 + items: *616 examples: default: value: @@ -89590,10 +89837,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: - - *449 - - *450 - - *605 - - &615 + - *452 + - *453 + - *608 + - &618 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -89605,9 +89852,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *615 examples: - default: *614 + default: *617 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89628,10 +89875,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: - - *605 - - *450 - - *449 - - *615 + - *608 + - *453 + - *452 + - *618 responses: '204': description: Response @@ -89657,9 +89904,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 - *17 - *19 responses: @@ -89677,9 +89924,9 @@ paths: type: integer secrets: type: array - items: *480 + items: *483 examples: - default: *481 + default: *484 headers: Link: *45 x-github: @@ -89704,17 +89951,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 responses: '200': description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89736,18 +89983,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *449 - - *450 - - *605 - - *286 + - *452 + - *453 + - *608 + - *289 responses: '200': description: Response content: application/json: - schema: *480 + schema: *483 examples: - default: *616 + default: *619 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89769,10 +90016,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *449 - - *450 - - *605 - - *286 + - *452 + - *453 + - *608 + - *289 requestBody: required: true content: @@ -89803,7 +90050,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -89829,10 +90076,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *449 - - *450 - - *605 - - *286 + - *452 + - *453 + - *608 + - *289 responses: '204': description: Default response @@ -89857,10 +90104,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *449 - - *450 - - *605 - - *467 + - *452 + - *453 + - *608 + - *470 - *19 responses: '200': @@ -89877,9 +90124,9 @@ paths: type: integer variables: type: array - items: *484 + items: *487 examples: - default: *485 + default: *488 headers: Link: *45 x-github: @@ -89902,9 +90149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 requestBody: required: true content: @@ -89931,7 +90178,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -89956,18 +90203,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *449 - - *450 - - *605 - - *289 + - *452 + - *453 + - *608 + - *292 responses: '200': description: Response content: application/json: - schema: *484 + schema: *487 examples: - default: *617 + default: *620 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89988,10 +90235,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *449 - - *450 - - *289 - - *605 + - *452 + - *453 + - *292 + - *608 requestBody: required: true content: @@ -90033,10 +90280,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *449 - - *450 - - *289 - - *605 + - *452 + - *453 + - *292 + - *608 responses: '204': description: Response @@ -90058,8 +90305,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -90069,7 +90316,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: 200-response: value: @@ -90127,8 +90374,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *449 - - *450 + - *452 + - *453 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -90150,7 +90397,7 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: default: value: @@ -90287,8 +90534,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -90321,9 +90568,9 @@ paths: description: Response content: application/json: - schema: *454 + schema: *457 examples: - default: *456 + default: *459 '400': *14 '422': *15 '403': *27 @@ -90344,8 +90591,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -90396,7 +90643,7 @@ paths: schema: type: string '404': *6 - '409': *117 + '409': *119 '403': *27 '422': description: Validation failed @@ -90404,8 +90651,8 @@ paths: application/json: schema: oneOf: - - *251 - - *618 + - *253 + - *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90430,8 +90677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *449 - - *450 + - *452 + - *453 - name: file_sha in: path required: true @@ -90483,7 +90730,7 @@ paths: '404': *6 '422': *15 '403': *27 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90531,8 +90778,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -90641,7 +90888,7 @@ paths: description: Response content: application/json: - schema: &619 + schema: &622 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -90818,7 +91065,7 @@ paths: type: string '422': *15 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90868,15 +91115,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *449 - - *450 - - *564 + - *452 + - *453 + - *567 responses: '200': description: Response content: application/json: - schema: *619 + schema: *622 examples: default: value: @@ -90907,7 +91154,7 @@ paths: payload: verified_at: '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90932,9 +91179,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *449 - - *450 - - &620 + - *452 + - *453 + - &623 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. @@ -90951,7 +91198,7 @@ paths: application/json: schema: type: array - items: &621 + items: &624 title: Git Reference description: Git references within a repository type: object @@ -91006,7 +91253,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: Link: *45 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91027,17 +91274,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *449 - - *450 - - *620 + - *452 + - *453 + - *623 responses: '200': description: Response content: application/json: - schema: *621 + schema: *624 examples: - default: &622 + default: &625 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -91047,7 +91294,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91066,8 +91313,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -91096,16 +91343,16 @@ paths: description: Response content: application/json: - schema: *621 + schema: *624 examples: - default: *622 + default: *625 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91124,9 +91371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *449 - - *450 - - *620 + - *452 + - *453 + - *623 requestBody: required: true content: @@ -91155,11 +91402,11 @@ paths: description: Response content: application/json: - schema: *621 + schema: *624 examples: - default: *622 + default: *625 '422': *15 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91175,16 +91422,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *449 - - *450 - - *620 + - *452 + - *453 + - *623 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91232,8 +91479,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -91300,7 +91547,7 @@ paths: description: Response content: application/json: - schema: &624 + schema: &627 title: Git Tag description: Metadata for a Git tag type: object @@ -91356,7 +91603,7 @@ paths: - sha - type - url - verification: *623 + verification: *626 required: - sha - url @@ -91366,7 +91613,7 @@ paths: - tag - message examples: - default: &625 + default: &628 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -91393,7 +91640,7 @@ paths: schema: type: string '422': *15 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91439,8 +91686,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *449 - - *450 + - *452 + - *453 - name: tag_sha in: path required: true @@ -91451,11 +91698,11 @@ paths: description: Response content: application/json: - schema: *624 + schema: *627 examples: - default: *625 + default: *628 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91477,8 +91724,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -91552,7 +91799,7 @@ paths: description: Response content: application/json: - schema: &626 + schema: &629 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -91631,7 +91878,7 @@ paths: '422': *15 '404': *6 '403': *27 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91654,8 +91901,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *449 - - *450 + - *452 + - *453 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -91678,7 +91925,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *629 examples: default-response: summary: Default response @@ -91719,7 +91966,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91737,8 +91984,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -91748,7 +91995,7 @@ paths: application/json: schema: type: array - items: &627 + items: &630 title: Webhook description: Webhooks for repositories. type: object @@ -91811,7 +92058,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &878 + last_response: &881 title: Hook Response type: object properties: @@ -91888,8 +92135,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -91942,9 +92189,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *630 examples: - default: &628 + default: &631 value: type: Repository id: 12345678 @@ -91992,17 +92239,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 responses: '200': description: Response content: application/json: - schema: *627 + schema: *630 examples: - default: *628 + default: *631 '404': *6 x-github: githubCloudOnly: false @@ -92022,9 +92269,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 requestBody: required: true content: @@ -92069,9 +92316,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *630 examples: - default: *628 + default: *631 '422': *15 '404': *6 x-github: @@ -92092,9 +92339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 responses: '204': description: Response @@ -92118,9 +92365,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: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 responses: '200': description: Response @@ -92147,9 +92394,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: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 requestBody: required: false content: @@ -92193,11 +92440,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 - *17 - - *341 + - *344 responses: '200': description: Response @@ -92205,9 +92452,9 @@ paths: application/json: schema: type: array - items: *342 + items: *345 examples: - default: *343 + default: *346 '400': *14 '422': *15 x-github: @@ -92226,18 +92473,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: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 - *16 responses: '200': description: Response content: application/json: - schema: *344 + schema: *347 examples: - default: *345 + default: *348 '400': *14 '422': *15 x-github: @@ -92256,9 +92503,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: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 - *16 responses: '202': *37 @@ -92281,9 +92528,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 responses: '204': description: Response @@ -92308,9 +92555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 responses: '204': description: Response @@ -92333,8 +92580,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response if immutable releases are enabled @@ -92382,11 +92629,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *449 - - *450 + - *452 + - *453 responses: - '204': *149 - '409': *117 + '204': *151 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92403,11 +92650,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *449 - - *450 + - *452 + - *453 responses: - '204': *149 - '409': *117 + '204': *151 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92461,14 +92708,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: &629 + schema: &632 title: Import description: A repository import from an external source. type: object @@ -92575,7 +92822,7 @@ paths: - html_url - authors_url examples: - default: &632 + default: &635 value: vcs: subversion use_lfs: true @@ -92591,7 +92838,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': &630 + '503': &633 description: Unavailable due to service under maintenance. content: application/json: @@ -92620,8 +92867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -92669,7 +92916,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *632 examples: default: value: @@ -92694,7 +92941,7 @@ paths: type: string '422': *15 '404': *6 - '503': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92722,8 +92969,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -92775,7 +93022,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *632 examples: example-1: summary: Example 1 @@ -92823,7 +93070,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': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92846,12 +93093,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response - '503': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92877,9 +93124,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *449 - - *450 - - &809 + - *452 + - *453 + - &812 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -92893,7 +93140,7 @@ paths: application/json: schema: type: array - items: &631 + items: &634 title: Porter Author description: Porter Author type: object @@ -92947,7 +93194,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': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92972,8 +93219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *449 - - *450 + - *452 + - *453 - name: author_id in: path required: true @@ -93003,7 +93250,7 @@ paths: description: Response content: application/json: - schema: *631 + schema: *634 examples: default: value: @@ -93016,7 +93263,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93040,8 +93287,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -93082,7 +93329,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93110,8 +93357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -93138,11 +93385,11 @@ paths: description: Response content: application/json: - schema: *629 + schema: *632 examples: - default: *632 + default: *635 '422': *15 - '503': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93165,8 +93412,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -93174,8 +93421,8 @@ paths: application/json: schema: *20 examples: - default: *357 - '301': *455 + default: *360 + '301': *458 '404': *6 x-github: githubCloudOnly: false @@ -93195,8 +93442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -93204,12 +93451,12 @@ paths: application/json: schema: anyOf: - - *359 + - *362 - type: object properties: {} additionalProperties: false examples: - default: &634 + default: &637 value: limit: collaborators_only origin: repository @@ -93234,13 +93481,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: application/json: - schema: *633 + schema: *636 examples: default: summary: Example request body @@ -93252,9 +93499,9 @@ paths: description: Response content: application/json: - schema: *359 + schema: *362 examples: - default: *634 + default: *637 '409': description: Response x-github: @@ -93276,8 +93523,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -93300,8 +93547,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -93311,9 +93558,9 @@ paths: application/json: schema: type: array - items: *635 + items: *638 examples: - default: &802 + default: &805 value: - id: 1 repository: @@ -93444,9 +93691,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *449 - - *450 - - *363 + - *452 + - *453 + - *366 requestBody: required: false content: @@ -93475,7 +93722,7 @@ paths: description: Response content: application/json: - schema: *635 + schema: *638 examples: default: value: @@ -93606,9 +93853,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *449 - - *450 - - *363 + - *452 + - *453 + - *366 responses: '204': description: Response @@ -93639,8 +93886,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *449 - - *450 + - *452 + - *453 - 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 @@ -93688,7 +93935,7 @@ paths: required: false schema: type: string - - *370 + - *373 - name: sort description: What to sort results by. in: query @@ -93700,8 +93947,8 @@ paths: - updated - comments default: created - - *108 - - *222 + - *110 + - *224 - *17 - *19 responses: @@ -93711,9 +93958,9 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: &644 + default: &647 value: - id: 1 node_id: MDU6SXNzdWUx @@ -93862,7 +94109,7 @@ paths: state_reason: completed headers: Link: *45 - '301': *455 + '301': *458 '422': *15 '404': *6 x-github: @@ -93891,8 +94138,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -93982,9 +94229,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: &641 + default: &644 value: id: 1 node_id: MDU6SXNzdWUx @@ -94139,9 +94386,9 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *190 + '503': *192 '404': *6 - '410': *636 + '410': *639 x-github: triggersNotification: true githubCloudOnly: false @@ -94169,9 +94416,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *449 - - *450 - - *239 + - *452 + - *453 + - *241 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -94181,7 +94428,7 @@ paths: enum: - asc - desc - - *222 + - *224 - *17 - *19 responses: @@ -94191,9 +94438,9 @@ paths: application/json: schema: type: array - items: *218 + items: *220 examples: - default: &643 + default: &646 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -94251,17 +94498,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '200': description: Response content: application/json: - schema: *218 + schema: *220 examples: - default: &637 + default: &640 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -94316,9 +94563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -94340,9 +94587,9 @@ paths: description: Response content: application/json: - schema: *218 + schema: *220 examples: - default: *637 + default: *640 '422': *15 x-github: githubCloudOnly: false @@ -94360,9 +94607,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '204': description: Response @@ -94390,15 +94637,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#pin-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '200': description: Response content: application/json: - schema: *218 + schema: *220 examples: default: value: @@ -94454,7 +94701,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *636 + '410': *639 '422': *15 x-github: githubCloudOnly: false @@ -94471,17 +94718,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#unpin-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '204': description: Response '401': *23 '403': *27 '404': *6 - '410': *636 - '503': *190 + '410': *639 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94498,9 +94745,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 - 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. @@ -94526,9 +94773,9 @@ paths: application/json: schema: type: array - items: *561 + items: *564 examples: - default: *638 + default: *641 headers: Link: *45 '404': *6 @@ -94549,9 +94796,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -94583,16 +94830,16 @@ paths: description: Reaction exists content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '201': description: Reaction created content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -94614,10 +94861,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *449 - - *450 - - *231 - - *639 + - *452 + - *453 + - *233 + - *642 responses: '204': description: Response @@ -94637,8 +94884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -94648,7 +94895,7 @@ paths: application/json: schema: type: array - items: &640 + items: &643 title: Issue Event description: Issue Event type: object @@ -94695,7 +94942,7 @@ paths: issue: anyOf: - type: 'null' - - *217 + - *219 label: title: Issue Event Label description: Issue Event Label @@ -94728,7 +94975,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *305 + requested_team: *308 dismissed_review: title: Issue Event Dismissed Review type: object @@ -94795,7 +95042,7 @@ paths: required: - from - to - author_association: *214 + author_association: *216 lock_reason: type: - string @@ -94988,8 +95235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *449 - - *450 + - *452 + - *453 - name: event_id in: path required: true @@ -95000,7 +95247,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *643 examples: default: value: @@ -95193,7 +95440,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *636 + '410': *639 '403': *27 x-github: githubCloudOnly: false @@ -95227,9 +95474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *449 - - *450 - - &642 + - *452 + - *453 + - &645 name: issue_number description: The number that identifies the issue. in: path @@ -95241,11 +95488,11 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: default: summary: Issue - value: *641 + value: *644 pinned_comment: summary: Issue with pinned comment value: @@ -95444,9 +95691,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 '304': *35 x-github: githubCloudOnly: false @@ -95471,9 +95718,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: false content: @@ -95612,15 +95859,15 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 '422': *15 - '503': *190 + '503': *192 '403': *27 - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95638,9 +95885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: false content: @@ -95666,9 +95913,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95684,9 +95931,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: content: application/json: @@ -95711,9 +95958,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95735,9 +95982,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - name: assignee in: path required: true @@ -95777,10 +96024,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *449 - - *450 - - *642 - - *222 + - *452 + - *453 + - *645 + - *224 - *17 - *19 responses: @@ -95790,13 +96037,13 @@ paths: application/json: schema: type: array - items: *218 + items: *220 examples: - default: *643 + default: *646 headers: Link: *45 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95825,9 +96072,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -95849,16 +96096,16 @@ paths: description: Response content: application/json: - schema: *218 + schema: *220 examples: - default: *637 + default: *640 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *636 + '410': *639 '422': *15 '404': *6 x-github: @@ -95886,9 +96133,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -95898,14 +96145,14 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: *644 + default: *647 headers: Link: *45 - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95933,9 +96180,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -95957,17 +96204,17 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *455 + '301': *458 '403': *27 - '410': *636 + '410': *639 '422': *15 '404': *6 x-github: @@ -95998,9 +96245,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -96012,15 +96259,15 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 - '301': *455 + default: *644 + '301': *458 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *636 + '410': *639 x-github: triggersNotification: true githubCloudOnly: false @@ -96046,9 +96293,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -96058,14 +96305,14 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: *644 + default: *647 headers: Link: *45 - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96082,9 +96329,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -96098,7 +96345,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &647 + - &650 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -96147,7 +96394,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &648 + - &651 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -96275,7 +96522,7 @@ paths: - performed_via_github_app - assignee - assigner - - &649 + - &652 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -96321,7 +96568,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &650 + - &653 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -96367,7 +96614,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &651 + - &654 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -96416,7 +96663,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &652 + - &655 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -96445,7 +96692,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *305 + requested_team: *308 requested_reviewer: *4 required: - review_requester @@ -96458,7 +96705,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &653 + - &656 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -96487,7 +96734,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *305 + requested_team: *308 requested_reviewer: *4 required: - review_requester @@ -96500,7 +96747,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &654 + - &657 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -96556,7 +96803,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &655 + - &658 title: Locked Issue Event description: Locked Issue Event type: object @@ -96601,7 +96848,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &656 + - &659 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -96662,7 +96909,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &657 + - &660 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -96723,7 +96970,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &658 + - &661 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -96784,7 +97031,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &659 + - &662 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -96877,7 +97124,7 @@ paths: color: red headers: Link: *45 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96894,9 +97141,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -96906,9 +97153,9 @@ paths: application/json: schema: type: array - items: *645 + items: *648 examples: - default: &746 + default: &749 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -96932,9 +97179,9 @@ paths: value: '2025-12-25' headers: Link: *45 - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96951,9 +97198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -96963,9 +97210,9 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: - default: &646 + default: &649 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96983,9 +97230,9 @@ paths: default: false headers: Link: *45 - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97001,9 +97248,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: false content: @@ -97046,12 +97293,12 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: - default: *646 - '301': *455 + default: *649 + '301': *458 '404': *6 - '410': *636 + '410': *639 '422': *15 x-github: githubCloudOnly: false @@ -97068,9 +97315,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: false content: @@ -97130,12 +97377,12 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: - default: *646 - '301': *455 + default: *649 + '301': *458 '404': *6 - '410': *636 + '410': *639 '422': *15 x-github: githubCloudOnly: false @@ -97152,15 +97399,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 responses: '204': description: Response - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97179,9 +97426,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - name: name in: path required: true @@ -97194,7 +97441,7 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: default: value: @@ -97205,9 +97452,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97227,9 +97474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: false content: @@ -97258,7 +97505,7 @@ paths: '204': description: Response '403': *27 - '410': *636 + '410': *639 '404': *6 '422': *15 x-github: @@ -97276,9 +97523,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 responses: '204': description: Response @@ -97308,20 +97555,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 responses: '200': description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 - '301': *455 + default: *644 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97338,9 +97585,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - 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. @@ -97366,13 +97613,13 @@ paths: application/json: schema: type: array - items: *561 + items: *564 examples: - default: *638 + default: *641 headers: Link: *45 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97390,9 +97637,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -97424,16 +97671,16 @@ paths: description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '201': description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -97455,10 +97702,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *449 - - *450 + - *452 + - *453 + - *645 - *642 - - *639 responses: '204': description: Response @@ -97487,9 +97734,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -97511,9 +97758,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -97546,9 +97793,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -97558,13 +97805,13 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: *644 + default: *647 headers: Link: *45 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97592,9 +97839,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -97621,16 +97868,16 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *636 + '410': *639 '422': *15 '404': *6 x-github: @@ -97650,9 +97897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -97683,13 +97930,13 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 '403': *27 '404': *6 '422': *7 - '503': *190 + '503': *192 x-github: triggersNotification: true githubCloudOnly: false @@ -97707,9 +97954,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -97724,9 +97971,6 @@ paths: description: Timeline Event type: object anyOf: - - *647 - - *648 - - *649 - *650 - *651 - *652 @@ -97737,6 +97981,9 @@ paths: - *657 - *658 - *659 + - *660 + - *661 + - *662 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -97784,16 +98031,16 @@ paths: issue_url: type: string format: uri - author_association: *214 + author_association: *216 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *215 + reactions: *217 pin: anyOf: - type: 'null' - - *660 + - *663 required: - event - actor @@ -97824,7 +98071,7 @@ paths: properties: type: type: string - issue: *217 + issue: *219 required: - event - created_at @@ -98046,7 +98293,7 @@ paths: type: string body_text: type: string - author_association: *214 + author_association: *216 required: - event - id @@ -98069,7 +98316,7 @@ paths: type: string comments: type: array - items: &681 + items: &684 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -98177,7 +98424,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *214 + author_association: *216 _links: type: object properties: @@ -98272,7 +98519,7 @@ paths: enum: - line - file - reactions: *215 + reactions: *217 body_html: type: string examples: @@ -98310,7 +98557,7 @@ paths: type: string comments: type: array - items: *560 + items: *563 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -98585,7 +98832,7 @@ paths: headers: Link: *45 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98602,8 +98849,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -98613,7 +98860,7 @@ paths: application/json: schema: type: array - items: &661 + items: &664 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -98681,8 +98928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -98718,9 +98965,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *664 examples: - default: &662 + default: &665 value: id: 1 key: ssh-rsa AAA... @@ -98754,9 +99001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *449 - - *450 - - &663 + - *452 + - *453 + - &666 name: key_id description: The unique identifier of the key. in: path @@ -98768,9 +99015,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *664 examples: - default: *662 + default: *665 '404': *6 x-github: githubCloudOnly: false @@ -98788,9 +99035,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *449 - - *450 - - *663 + - *452 + - *453 + - *666 responses: '204': description: Response @@ -98810,8 +99057,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -98821,9 +99068,9 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: - default: *646 + default: *649 headers: Link: *45 '404': *6 @@ -98844,8 +99091,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -98881,9 +99128,9 @@ paths: description: Response content: application/json: - schema: *216 + schema: *218 examples: - default: &664 + default: &667 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -98915,8 +99162,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *449 - - *450 + - *452 + - *453 - name: name in: path required: true @@ -98927,9 +99174,9 @@ paths: description: Response content: application/json: - schema: *216 + schema: *218 examples: - default: *664 + default: *667 '404': *6 x-github: githubCloudOnly: false @@ -98946,8 +99193,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *449 - - *450 + - *452 + - *453 - name: name in: path required: true @@ -98986,7 +99233,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *218 examples: default: value: @@ -99012,8 +99259,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *449 - - *450 + - *452 + - *453 - name: name in: path required: true @@ -99039,8 +99286,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -99076,8 +99323,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '202': *37 '403': @@ -99105,8 +99352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -99132,9 +99379,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *449 - - *450 - - *535 + - *452 + - *453 + - *538 responses: '200': description: Response @@ -99200,7 +99447,7 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 required: - _links - git_url @@ -99281,8 +99528,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -99347,8 +99594,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -99382,9 +99629,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *563 + schema: *566 examples: - default: *665 + default: *668 '204': description: Response when already merged '404': @@ -99409,8 +99656,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *449 - - *450 + - *452 + - *453 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -99451,7 +99698,7 @@ paths: application/json: schema: type: array - items: *401 + items: *404 examples: default: value: @@ -99507,8 +99754,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -99548,9 +99795,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &666 + default: &669 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -99609,9 +99856,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *449 - - *450 - - &667 + - *452 + - *453 + - &670 name: milestone_number description: The number that identifies the milestone. in: path @@ -99623,9 +99870,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *666 + default: *669 '404': *6 x-github: githubCloudOnly: false @@ -99642,9 +99889,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *449 - - *450 - - *667 + - *452 + - *453 + - *670 requestBody: required: false content: @@ -99682,9 +99929,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *666 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99700,9 +99947,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *449 - - *450 - - *667 + - *452 + - *453 + - *670 responses: '204': description: Response @@ -99723,9 +99970,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: - - *449 - - *450 - - *667 + - *452 + - *453 + - *670 - *17 - *19 responses: @@ -99735,9 +99982,9 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: - default: *646 + default: *649 headers: Link: *45 x-github: @@ -99756,12 +100003,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: - - *449 - - *450 - - *668 - - *669 - - *222 - - *670 + - *452 + - *453 + - *671 + - *672 + - *224 + - *673 - *17 - *19 responses: @@ -99771,9 +100018,9 @@ paths: application/json: schema: type: array - items: *242 + items: *244 examples: - default: *671 + default: *674 headers: Link: *45 x-github: @@ -99797,8 +100044,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -99856,14 +100103,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: &672 + schema: &675 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -100007,7 +100254,7 @@ paths: - custom_404 - public examples: - default: &673 + default: &676 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -100048,8 +100295,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -100104,11 +100351,11 @@ paths: description: Response content: application/json: - schema: *672 + schema: *675 examples: - default: *673 + default: *676 '422': *15 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100129,8 +100376,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -100217,7 +100464,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100238,14 +100485,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response '422': *15 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100265,8 +100512,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -100276,7 +100523,7 @@ paths: application/json: schema: type: array - items: &674 + items: &677 title: Page Build description: Page Build type: object @@ -100368,8 +100615,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *449 - - *450 + - *452 + - *453 responses: '201': description: Response @@ -100416,16 +100663,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *674 + schema: *677 examples: - default: &675 + default: &678 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -100473,8 +100720,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *449 - - *450 + - *452 + - *453 - name: build_id in: path required: true @@ -100485,9 +100732,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *677 examples: - default: *675 + default: *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100507,8 +100754,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -100616,9 +100863,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: - - *449 - - *450 - - &676 + - *452 + - *453 + - &679 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -100676,11 +100923,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *449 - - *450 - - *676 + - *452 + - *453 + - *679 responses: - '204': *149 + '204': *151 '404': *6 x-github: githubCloudOnly: false @@ -100705,8 +100952,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -100974,7 +101221,7 @@ paths: description: Empty response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -101001,8 +101248,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Private vulnerability reporting status @@ -101039,10 +101286,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: - - *449 - - *450 + - *452 + - *453 responses: - '204': *149 + '204': *151 '422': *14 x-github: githubCloudOnly: false @@ -101061,10 +101308,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: - - *449 - - *450 + - *452 + - *453 responses: - '204': *149 + '204': *151 '422': *14 x-github: githubCloudOnly: false @@ -101084,8 +101331,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -101093,9 +101340,9 @@ paths: application/json: schema: type: array - items: *150 + items: *152 examples: - default: *677 + default: *680 '403': *27 '404': *6 x-github: @@ -101117,8 +101364,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -101130,11 +101377,11 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *150 + items: *152 required: - properties examples: - default: *678 + default: *681 responses: '204': description: No Content when custom property values are successfully created @@ -101172,8 +101419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -101233,9 +101480,9 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: *679 + default: *682 headers: Link: *45 '304': *35 @@ -101267,8 +101514,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -101335,7 +101582,7 @@ paths: description: Response content: application/json: - schema: &683 + schema: &686 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -101464,7 +101711,7 @@ paths: milestone: anyOf: - type: 'null' - - *401 + - *404 active_lock_reason: type: - string @@ -101513,7 +101760,7 @@ paths: items: *4 requested_teams: type: array - items: *380 + items: *383 head: type: object properties: @@ -101521,7 +101768,7 @@ paths: type: string ref: type: string - repo: *76 + repo: *78 sha: type: string user: *4 @@ -101538,7 +101785,7 @@ paths: type: string ref: type: string - repo: *76 + repo: *78 sha: type: string user: *4 @@ -101551,14 +101798,14 @@ paths: _links: type: object properties: - comments: *402 - commits: *402 - statuses: *402 - html: *402 - issue: *402 - review_comments: *402 - review_comment: *402 - self: *402 + comments: *405 + commits: *405 + statuses: *405 + html: *405 + issue: *405 + review_comments: *405 + review_comment: *405 + self: *405 required: - comments - commits @@ -101568,8 +101815,8 @@ paths: - review_comments - review_comment - self - author_association: *214 - auto_merge: *680 + author_association: *216 + auto_merge: *683 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -101671,7 +101918,7 @@ paths: - merged_by - review_comments examples: - default: &684 + default: &687 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -102198,8 +102445,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *449 - - *450 + - *452 + - *453 - name: sort in: query required: false @@ -102218,7 +102465,7 @@ paths: enum: - asc - desc - - *222 + - *224 - *17 - *19 responses: @@ -102228,9 +102475,9 @@ paths: application/json: schema: type: array - items: *681 + items: *684 examples: - default: &686 + default: &689 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -102307,17 +102554,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: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '200': description: Response content: application/json: - schema: *681 + schema: *684 examples: - default: &682 + default: &685 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -102392,9 +102639,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: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -102416,9 +102663,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *684 examples: - default: *682 + default: *685 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102434,9 +102681,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: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '204': description: Response @@ -102457,9 +102704,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: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 - 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. @@ -102485,9 +102732,9 @@ paths: application/json: schema: type: array - items: *561 + items: *564 examples: - default: *638 + default: *641 headers: Link: *45 '404': *6 @@ -102508,9 +102755,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: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -102542,16 +102789,16 @@ paths: description: Reaction exists content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '201': description: Reaction created content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -102573,10 +102820,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *449 - - *450 - - *231 - - *639 + - *452 + - *453 + - *233 + - *642 responses: '204': description: Response @@ -102619,9 +102866,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *449 - - *450 - - &685 + - *452 + - *453 + - &688 name: pull_number description: The number that identifies the pull request. in: path @@ -102634,9 +102881,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *683 + schema: *686 examples: - default: *684 + default: *687 '304': *35 '404': *6 '406': @@ -102645,7 +102892,7 @@ paths: application/json: schema: *3 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102671,9 +102918,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: false content: @@ -102715,9 +102962,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *686 examples: - default: *684 + default: *687 '422': *15 '403': *27 x-github: @@ -102739,9 +102986,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: true content: @@ -102802,21 +103049,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '401': *23 '403': *27 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102842,10 +103089,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: - - *449 - - *450 - - *685 - - *239 + - *452 + - *453 + - *688 + - *241 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -102855,7 +103102,7 @@ paths: enum: - asc - desc - - *222 + - *224 - *17 - *19 responses: @@ -102865,9 +103112,9 @@ paths: application/json: schema: type: array - items: *681 + items: *684 examples: - default: *686 + default: *689 headers: Link: *45 x-github: @@ -102900,9 +103147,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: true content: @@ -103008,7 +103255,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *684 examples: example-for-a-multi-line-comment: value: @@ -103096,10 +103343,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: - - *449 - - *450 - - *685 - - *231 + - *452 + - *453 + - *688 + - *233 requestBody: required: true content: @@ -103121,7 +103368,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *684 examples: default: value: @@ -103207,9 +103454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 - *17 - *19 responses: @@ -103219,9 +103466,9 @@ paths: application/json: schema: type: array - items: *563 + items: *566 examples: - default: *687 + default: *690 headers: Link: *45 x-github: @@ -103251,9 +103498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 - *17 - *19 responses: @@ -103263,7 +103510,7 @@ paths: application/json: schema: type: array - items: *574 + items: *577 examples: default: value: @@ -103282,7 +103529,7 @@ paths: Link: *45 '422': *15 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103301,9 +103548,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 responses: '204': description: Response if pull request has been merged @@ -103326,9 +103573,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: false content: @@ -103440,9 +103687,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 responses: '200': description: Response @@ -103458,7 +103705,7 @@ paths: items: *4 teams: type: array - items: *305 + items: *308 required: - users - teams @@ -103517,9 +103764,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: false content: @@ -103556,7 +103803,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: default: value: @@ -104092,9 +104339,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: true content: @@ -104128,7 +104375,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: default: value: @@ -104633,9 +104880,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 - *17 - *19 responses: @@ -104645,7 +104892,7 @@ paths: application/json: schema: type: array - items: &688 + items: &691 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -104719,7 +104966,7 @@ paths: type: string body_text: type: string - author_association: *214 + author_association: *216 required: - id - node_id @@ -104801,9 +105048,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: false content: @@ -104893,9 +105140,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: - default: &690 + default: &693 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -104958,10 +105205,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: - - *449 - - *450 - - *685 - - &689 + - *452 + - *453 + - *688 + - &692 name: review_id description: The unique identifier of the review. in: path @@ -104973,9 +105220,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: - default: &691 + default: &694 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -105034,10 +105281,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: - - *449 - - *450 - - *685 - - *689 + - *452 + - *453 + - *688 + - *692 requestBody: required: true content: @@ -105060,7 +105307,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: default: value: @@ -105122,18 +105369,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: - - *449 - - *450 - - *685 - - *689 + - *452 + - *453 + - *688 + - *692 responses: '200': description: Response content: application/json: - schema: *688 + schema: *691 examples: - default: *690 + default: *693 '422': *7 '404': *6 x-github: @@ -105160,10 +105407,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: - - *449 - - *450 - - *685 - - *689 + - *452 + - *453 + - *688 + - *692 - *17 - *19 responses: @@ -105257,13 +105504,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *214 + author_association: *216 _links: type: object properties: - self: *402 - html: *402 - pull_request: *402 + self: *405 + html: *405 + pull_request: *405 required: - self - html @@ -105272,7 +105519,7 @@ paths: type: string body_html: type: string - reactions: *215 + reactions: *217 side: description: The side of the first line of the range for a multi-line comment. @@ -105421,10 +105668,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: - - *449 - - *450 - - *685 - - *689 + - *452 + - *453 + - *688 + - *692 requestBody: required: true content: @@ -105453,7 +105700,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: default: value: @@ -105516,10 +105763,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: - - *449 - - *450 - - *685 - - *689 + - *452 + - *453 + - *688 + - *692 requestBody: required: true content: @@ -105554,9 +105801,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: - default: *691 + default: *694 '404': *6 '422': *7 '403': *27 @@ -105578,9 +105825,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: false content: @@ -105644,8 +105891,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *449 - - *450 + - *452 + - *453 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -105658,9 +105905,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *695 examples: - default: &693 + default: &696 value: type: file encoding: base64 @@ -105702,8 +105949,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: - - *449 - - *450 + - *452 + - *453 - name: dir description: The alternate path to look for a README file in: path @@ -105723,9 +105970,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *695 examples: - default: *693 + default: *696 '404': *6 '422': *15 x-github: @@ -105747,8 +105994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -105758,7 +106005,7 @@ paths: application/json: schema: type: array - items: *694 + items: *697 examples: default: value: @@ -105852,8 +106099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -105929,9 +106176,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: &698 + default: &701 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -106036,9 +106283,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *449 - - *450 - - &696 + - *452 + - *453 + - &699 name: asset_id description: The unique identifier of the asset. in: path @@ -106050,9 +106297,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *698 examples: - default: &697 + default: &700 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 @@ -106087,7 +106334,7 @@ paths: type: User site_admin: false '404': *6 - '302': *576 + '302': *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106103,9 +106350,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *449 - - *450 - - *696 + - *452 + - *453 + - *699 requestBody: required: false content: @@ -106134,9 +106381,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *698 examples: - default: *697 + default: *700 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106152,9 +106399,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *449 - - *450 - - *696 + - *452 + - *453 + - *699 responses: '204': description: Response @@ -106178,8 +106425,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -106265,16 +106512,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *698 + default: *701 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106291,8 +106538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *449 - - *450 + - *452 + - *453 - name: tag description: tag parameter in: path @@ -106305,9 +106552,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *698 + default: *701 '404': *6 x-github: githubCloudOnly: false @@ -106329,9 +106576,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *449 - - *450 - - &699 + - *452 + - *453 + - &702 name: release_id description: The unique identifier of the release. in: path @@ -106345,9 +106592,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: *694 + schema: *697 examples: - default: *698 + default: *701 '401': description: Unauthorized x-github: @@ -106365,9 +106612,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 requestBody: required: false content: @@ -106431,9 +106678,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *698 + default: *701 '404': description: Not Found if the discussion category name is invalid content: @@ -106454,9 +106701,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 responses: '204': description: Response @@ -106476,9 +106723,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 - *17 - *19 responses: @@ -106488,7 +106735,7 @@ paths: application/json: schema: type: array - items: *695 + items: *698 examples: default: value: @@ -106570,9 +106817,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: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 - name: name in: query required: true @@ -106598,7 +106845,7 @@ paths: description: Response for successful upload content: application/json: - schema: *695 + schema: *698 examples: response-for-successful-upload: value: @@ -106653,9 +106900,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 - 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. @@ -106679,9 +106926,9 @@ paths: application/json: schema: type: array - items: *561 + items: *564 examples: - default: *638 + default: *641 headers: Link: *45 '404': *6 @@ -106702,9 +106949,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 requestBody: required: true content: @@ -106734,16 +106981,16 @@ paths: description: Reaction exists content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '201': description: Reaction created content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -106765,10 +107012,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *449 - - *450 - - *699 - - *639 + - *452 + - *453 + - *702 + - *642 responses: '204': description: Response @@ -106792,9 +107039,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 - *17 - *19 responses: @@ -106810,8 +107057,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *164 - - &700 + - *166 + - &703 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -106830,69 +107077,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *165 - - *700 - - allOf: - - *166 - - *700 - allOf: - *167 - - *700 - - allOf: - - *701 - - *700 + - *703 - allOf: - *168 - - *700 + - *703 - allOf: - *169 - - *700 + - *703 + - allOf: + - *704 + - *703 - allOf: - *170 - - *700 + - *703 - allOf: - *171 - - *700 + - *703 - allOf: - *172 - - *700 + - *703 - allOf: - *173 - - *700 + - *703 - allOf: - *174 - - *700 + - *703 - allOf: - *175 - - *700 + - *703 - allOf: - *176 - - *700 + - *703 - allOf: - *177 - - *700 + - *703 - allOf: - *178 - - *700 + - *703 - allOf: - *179 - - *700 + - *703 - allOf: - *180 - - *700 + - *703 - allOf: - *181 - - *700 + - *703 - allOf: - *182 - - *700 + - *703 - allOf: - *183 - - *700 + - *703 - allOf: - *184 - - *700 + - *703 + - allOf: + - *185 + - *703 + - allOf: + - *186 + - *703 examples: default: value: @@ -106931,8 +107178,8 @@ paths: category: repos subcategory: rules parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 - name: includes_parents @@ -106943,7 +107190,7 @@ paths: schema: type: boolean default: true - - *702 + - *705 responses: '200': description: Response @@ -106951,7 +107198,7 @@ paths: application/json: schema: type: array - items: *185 + items: *187 examples: default: value: @@ -106998,8 +107245,8 @@ paths: category: repos subcategory: rules parameters: - - *449 - - *450 + - *452 + - *453 requestBody: description: Request body required: true @@ -107019,16 +107266,16 @@ paths: - tag - push default: branch - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 - conditions: *156 + items: *165 + conditions: *158 rules: type: array description: An array of rules within the ruleset. - items: *703 + items: *706 required: - name - enforcement @@ -107059,9 +107306,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: &712 + default: &715 value: id: 42 name: super cool ruleset @@ -107109,12 +107356,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *449 - - *450 - - *704 - - *103 - - *705 - - *706 + - *452 + - *453 + - *707 + - *105 + - *708 + - *709 - *17 - *19 responses: @@ -107122,9 +107369,9 @@ paths: description: Response content: application/json: - schema: *707 + schema: *710 examples: - default: *708 + default: *711 '404': *6 '500': *38 x-github: @@ -107145,17 +107392,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *449 - - *450 - - *709 + - *452 + - *453 + - *712 responses: '200': description: Response content: application/json: - schema: *710 + schema: *713 examples: - default: *711 + default: *714 '404': *6 '500': *38 x-github: @@ -107183,8 +107430,8 @@ paths: category: repos subcategory: rules parameters: - - *449 - - *450 + - *452 + - *453 - name: ruleset_id description: The ID of the ruleset. in: path @@ -107204,9 +107451,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *712 + default: *715 '404': *6 '500': *38 put: @@ -107224,8 +107471,8 @@ paths: category: repos subcategory: rules parameters: - - *449 - - *450 + - *452 + - *453 - name: ruleset_id description: The ID of the ruleset. in: path @@ -107250,16 +107497,16 @@ paths: - branch - tag - push - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 - conditions: *156 + items: *165 + conditions: *158 rules: description: An array of rules within the ruleset. type: array - items: *703 + items: *706 examples: default: value: @@ -107287,9 +107534,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *712 + default: *715 '404': *6 '422': *15 '500': *38 @@ -107308,8 +107555,8 @@ paths: category: repos subcategory: rules parameters: - - *449 - - *450 + - *452 + - *453 - name: ruleset_id description: The ID of the ruleset. in: path @@ -107332,8 +107579,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 - name: ruleset_id @@ -107349,9 +107596,9 @@ paths: application/json: schema: type: array - items: *189 + items: *191 examples: - default: *418 + default: *421 '404': *6 '500': *38 x-github: @@ -107370,8 +107617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *449 - - *450 + - *452 + - *453 - name: ruleset_id description: The ID of the ruleset. in: path @@ -107389,7 +107636,7 @@ paths: description: Response content: application/json: - schema: *419 + schema: *422 examples: default: value: @@ -107444,22 +107691,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: - - *449 - - *450 - - *420 - - *421 - - *422 + - *452 + - *453 - *423 - *424 - - *108 - - *19 - - *17 - - *713 - - *714 - *425 - *426 - *427 + - *110 + - *19 + - *17 + - *716 + - *717 - *428 + - *429 + - *430 + - *431 responses: '200': description: Response @@ -107467,24 +107714,24 @@ paths: application/json: schema: type: array - items: &718 + items: &721 type: object properties: - number: *124 - created_at: *131 + number: *126 + created_at: *133 updated_at: anyOf: - type: 'null' - - *132 - url: *129 - html_url: *130 + - *134 + url: *131 + html_url: *132 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *715 - resolution: *716 + state: *718 + resolution: *719 resolved_at: type: - string @@ -107578,7 +107825,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *717 + - *720 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -107701,7 +107948,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107723,16 +107970,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: - - *449 - - *450 - - *529 - - *428 + - *452 + - *453 + - *532 + - *431 responses: '200': description: Response content: application/json: - schema: *718 + schema: *721 examples: default: value: @@ -107763,7 +108010,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107786,9 +108033,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 requestBody: required: true content: @@ -107796,8 +108043,8 @@ paths: schema: type: object properties: - state: *715 - resolution: *716 + state: *718 + resolution: *719 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -107833,7 +108080,7 @@ paths: description: Response content: application/json: - schema: *718 + schema: *721 examples: default: value: @@ -107906,7 +108153,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -107928,9 +108175,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 - *19 - *17 responses: @@ -107941,7 +108188,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &898 + items: &901 type: object properties: type: @@ -107968,9 +108215,6 @@ paths: - commit details: oneOf: - - *719 - - *720 - - *721 - *722 - *723 - *724 @@ -107981,6 +108225,9 @@ paths: - *729 - *730 - *731 + - *732 + - *733 + - *734 examples: default: value: @@ -108044,7 +108291,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108066,8 +108313,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -108075,14 +108322,14 @@ paths: schema: type: object properties: - reason: &733 + reason: &736 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *732 + placeholder_id: *735 required: - reason - placeholder_id @@ -108099,7 +108346,7 @@ paths: schema: type: object properties: - reason: *733 + reason: *736 expire_at: type: - string @@ -108123,7 +108370,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -108146,13 +108393,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: - - *449 - - *450 + - *452 + - *453 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *190 + '503': *192 '200': description: Response content: @@ -108162,7 +108409,7 @@ paths: properties: incremental_scans: type: array - items: &734 + items: &737 description: Information on a single scan performed by secret scanning on the repository type: object @@ -108190,15 +108437,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *734 + items: *737 backfill_scans: type: array - items: *734 + items: *737 custom_pattern_backfill_scans: type: array items: allOf: - - *734 + - *737 - type: object properties: pattern_name: @@ -108268,9 +108515,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *449 - - *450 - - *108 + - *452 + - *453 + - *110 - name: sort description: The property to sort the results by. in: query @@ -108282,8 +108529,8 @@ paths: - updated - published default: created - - *106 - - *107 + - *108 + - *109 - 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)." @@ -108313,9 +108560,9 @@ paths: application/json: schema: type: array - items: *735 + items: *738 examples: - default: *736 + default: *739 '400': *14 '404': *6 x-github: @@ -108338,8 +108585,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -108419,7 +108666,7 @@ paths: login: type: string description: The username of the user credited. - type: *433 + type: *436 required: - login - type @@ -108509,9 +108756,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *738 examples: - default: &738 + default: &741 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -108744,8 +108991,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -108858,7 +109105,7 @@ paths: description: Response content: application/json: - schema: *735 + schema: *738 examples: default: value: @@ -109005,17 +109252,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: - - *449 - - *450 - - *737 + - *452 + - *453 + - *740 responses: '200': description: Response content: application/json: - schema: *735 + schema: *738 examples: - default: *738 + default: *741 '403': *27 '404': *6 x-github: @@ -109039,9 +109286,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: - - *449 - - *450 - - *737 + - *452 + - *453 + - *740 requestBody: required: true content: @@ -109121,7 +109368,7 @@ paths: login: type: string description: The username of the user credited. - type: *433 + type: *436 required: - login - type @@ -109212,17 +109459,17 @@ paths: description: Response content: application/json: - schema: *735 + schema: *738 examples: - default: *738 - add_credit: *738 + default: *741 + add_credit: *741 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *251 + schema: *253 examples: invalid_state_transition: value: @@ -109253,9 +109500,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: - - *449 - - *450 - - *737 + - *452 + - *453 + - *740 responses: '202': *37 '400': *14 @@ -109282,17 +109529,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: - - *449 - - *450 - - *737 + - *452 + - *453 + - *740 responses: '202': description: Response content: application/json: - schema: *454 + schema: *457 examples: - default: *456 + default: *459 '400': *14 '422': *15 '403': *27 @@ -109318,8 +109565,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -109415,8 +109662,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -109425,7 +109672,7 @@ paths: application/json: schema: type: array - items: &739 + items: &742 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -109438,7 +109685,7 @@ paths: - 1124 - -435 '202': *37 - '204': *149 + '204': *151 '422': description: Repository contains more than 10,000 commits x-github: @@ -109458,8 +109705,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -109510,7 +109757,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *149 + '204': *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109537,8 +109784,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -109610,7 +109857,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *149 + '204': *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109632,8 +109879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -109787,8 +110034,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -109798,7 +110045,7 @@ paths: application/json: schema: type: array - items: *739 + items: *742 examples: default: value: @@ -109811,7 +110058,7 @@ paths: - - 0 - 2 - 21 - '204': *149 + '204': *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109831,8 +110078,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *449 - - *450 + - *452 + - *453 - name: sha in: path required: true @@ -109888,7 +110135,7 @@ paths: description: Response content: application/json: - schema: *740 + schema: *743 examples: default: value: @@ -109942,8 +110189,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -109955,7 +110202,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -109975,14 +110222,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &741 + schema: &744 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -110055,8 +110302,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -110082,7 +110329,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *744 examples: default: value: @@ -110109,8 +110356,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -110130,8 +110377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -110213,8 +110460,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *449 - - *450 + - *452 + - *453 - name: ref in: path required: true @@ -110250,8 +110497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -110261,9 +110508,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 headers: Link: *45 '404': *6 @@ -110283,8 +110530,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *449 - - *450 + - *452 + - *453 - *19 - *17 responses: @@ -110292,7 +110539,7 @@ paths: description: Response content: application/json: - schema: &742 + schema: &745 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -110304,7 +110551,7 @@ paths: required: - names examples: - default: &743 + default: &746 value: names: - octocat @@ -110327,8 +110574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -110359,9 +110606,9 @@ paths: description: Response content: application/json: - schema: *742 + schema: *745 examples: - default: *743 + default: *746 '404': *6 '422': *7 x-github: @@ -110382,9 +110629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *449 - - *450 - - &744 + - *452 + - *453 + - &747 name: per description: The time frame to display results for. in: query @@ -110415,7 +110662,7 @@ paths: - 128 clones: type: array - items: &745 + items: &748 title: Traffic type: object properties: @@ -110502,8 +110749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -110597,8 +110844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -110661,9 +110908,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *449 - - *450 - - *744 + - *452 + - *453 + - *747 responses: '200': description: Response @@ -110684,7 +110931,7 @@ paths: - 3782 views: type: array - items: *745 + items: *748 required: - uniques - count @@ -110761,8 +111008,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -110798,7 +111045,7 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: default: value: @@ -111036,8 +111283,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -111060,8 +111307,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -111083,8 +111330,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -111110,8 +111357,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *449 - - *450 + - *452 + - *453 - name: ref in: path required: true @@ -111203,9 +111450,9 @@ paths: description: Response content: application/json: - schema: *454 + schema: *457 examples: - default: *456 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -111246,7 +111493,7 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: default: value: @@ -111352,8 +111599,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: - - *270 - - *642 + - *273 + - *645 requestBody: required: true content: @@ -111419,14 +111666,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *645 + items: *648 examples: - default: *746 + default: *749 '400': *14 '403': *27 '404': *6 '422': *15 - '503': *190 + '503': *192 x-github: triggersNotification: true githubCloudOnly: false @@ -111457,8 +111704,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: - - *270 - - *642 + - *273 + - *645 requestBody: required: true content: @@ -111525,14 +111772,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *645 + items: *648 examples: - default: *746 + default: *749 '400': *14 '403': *27 '404': *6 '422': *15 - '503': *190 + '503': *192 x-github: triggersNotification: true githubCloudOnly: false @@ -111558,16 +111805,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: - - *270 - - *642 - - *366 + - *273 + - *645 + - *369 responses: '204': description: Issue field value deleted successfully '403': *27 '404': *6 '422': *15 - '503': *190 + '503': *192 x-github: triggersNotification: true githubCloudOnly: false @@ -111602,7 +111849,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &754 + - &757 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -111612,7 +111859,7 @@ paths: type: string examples: - members - - &759 + - &762 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -111624,7 +111871,7 @@ paths: format: int32 examples: - 1 - - &760 + - &763 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -111668,7 +111915,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &749 + items: &752 allOf: - type: object required: @@ -111750,7 +111997,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: &761 + meta: &764 type: object description: The metadata associated with the creation/updates to the user. @@ -111815,30 +112062,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &750 + '400': &753 description: Bad request content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 - '401': *748 - '403': &751 + schema: *750 + '401': *751 + '403': &754 description: Permission denied - '429': &752 + '429': &755 description: Too many requests content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 - '500': &753 + schema: *750 + '500': &756 description: Internal server error content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 + schema: *750 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111862,7 +112109,7 @@ paths: required: true content: application/json: - schema: &757 + schema: &760 type: object required: - schemas @@ -111926,9 +112173,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *749 + schema: *752 examples: - group: &755 + group: &758 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -111947,13 +112194,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': *750 - '401': *748 - '403': *751 - '409': &758 + '400': *753 + '401': *751 + '403': *754 + '409': &761 description: Duplicate record detected - '429': *752 - '500': *753 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111970,7 +112217,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: - - &756 + - &759 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -111979,22 +112226,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *754 + - *757 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *749 + schema: *752 examples: - default: *755 - '400': *750 - '401': *748 - '403': *751 + default: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *752 - '500': *753 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112013,13 +112260,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: - - *756 + - *759 - *39 requestBody: required: true content: application/json: - schema: *757 + schema: *760 examples: group: summary: Group @@ -112045,17 +112292,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *749 + schema: *752 examples: - group: *755 - groupWithMembers: *755 - '400': *750 - '401': *748 - '403': *751 + group: *758 + groupWithMembers: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *758 - '429': *752 - '500': *753 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112079,13 +112326,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: - - *756 + - *759 - *39 requestBody: required: true content: application/json: - schema: &768 + schema: &771 type: object required: - Operations @@ -112145,17 +112392,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *749 + schema: *752 examples: - updateGroup: *755 - addMembers: *755 - '400': *750 - '401': *748 - '403': *751 + updateGroup: *758 + addMembers: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *758 - '429': *752 - '500': *753 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112171,17 +112418,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: - - *756 + - *759 - *39 responses: '204': description: Group was deleted, no content - '400': *750 - '401': *748 - '403': *751 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *752 - '500': *753 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112215,8 +112462,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *759 - - *760 + - *762 + - *763 - *39 responses: '200': @@ -112250,7 +112497,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &763 + items: &766 allOf: - type: object required: @@ -112342,7 +112589,7 @@ paths: address. examples: - true - roles: &762 + roles: &765 type: array description: The roles assigned to the user. items: @@ -112401,7 +112648,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *761 + meta: *764 startIndex: type: integer description: A starting index for the returned page @@ -112440,11 +112687,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *750 - '401': *748 - '403': *751 - '429': *752 - '500': *753 + '400': *753 + '401': *751 + '403': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112468,7 +112715,7 @@ paths: required: true content: application/json: - schema: &766 + schema: &769 type: object required: - schemas @@ -112561,9 +112808,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *762 + roles: *765 examples: - user: &767 + user: &770 summary: User value: schemas: @@ -112610,9 +112857,9 @@ paths: description: User has been created content: application/scim+json: - schema: *763 + schema: *766 examples: - user: &764 + user: &767 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -112638,13 +112885,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: *764 - '400': *750 - '401': *748 - '403': *751 - '409': *758 - '429': *752 - '500': *753 + enterpriseOwner: *767 + '400': *753 + '401': *751 + '403': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112661,7 +112908,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: - - &765 + - &768 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -112674,15 +112921,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *763 + schema: *766 examples: - default: *764 - '400': *750 - '401': *748 - '403': *751 + default: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *752 - '500': *753 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112733,30 +112980,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: - - *765 + - *768 - *39 requestBody: required: true content: application/json: - schema: *766 + schema: *769 examples: - user: *767 + user: *770 responses: '200': description: User was updated content: application/scim+json: - schema: *763 + schema: *766 examples: - user: *764 - '400': *750 - '401': *748 - '403': *751 + user: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *758 - '429': *752 - '500': *753 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112797,13 +113044,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: - - *765 + - *768 - *39 requestBody: required: true content: application/json: - schema: *768 + schema: *771 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -112843,18 +113090,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *763 + schema: *766 examples: - userMultiValuedProperties: *764 - userSingleValuedProperties: *764 - disableUser: *764 - '400': *750 - '401': *748 - '403': *751 + userMultiValuedProperties: *767 + userSingleValuedProperties: *767 + disableUser: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *758 - '429': *752 - '500': *753 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112874,17 +113121,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: - - *765 + - *768 - *39 responses: '204': description: User was deleted, no content - '400': *750 - '401': *748 - '403': *751 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *752 - '500': *753 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112917,7 +113164,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#list-scim-provisioned-identities parameters: - - *85 + - *87 - name: startIndex description: 'Used for pagination: the index of the first result to return.' in: query @@ -112975,7 +113222,7 @@ paths: - 1 Resources: type: array - items: &769 + items: &772 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -113222,22 +113469,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': *35 - '404': &770 + '404': &773 description: Resource not found content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 - '403': &771 + schema: *750 + '403': &774 description: Forbidden content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 - '400': *750 - '429': *752 + schema: *750 + '400': *753 + '429': *755 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -113257,15 +113504,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#provision-and-invite-a-scim-user parameters: - - *85 + - *87 responses: '201': description: Response content: application/scim+json: - schema: *769 + schema: *772 examples: - default: &772 + default: &775 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -113288,17 +113535,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': *35 - '404': *770 - '403': *771 - '500': *753 + '404': *773 + '403': *774 + '500': *756 '409': description: Conflict content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 - '400': *750 + schema: *750 + '400': *753 requestBody: required: true content: @@ -113397,18 +113644,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: - - *85 - - *765 + - *87 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *769 + schema: *772 examples: - default: *772 - '404': *770 - '403': *771 + default: *775 + '404': *773 + '403': *774 '304': *35 x-github: githubCloudOnly: true @@ -113431,19 +113678,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - - *85 - - *765 + - *87 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *769 + schema: *772 examples: - default: *772 + default: *775 '304': *35 - '404': *770 - '403': *771 + '404': *773 + '403': *774 requestBody: required: true content: @@ -113557,20 +113804,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: - - *85 - - *765 + - *87 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *769 + schema: *772 examples: - default: *772 + default: *775 '304': *35 - '404': *770 - '403': *771 - '400': *750 + '404': *773 + '403': *774 + '400': *753 '429': description: Response content: @@ -113665,13 +113912,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: - - *85 - - *765 + - *87 + - *768 responses: '204': description: Response - '404': *770 - '403': *771 + '404': *773 + '403': *774 '304': *35 x-github: githubCloudOnly: true @@ -113786,7 +114033,7 @@ paths: html_url: type: string format: uri - repository: *276 + repository: *279 score: type: number file_size: @@ -113805,7 +114052,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &773 + text_matches: &776 title: Search Result Text Matches type: array items: @@ -113920,7 +114167,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *190 + '503': *192 '422': *15 '403': *27 x-github: @@ -113969,7 +114216,7 @@ paths: enum: - author-date - committer-date - - &774 + - &777 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 @@ -114038,7 +114285,7 @@ paths: committer: anyOf: - type: 'null' - - *500 + - *503 comment_count: type: integer message: @@ -114057,7 +114304,7 @@ paths: url: type: string format: uri - verification: *623 + verification: *626 required: - author - committer @@ -114072,7 +114319,7 @@ paths: committer: anyOf: - type: 'null' - - *500 + - *503 parents: type: array items: @@ -114084,12 +114331,12 @@ paths: type: string sha: type: string - repository: *276 + repository: *279 score: type: number node_id: type: string - text_matches: *773 + text_matches: *776 required: - sha - node_id @@ -114282,7 +114529,7 @@ paths: - interactions - created - updated - - *774 + - *777 - *17 - *19 - name: advanced_search @@ -114379,11 +114626,11 @@ paths: type: - string - 'null' - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: type: string state_reason: @@ -114397,7 +114644,7 @@ paths: milestone: anyOf: - type: 'null' - - *401 + - *404 comments: type: integer created_at: @@ -114411,7 +114658,7 @@ paths: - string - 'null' format: date-time - text_matches: *773 + text_matches: *776 pull_request: type: object properties: @@ -114449,10 +114696,10 @@ paths: type: string score: type: number - author_association: *214 + author_association: *216 draft: type: boolean - repository: *76 + repository: *78 body_html: type: string body_text: @@ -114460,7 +114707,7 @@ paths: timeline_url: type: string format: uri - type: *367 + type: *370 performed_via_github_app: anyOf: - type: 'null' @@ -114468,8 +114715,8 @@ paths: pinned_comment: anyOf: - type: 'null' - - *218 - reactions: *215 + - *220 + reactions: *217 required: - assignee - closed_at @@ -114585,7 +114832,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *190 + '503': *192 '422': *15 '304': *35 '403': *27 @@ -114638,7 +114885,7 @@ paths: enum: - created - updated - - *774 + - *777 - *17 - *19 responses: @@ -114683,7 +114930,7 @@ paths: - 'null' score: type: number - text_matches: *773 + text_matches: *776 required: - id - node_id @@ -114769,7 +115016,7 @@ paths: - forks - help-wanted-issues - updated - - *774 + - *777 - *17 - *19 responses: @@ -114999,7 +115246,7 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 permissions: type: object properties: @@ -115017,7 +115264,7 @@ paths: - admin - pull - push - text_matches: *773 + text_matches: *776 temp_clone_token: type: string allow_merge_commit: @@ -115220,7 +115467,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *190 + '503': *192 '422': *15 '304': *35 x-github: @@ -115326,7 +115573,7 @@ paths: - string - 'null' format: uri - text_matches: *773 + text_matches: *776 related: type: - array @@ -115521,7 +115768,7 @@ paths: - followers - repositories - joined - - *774 + - *777 - *17 - *19 responses: @@ -115631,7 +115878,7 @@ paths: type: - boolean - 'null' - text_matches: *773 + text_matches: *776 blog: type: - string @@ -115693,7 +115940,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *190 + '503': *192 '422': *15 x-github: githubCloudOnly: false @@ -115713,7 +115960,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &777 + - &780 name: team_id description: The unique identifier of the team. in: path @@ -115725,9 +115972,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '404': *6 x-github: githubCloudOnly: false @@ -115754,7 +116001,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *777 + - *780 requestBody: required: true content: @@ -115818,16 +116065,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '201': description: Response content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '404': *6 '422': *15 '403': *27 @@ -115855,7 +116102,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *777 + - *780 responses: '204': description: Response @@ -115884,7 +116131,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *777 + - *780 - *17 - *19 responses: @@ -115894,9 +116141,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *362 + default: *365 headers: Link: *45 x-github: @@ -115922,7 +116169,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *777 + - *780 - name: role description: Filters members returned by their role in the team. in: query @@ -115945,7 +116192,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 '404': *6 @@ -115973,8 +116220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *777 - - *137 + - *780 + - *139 responses: '204': description: if user is a member @@ -116010,8 +116257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *777 - - *137 + - *780 + - *139 responses: '204': description: Response @@ -116050,8 +116297,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *777 - - *137 + - *780 + - *139 responses: '204': description: Response @@ -116087,16 +116334,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: - - *777 - - *137 + - *780 + - *139 responses: '200': description: Response content: application/json: - schema: *448 + schema: *451 examples: - response-if-user-is-a-team-maintainer: *778 + response-if-user-is-a-team-maintainer: *781 '404': *6 x-github: githubCloudOnly: false @@ -116129,8 +116376,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: - - *777 - - *137 + - *780 + - *139 requestBody: required: false content: @@ -116155,9 +116402,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *451 examples: - response-if-users-membership-with-team-is-now-pending: *779 + response-if-users-membership-with-team-is-now-pending: *782 '403': description: Forbidden if team synchronization is set up '422': @@ -116191,8 +116438,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: - - *777 - - *137 + - *780 + - *139 responses: '204': description: Response @@ -116219,7 +116466,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *777 + - *780 - *17 - *19 responses: @@ -116229,9 +116476,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *388 + default: *391 headers: Link: *45 '404': *6 @@ -116261,15 +116508,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: - - *777 - - *449 - - *450 + - *780 + - *452 + - *453 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *780 + schema: *783 examples: alternative-response-with-extra-repository-information: value: @@ -116420,9 +116667,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: - - *777 - - *449 - - *450 + - *780 + - *452 + - *453 requestBody: required: false content: @@ -116472,9 +116719,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: - - *777 - - *449 - - *450 + - *780 + - *452 + - *453 responses: '204': description: Response @@ -116503,15 +116750,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: - - *777 + - *780 responses: '200': description: Response content: application/json: - schema: *451 + schema: *454 examples: - default: *452 + default: *455 '403': *27 '404': *6 x-github: @@ -116538,7 +116785,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: - - *777 + - *780 requestBody: required: true content: @@ -116599,7 +116846,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *454 examples: default: value: @@ -116630,7 +116877,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *777 + - *780 - *17 - *19 responses: @@ -116640,9 +116887,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - response-if-child-teams-exist: *781 + response-if-child-teams-exist: *784 headers: Link: *45 '404': *6 @@ -116675,7 +116922,7 @@ paths: application/json: schema: oneOf: - - &783 + - &786 title: Private User description: Private User type: object @@ -116925,7 +117172,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *782 + - *785 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -117085,7 +117332,7 @@ paths: description: Response content: application/json: - schema: *783 + schema: *786 examples: default: value: @@ -117164,7 +117411,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 '304': *35 '404': *6 '403': *27 @@ -117187,7 +117434,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: - - *137 + - *139 responses: '204': description: If the user is blocked @@ -117215,7 +117462,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *137 + - *139 responses: '204': description: Response @@ -117239,7 +117486,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *137 + - *139 responses: '204': description: Response @@ -117288,9 +117535,9 @@ paths: type: integer codespaces: type: array - items: *372 + items: *375 examples: - default: *373 + default: *376 '304': *35 '500': *38 '401': *23 @@ -117429,21 +117676,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '401': *23 '403': *27 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117483,7 +117730,7 @@ paths: type: integer secrets: type: array - items: &784 + items: &787 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -117525,7 +117772,7 @@ paths: - visibility - selected_repositories_url examples: - default: *554 + default: *557 headers: Link: *45 x-github: @@ -117597,13 +117844,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: - - *286 + - *289 responses: '200': description: Response content: application/json: - schema: *784 + schema: *787 examples: default: value: @@ -117633,7 +117880,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: - - *286 + - *289 requestBody: required: true content: @@ -117678,7 +117925,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -117706,7 +117953,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: - - *286 + - *289 responses: '204': description: Response @@ -117731,7 +117978,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: - - *286 + - *289 responses: '200': description: Response @@ -117747,9 +117994,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: *785 + default: *788 '401': *23 '403': *27 '404': *6 @@ -117774,7 +118021,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: - - *286 + - *289 requestBody: required: true content: @@ -117828,7 +118075,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: - - *286 + - *289 - name: repository_id in: path required: true @@ -117861,7 +118108,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: - - *286 + - *289 - name: repository_id in: path required: true @@ -117893,15 +118140,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: - - *374 + - *377 responses: '200': description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '304': *35 '500': *38 '401': *23 @@ -117927,7 +118174,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: - - *374 + - *377 requestBody: required: false content: @@ -117957,9 +118204,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '401': *23 '403': *27 '404': *6 @@ -117981,7 +118228,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: - - *374 + - *377 responses: '202': *37 '304': *35 @@ -118010,13 +118257,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: - - *374 + - *377 responses: '202': description: Response content: application/json: - schema: &786 + schema: &789 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -118069,7 +118316,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &787 + default: &790 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -118101,7 +118348,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *374 + - *377 - name: export_id in: path required: true @@ -118114,9 +118361,9 @@ paths: description: Response content: application/json: - schema: *786 + schema: *789 examples: - default: *787 + default: *790 '404': *6 x-github: githubCloudOnly: false @@ -118137,7 +118384,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *374 + - *377 responses: '200': description: Response @@ -118153,9 +118400,9 @@ paths: type: integer machines: type: array - items: *553 + items: *556 examples: - default: *788 + default: *791 '304': *35 '500': *38 '401': *23 @@ -118184,7 +118431,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: - - *374 + - *377 requestBody: required: true content: @@ -118240,11 +118487,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *454 + repository: *457 machine: anyOf: - type: 'null' - - *553 + - *556 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -119041,15 +119288,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: - - *374 + - *377 responses: '200': description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '304': *35 '500': *38 '400': *14 @@ -119061,7 +119308,7 @@ paths: schema: *3 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119081,15 +119328,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: - - *374 + - *377 responses: '200': description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '500': *38 '401': *23 '403': *27 @@ -119119,9 +119366,9 @@ paths: application/json: schema: type: array - items: *382 + items: *385 examples: - default: &799 + default: &802 value: - id: 197 name: hello_docker @@ -119222,7 +119469,7 @@ paths: application/json: schema: type: array - items: &789 + items: &792 title: Email description: Email type: object @@ -119292,9 +119539,9 @@ paths: application/json: schema: type: array - items: *789 + items: *792 examples: - default: &801 + default: &804 value: - email: octocat@github.com verified: true @@ -119371,7 +119618,7 @@ paths: application/json: schema: type: array - items: *789 + items: *792 examples: default: value: @@ -119483,7 +119730,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 '304': *35 @@ -119516,7 +119763,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 '304': *35 @@ -119538,7 +119785,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: - - *137 + - *139 responses: '204': description: if the person is followed by the authenticated user @@ -119568,7 +119815,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *137 + - *139 responses: '204': description: Response @@ -119593,7 +119840,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *137 + - *139 responses: '204': description: Response @@ -119629,7 +119876,7 @@ paths: application/json: schema: type: array - items: &790 + items: &793 title: GPG Key description: A unique encryption key type: object @@ -119774,7 +120021,7 @@ paths: - subkeys - revoked examples: - default: &817 + default: &820 value: - id: 3 name: Octocat's GPG Key @@ -119859,9 +120106,9 @@ paths: description: Response content: application/json: - schema: *790 + schema: *793 examples: - default: &791 + default: &794 value: id: 3 name: Octocat's GPG Key @@ -119918,7 +120165,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: - - &792 + - &795 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -119930,9 +120177,9 @@ paths: description: Response content: application/json: - schema: *790 + schema: *793 examples: - default: *791 + default: *794 '404': *6 '304': *35 '403': *27 @@ -119955,7 +120202,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: - - *792 + - *795 responses: '204': description: Response @@ -120146,9 +120393,9 @@ paths: type: array items: allOf: - - *76 + - *78 examples: - default: *271 + default: *274 headers: Link: *45 '404': *6 @@ -120173,7 +120420,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *270 + - *273 responses: '204': description: Response @@ -120199,7 +120446,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *270 + - *273 responses: '204': description: Response @@ -120233,12 +120480,12 @@ paths: application/json: schema: anyOf: - - *359 + - *362 - type: object properties: {} additionalProperties: false examples: - default: *360 + default: *363 '204': description: Response when there are no restrictions x-github: @@ -120262,7 +120509,7 @@ paths: required: true content: application/json: - schema: *633 + schema: *636 examples: default: value: @@ -120273,7 +120520,7 @@ paths: description: Response content: application/json: - schema: *359 + schema: *362 examples: default: value: @@ -120354,7 +120601,7 @@ paths: - closed - all default: open - - *370 + - *373 - name: sort description: What to sort results by. in: query @@ -120366,8 +120613,8 @@ paths: - updated - comments default: created - - *108 - - *222 + - *110 + - *224 - *17 - *19 responses: @@ -120377,9 +120624,9 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: *371 + default: *374 headers: Link: *45 '404': *6 @@ -120412,7 +120659,7 @@ paths: application/json: schema: type: array - items: &793 + items: &796 title: Key description: Key type: object @@ -120515,9 +120762,9 @@ paths: description: Response content: application/json: - schema: *793 + schema: *796 examples: - default: &794 + default: &797 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -120550,15 +120797,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: - - *663 + - *666 responses: '200': description: Response content: application/json: - schema: *793 + schema: *796 examples: - default: *794 + default: *797 '404': *6 '304': *35 '403': *27 @@ -120581,7 +120828,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: - - *663 + - *666 responses: '204': description: Response @@ -120614,7 +120861,7 @@ paths: application/json: schema: type: array - items: &795 + items: &798 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -120682,7 +120929,7 @@ paths: - id - type - login - plan: *233 + plan: *235 required: - billing_cycle - next_billing_date @@ -120693,7 +120940,7 @@ paths: - account - plan examples: - default: &796 + default: &799 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -120755,9 +121002,9 @@ paths: application/json: schema: type: array - items: *795 + items: *798 examples: - default: *796 + default: *799 headers: Link: *45 '304': *35 @@ -120797,7 +121044,7 @@ paths: application/json: schema: type: array - items: *375 + items: *378 examples: default: value: @@ -120905,13 +121152,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *375 + schema: *378 examples: default: value: @@ -120973,7 +121220,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: - - *85 + - *87 requestBody: required: true content: @@ -120998,7 +121245,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *378 examples: default: value: @@ -121070,7 +121317,7 @@ paths: application/json: schema: type: array - items: *377 + items: *380 examples: default: value: @@ -121332,7 +121579,7 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: default: value: @@ -121512,7 +121759,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *378 + - *381 - name: exclude in: query required: false @@ -121525,7 +121772,7 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: default: value: @@ -121719,7 +121966,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *378 + - *381 responses: '302': description: Response @@ -121745,7 +121992,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *378 + - *381 responses: '204': description: Response @@ -121774,8 +122021,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *378 - - *797 + - *381 + - *800 responses: '204': description: Response @@ -121799,7 +122046,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *378 + - *381 - *17 - *19 responses: @@ -121809,9 +122056,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *388 + default: *391 headers: Link: *45 '404': *6 @@ -121846,9 +122093,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: *246 + default: *248 headers: Link: *45 '304': *35 @@ -121890,7 +122137,7 @@ paths: - docker - nuget - container - - *798 + - *801 - *19 - *17 responses: @@ -121900,10 +122147,10 @@ paths: application/json: schema: type: array - items: *382 + items: *385 examples: - default: *799 - '400': *800 + default: *802 + '400': *803 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121923,16 +122170,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: - - *384 - - *385 + - *387 + - *388 responses: '200': description: Response content: application/json: - schema: *382 + schema: *385 examples: - default: &818 + default: &821 value: id: 40201 name: octo-name @@ -122045,8 +122292,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: - - *384 - - *385 + - *387 + - *388 responses: '204': description: Response @@ -122076,8 +122323,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: - - *384 - - *385 + - *387 + - *388 - name: token description: package token schema: @@ -122109,8 +122356,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: - - *384 - - *385 + - *387 + - *388 - *19 - *17 - name: state @@ -122130,7 +122377,7 @@ paths: application/json: schema: type: array - items: *386 + items: *389 examples: default: value: @@ -122179,15 +122426,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: - - *384 - - *385 - *387 + - *388 + - *390 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: default: value: @@ -122223,9 +122470,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: - - *384 - - *385 - *387 + - *388 + - *390 responses: '204': description: Response @@ -122255,9 +122502,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: - - *384 - - *385 - *387 + - *388 + - *390 responses: '204': description: Response @@ -122294,9 +122541,9 @@ paths: application/json: schema: type: array - items: *789 + items: *792 examples: - default: *801 + default: *804 headers: Link: *45 '304': *35 @@ -122407,9 +122654,9 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: &808 + default: &811 summary: Default response value: - id: 1296269 @@ -122727,9 +122974,9 @@ paths: description: Response content: application/json: - schema: *454 + schema: *457 examples: - default: *456 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -122767,9 +123014,9 @@ paths: application/json: schema: type: array - items: *635 + items: *638 examples: - default: *802 + default: *805 headers: Link: *45 '304': *35 @@ -122792,12 +123039,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *363 + - *366 responses: '204': description: Response '403': *27 - '409': *117 + '409': *119 '404': *6 '304': *35 x-github: @@ -122815,11 +123062,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *363 + - *366 responses: '204': description: Response - '409': *117 + '409': *119 '304': *35 '404': *6 '403': *27 @@ -122848,7 +123095,7 @@ paths: application/json: schema: type: array - items: &803 + items: &806 title: Social account description: Social media account type: object @@ -122865,7 +123112,7 @@ paths: - provider - url examples: - default: &804 + default: &807 value: - provider: twitter url: https://twitter.com/github @@ -122928,9 +123175,9 @@ paths: application/json: schema: type: array - items: *803 + items: *806 examples: - default: *804 + default: *807 '422': *15 '304': *35 '404': *6 @@ -123018,7 +123265,7 @@ paths: application/json: schema: type: array - items: &805 + items: &808 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -123038,7 +123285,7 @@ paths: - title - created_at examples: - default: &832 + default: &835 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -123103,9 +123350,9 @@ paths: description: Response content: application/json: - schema: *805 + schema: *808 examples: - default: &806 + default: &809 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -123135,7 +123382,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: - - &807 + - &810 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -123147,9 +123394,9 @@ paths: description: Response content: application/json: - schema: *805 + schema: *808 examples: - default: *806 + default: *809 '404': *6 '304': *35 '403': *27 @@ -123172,7 +123419,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: - - *807 + - *810 responses: '204': description: Response @@ -123201,7 +123448,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: - - &833 + - &836 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 @@ -123214,7 +123461,7 @@ paths: - created - updated default: created - - *108 + - *110 - *17 - *19 responses: @@ -123224,13 +123471,13 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default-response: *808 + default-response: *811 application/vnd.github.v3.star+json: schema: type: array - items: &834 + items: &837 title: Starred Repository description: Starred Repository type: object @@ -123238,7 +123485,7 @@ paths: starred_at: type: string format: date-time - repo: *76 + repo: *78 required: - starred_at - repo @@ -123386,8 +123633,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response if this repository is starred by you @@ -123415,8 +123662,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -123440,8 +123687,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -123474,9 +123721,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *388 + default: *391 headers: Link: *45 '304': *35 @@ -123513,7 +123760,7 @@ paths: application/json: schema: type: array - items: *441 + items: *444 examples: default: value: @@ -123591,7 +123838,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *235 + - *237 responses: '200': description: Response @@ -123599,10 +123846,10 @@ paths: application/json: schema: oneOf: - - *783 - - *782 + - *786 + - *785 examples: - default-response: &812 + default-response: &815 summary: Default response value: login: octocat @@ -123637,7 +123884,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &813 + response-with-git-hub-plan-information: &816 summary: Response with GitHub plan information value: login: octocat @@ -123694,14 +123941,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: - - &810 + - &813 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *400 + - *403 requestBody: required: true description: Details of the draft item to create in the project. @@ -123735,9 +123982,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - draft_issue: *406 + draft_issue: *409 '304': *35 '403': *27 '401': *23 @@ -123760,7 +124007,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *809 + - *812 - *17 responses: '200': @@ -123771,7 +124018,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: example: ; rel="next" @@ -123795,8 +124042,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: - - *810 - - *400 + - *813 + - *403 requestBody: required: true content: @@ -123870,17 +124117,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *811 + schema: *814 examples: table_view: summary: Response for creating a table view - value: *410 + value: *413 board_view: summary: Response for creating a board view with filter - value: *410 + value: *413 roadmap_view: summary: Response for creating a roadmap view - value: *410 + value: *413 '304': *35 '403': *27 '401': *23 @@ -123914,7 +124161,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *137 + - *139 responses: '200': description: Response @@ -123922,11 +124169,11 @@ paths: application/json: schema: oneOf: - - *783 - - *782 + - *786 + - *785 examples: - default-response: *812 - response-with-git-hub-plan-information: *813 + default-response: *815 + response-with-git-hub-plan-information: *816 '404': *6 x-github: githubCloudOnly: false @@ -123950,9 +124197,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *106 - - *107 - - *137 + - *108 + - *109 + - *139 requestBody: required: true content: @@ -123976,8 +124223,8 @@ paths: required: - subject_digests examples: - default: *814 - withPredicateType: *815 + default: *817 + withPredicateType: *818 responses: '200': description: Response @@ -124031,7 +124278,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *816 + default: *819 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -124049,7 +124296,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *137 + - *139 requestBody: required: true content: @@ -124114,7 +124361,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *137 + - *139 - name: subject_digest description: Subject Digest in: path @@ -124145,7 +124392,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *137 + - *139 - name: attestation_id description: Attestation ID in: path @@ -124181,9 +124428,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations parameters: - *17 - - *106 - - *107 - - *137 + - *108 + - *109 + - *139 - name: subject_digest description: Subject Digest in: path @@ -124236,12 +124483,12 @@ paths: initiator: type: string examples: - default: *496 + default: *499 '201': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -124267,7 +124514,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: - - *137 + - *139 responses: '200': description: Response @@ -124275,9 +124522,9 @@ paths: application/json: schema: type: array - items: *382 + items: *385 examples: - default: *799 + default: *802 '403': *27 '401': *23 x-github: @@ -124300,7 +124547,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124310,7 +124557,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -124372,8 +124619,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: - - *137 - - *85 + - *139 + - *87 - *17 - *19 responses: @@ -124383,7 +124630,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -124460,7 +124707,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124470,7 +124717,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -124528,7 +124775,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124540,7 +124787,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -124559,7 +124806,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124571,7 +124818,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -124590,7 +124837,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: - - *137 + - *139 - name: target_user in: path required: true @@ -124617,8 +124864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *137 - - *222 + - *139 + - *224 - *17 - *19 responses: @@ -124628,9 +124875,9 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *224 + default: *226 headers: Link: *45 '422': *15 @@ -124651,7 +124898,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: - - *137 + - *139 - *17 - *19 responses: @@ -124661,9 +124908,9 @@ paths: application/json: schema: type: array - items: *790 + items: *793 examples: - default: *817 + default: *820 headers: Link: *45 x-github: @@ -124687,7 +124934,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *137 + - *139 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -124759,7 +125006,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: - - *137 + - *139 responses: '200': description: Response @@ -124767,7 +125014,7 @@ paths: application/json: schema: *20 examples: - default: *357 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124785,7 +125032,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124841,7 +125088,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124851,9 +125098,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: *246 + default: *248 headers: Link: *45 x-github: @@ -124892,8 +125139,8 @@ paths: - docker - nuget - container - - *798 - - *137 + - *801 + - *139 - *19 - *17 responses: @@ -124903,12 +125150,12 @@ paths: application/json: schema: type: array - items: *382 + items: *385 examples: - default: *799 + default: *802 '403': *27 '401': *23 - '400': *800 + '400': *803 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124928,17 +125175,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *384 - - *385 - - *137 + - *387 + - *388 + - *139 responses: '200': description: Response content: application/json: - schema: *382 + schema: *385 examples: - default: *818 + default: *821 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124959,9 +125206,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *384 - - *385 - - *137 + - *387 + - *388 + - *139 responses: '204': description: Response @@ -124993,9 +125240,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *384 - - *385 - - *137 + - *387 + - *388 + - *139 - name: token description: package token schema: @@ -125027,9 +125274,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: - - *384 - - *385 - - *137 + - *387 + - *388 + - *139 responses: '200': description: Response @@ -125037,7 +125284,7 @@ paths: application/json: schema: type: array - items: *386 + items: *389 examples: default: value: @@ -125095,16 +125342,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: - - *384 - - *385 - *387 - - *137 + - *388 + - *390 + - *139 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: default: value: @@ -125139,10 +125386,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *384 - - *385 - - *137 - *387 + - *388 + - *139 + - *390 responses: '204': description: Response @@ -125174,10 +125421,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *384 - - *385 - - *137 - *387 + - *388 + - *139 + - *390 responses: '204': description: Response @@ -125201,15 +125448,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-user parameters: - - *137 + - *139 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *106 - - *107 + - *108 + - *109 - *17 responses: '200': @@ -125218,9 +125465,9 @@ paths: application/json: schema: type: array - items: *398 + items: *401 examples: - default: *399 + default: *402 headers: Link: *45 '304': *35 @@ -125242,16 +125489,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *400 - - *137 + - *403 + - *139 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: - default: *399 + default: *402 headers: Link: *45 '304': *35 @@ -125273,11 +125520,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *400 - - *137 + - *403 + - *139 - *17 - - *106 - - *107 + - *108 + - *109 responses: '200': description: Response @@ -125285,9 +125532,9 @@ paths: application/json: schema: type: array - items: *403 + items: *406 examples: - default: *819 + default: *822 headers: Link: *45 '304': *35 @@ -125308,8 +125555,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#add-field-to-user-owned-project parameters: - - *137 - - *400 + - *139 + - *403 requestBody: required: true content: @@ -125347,7 +125594,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *820 + items: *823 required: - name - data_type @@ -125363,7 +125610,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *821 + iteration_configuration: *824 required: - name - data_type @@ -125385,20 +125632,20 @@ paths: value: name: Due date data_type: date - single_select_field: *822 - iteration_field: *823 + single_select_field: *825 + iteration_field: *826 responses: '201': description: Response content: application/json: - schema: *403 + schema: *406 examples: - text_field: *824 - number_field: *825 - date_field: *826 - single_select_field: *827 - iteration_field: *828 + text_field: *827 + number_field: *828 + date_field: *829 + single_select_field: *830 + iteration_field: *831 '304': *35 '403': *27 '401': *23 @@ -125419,17 +125666,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *400 - - *829 - - *137 + - *403 + - *832 + - *139 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: *830 + default: *833 headers: Link: *45 '304': *35 @@ -125452,10 +125699,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: - - *400 - - *137 - - *106 - - *107 + - *403 + - *139 + - *108 + - *109 - *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) @@ -125485,9 +125732,9 @@ paths: application/json: schema: type: array - items: *407 + items: *410 examples: - default: *408 + default: *411 headers: Link: *45 '304': *35 @@ -125508,8 +125755,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - - *137 - - *400 + - *139 + - *403 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -125579,22 +125826,22 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *406 + value: *409 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *406 + value: *409 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *406 + value: *409 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *406 + value: *409 '304': *35 '403': *27 '401': *23 @@ -125614,9 +125861,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: - - *400 - - *137 - - *409 + - *403 + - *139 + - *412 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -125636,9 +125883,9 @@ paths: description: Response content: application/json: - schema: *407 + schema: *410 examples: - default: *408 + default: *411 headers: Link: *45 '304': *35 @@ -125659,9 +125906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *400 - - *137 - - *409 + - *403 + - *139 + - *412 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -125734,13 +125981,13 @@ paths: description: Response content: application/json: - schema: *407 + schema: *410 examples: - text_field: *408 - number_field: *408 - date_field: *408 - single_select_field: *408 - iteration_field: *408 + text_field: *411 + number_field: *411 + date_field: *411 + single_select_field: *411 + iteration_field: *411 '401': *23 '403': *27 '404': *6 @@ -125760,9 +126007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *400 - - *137 - - *409 + - *403 + - *139 + - *412 responses: '204': description: Response @@ -125784,9 +126031,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: - - *400 - - *137 - - *831 + - *403 + - *139 + - *834 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -125802,8 +126049,8 @@ paths: maxItems: 50 items: type: string - - *106 - - *107 + - *108 + - *109 - *17 responses: '200': @@ -125812,9 +126059,9 @@ paths: application/json: schema: type: array - items: *407 + items: *410 examples: - default: *408 + default: *411 headers: Link: *45 '304': *35 @@ -125842,7 +126089,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: - - *137 + - *139 - *17 - *19 responses: @@ -125852,7 +126099,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -125917,7 +126164,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: - - *137 + - *139 - *17 - *19 responses: @@ -125927,7 +126174,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -125990,7 +126237,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *137 + - *139 - name: type description: Limit results to repositories of the specified type. in: query @@ -126033,9 +126280,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *388 + default: *391 headers: Link: *45 x-github: @@ -126055,7 +126302,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: - - *137 + - *139 - *17 - *19 responses: @@ -126065,9 +126312,9 @@ paths: application/json: schema: type: array - items: *803 + items: *806 examples: - default: *804 + default: *807 headers: Link: *45 x-github: @@ -126087,7 +126334,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: - - *137 + - *139 - *17 - *19 responses: @@ -126097,9 +126344,9 @@ paths: application/json: schema: type: array - items: *805 + items: *808 examples: - default: *832 + default: *835 headers: Link: *45 x-github: @@ -126123,9 +126370,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *137 - - *833 - - *108 + - *139 + - *836 + - *110 - *17 - *19 responses: @@ -126136,11 +126383,11 @@ paths: schema: anyOf: - type: array - items: *834 + items: *837 - type: array - items: *76 + items: *78 examples: - default-response: *808 + default-response: *811 headers: Link: *45 x-github: @@ -126159,7 +126406,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -126169,9 +126416,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *388 + default: *391 headers: Link: *45 x-github: @@ -126300,7 +126547,7 @@ webhooks: type: string enum: - disabled - enterprise: &835 + enterprise: &838 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -126369,7 +126616,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &836 + installation: &839 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -126390,7 +126637,7 @@ webhooks: required: - id - node_id - organization: &837 + organization: &840 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -126463,7 +126710,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &838 + repository: &841 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -126492,7 +126739,7 @@ webhooks: license: anyOf: - type: 'null' - - *219 + - *221 organization: anyOf: - type: 'null' @@ -127395,10 +127642,10 @@ webhooks: type: string enum: - enabled - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -127474,11 +127721,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - rule: &839 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + rule: &842 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) @@ -127701,11 +127948,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - rule: *839 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + rule: *842 sender: *4 required: - action @@ -127893,11 +128140,11 @@ webhooks: - everyone required: - from - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - rule: *839 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + rule: *842 sender: *4 required: - action @@ -127970,7 +128217,7 @@ webhooks: required: true content: application/json: - schema: &859 + schema: &862 title: Exemption request cancellation event type: object properties: @@ -127978,11 +128225,11 @@ webhooks: type: string enum: - cancelled - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - exemption_request: &840 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + exemption_request: &843 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -128256,7 +128503,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &841 + items: &844 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -128368,7 +128615,7 @@ webhooks: required: true content: application/json: - schema: &860 + schema: &863 title: Exemption request completed event type: object properties: @@ -128376,11 +128623,11 @@ webhooks: type: string enum: - completed - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - exemption_request: *840 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + exemption_request: *843 sender: *4 required: - action @@ -128452,7 +128699,7 @@ webhooks: required: true content: application/json: - schema: &857 + schema: &860 title: Exemption request created event type: object properties: @@ -128460,11 +128707,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - exemption_request: *840 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + exemption_request: *843 sender: *4 required: - action @@ -128536,7 +128783,7 @@ webhooks: required: true content: application/json: - schema: &861 + schema: &864 title: Exemption response dismissed event type: object properties: @@ -128544,12 +128791,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - exemption_request: *840 - exemption_response: *841 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + exemption_request: *843 + exemption_response: *844 sender: *4 required: - action @@ -128623,7 +128870,7 @@ webhooks: required: true content: application/json: - schema: &858 + schema: &861 title: Exemption response submitted event type: object properties: @@ -128631,12 +128878,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - exemption_request: *840 - exemption_response: *841 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + exemption_request: *843 + exemption_response: *844 sender: *4 required: - action @@ -128720,7 +128967,7 @@ webhooks: type: string enum: - completed - check_run: &843 + check_run: &846 title: CheckRun description: A check performed on the code of a given code change type: object @@ -128785,8 +129032,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *220 - repository: *276 + items: *222 + repository: *279 status: type: string enum: @@ -128830,7 +129077,7 @@ webhooks: - examples: - neutral - deployment: *842 + deployment: *845 details_url: type: string examples: @@ -128890,7 +129137,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *220 + items: *222 started_at: type: string format: date-time @@ -128928,10 +129175,10 @@ webhooks: - output - app - pull_requests - installation: *836 - enterprise: *835 - organization: *837 - repository: *838 + installation: *839 + enterprise: *838 + organization: *840 + repository: *841 sender: *4 required: - check_run @@ -129322,11 +129569,11 @@ webhooks: type: string enum: - created - check_run: *843 - installation: *836 - enterprise: *835 - organization: *837 - repository: *838 + check_run: *846 + installation: *839 + enterprise: *838 + organization: *840 + repository: *841 sender: *4 required: - check_run @@ -129720,11 +129967,11 @@ webhooks: type: string enum: - requested_action - check_run: *843 - installation: *836 - enterprise: *835 - organization: *837 - repository: *838 + check_run: *846 + installation: *839 + enterprise: *838 + organization: *840 + repository: *841 requested_action: description: The action requested by the user. type: object @@ -130127,11 +130374,11 @@ webhooks: type: string enum: - rerequested - check_run: *843 - installation: *836 - enterprise: *835 - organization: *837 - repository: *838 + check_run: *846 + installation: *839 + enterprise: *838 + organization: *840 + repository: *841 sender: *4 required: - check_run @@ -131116,10 +131363,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -131823,10 +132070,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -132524,10 +132771,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -132696,7 +132943,7 @@ webhooks: required: - login - id - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132848,20 +133095,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &844 + commit_oid: &847 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: *835 - installation: *836 - organization: *837 - ref: &845 + enterprise: *838 + installation: *839 + organization: *840 + ref: &848 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: *838 + repository: *841 sender: *4 required: - action @@ -133028,7 +133275,7 @@ webhooks: required: - login - id - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -133269,12 +133516,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *844 - enterprise: *835 - installation: *836 - organization: *837 - ref: *845 - repository: *838 + commit_oid: *847 + enterprise: *838 + installation: *839 + organization: *840 + ref: *848 + repository: *841 sender: *4 required: - action @@ -133372,7 +133619,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -133557,12 +133804,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *844 - enterprise: *835 - installation: *836 - organization: *837 - ref: *845 - repository: *838 + commit_oid: *847 + enterprise: *838 + installation: *839 + organization: *840 + ref: *848 + repository: *841 sender: *4 required: - action @@ -133731,7 +133978,7 @@ webhooks: required: - login - id - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -133908,12 +134155,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *844 - enterprise: *835 - installation: *836 - organization: *837 - ref: *845 - repository: *838 + commit_oid: *847 + enterprise: *838 + installation: *839 + organization: *840 + ref: *848 + repository: *841 sender: *4 required: - action @@ -134014,7 +134261,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -134203,9 +134450,9 @@ webhooks: type: - string - 'null' - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -134213,7 +134460,7 @@ webhooks: type: - string - 'null' - repository: *838 + repository: *841 sender: *4 required: - action @@ -134312,7 +134559,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -134459,12 +134706,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *844 - enterprise: *835 - installation: *836 - organization: *837 - ref: *845 - repository: *838 + commit_oid: *847 + enterprise: *838 + installation: *839 + organization: *840 + ref: *848 + repository: *841 sender: *4 required: - action @@ -134633,7 +134880,7 @@ webhooks: required: - login - id - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -134785,10 +135032,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -135048,10 +135295,10 @@ webhooks: - updated_at - author_association - body - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -135132,18 +135379,18 @@ webhooks: type: - string - 'null' - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *837 - pusher_type: &846 + organization: *840 + pusher_type: &849 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &847 + ref: &850 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -135153,7 +135400,7 @@ webhooks: enum: - tag - branch - repository: *838 + repository: *841 sender: *4 required: - ref @@ -135235,10 +135482,10 @@ webhooks: type: string enum: - created - definition: *151 - enterprise: *835 - installation: *836 - organization: *837 + definition: *153 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 required: - action @@ -135323,9 +135570,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 required: - action @@ -135402,10 +135649,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *151 - enterprise: *835 - installation: *836 - organization: *837 + definition: *153 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 required: - action @@ -135482,10 +135729,10 @@ webhooks: type: string enum: - updated - definition: *151 - enterprise: *835 - installation: *836 - organization: *837 + definition: *153 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 required: - action @@ -135562,19 +135809,19 @@ webhooks: type: string enum: - updated - enterprise: *835 - installation: *836 - repository: *838 - organization: *837 + enterprise: *838 + installation: *839 + repository: *841 + organization: *840 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *150 + items: *152 old_property_values: type: array description: The old custom property values for the repository. - items: *150 + items: *152 required: - action - repository @@ -135650,18 +135897,18 @@ webhooks: title: delete event type: object properties: - enterprise: *835 - installation: *836 - organization: *837 - pusher_type: *846 - ref: *847 + enterprise: *838 + installation: *839 + organization: *840 + pusher_type: *849 + ref: *850 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *838 + repository: *841 sender: *4 required: - ref @@ -135741,11 +135988,11 @@ webhooks: type: string enum: - assignees_changed - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -135825,11 +136072,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -135910,11 +136157,11 @@ webhooks: type: string enum: - auto_reopened - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -135995,11 +136242,11 @@ webhooks: type: string enum: - created - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -136078,11 +136325,11 @@ webhooks: type: string enum: - dismissed - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -136161,11 +136408,11 @@ webhooks: type: string enum: - fixed - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -136245,11 +136492,11 @@ webhooks: type: string enum: - reintroduced - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -136328,11 +136575,11 @@ webhooks: type: string enum: - reopened - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -136409,9 +136656,9 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - key: &848 + enterprise: *838 + installation: *839 + key: &851 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -136449,8 +136696,8 @@ webhooks: - verified - created_at - read_only - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -136527,11 +136774,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - key: *848 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + key: *851 + organization: *840 + repository: *841 sender: *4 required: - action @@ -137098,12 +137345,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - workflow: &852 + workflow: &855 title: Workflow type: - object @@ -137854,13 +138101,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *588 + - *591 pull_requests: type: array - items: *683 - repository: *838 - organization: *837 - installation: *836 + items: *686 + repository: *841 + organization: *840 + installation: *839 sender: *4 responses: '200': @@ -137931,7 +138178,7 @@ webhooks: type: string enum: - approved - approver: &849 + approver: &852 type: object properties: avatar_url: @@ -137974,11 +138221,11 @@ webhooks: type: string comment: type: string - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - reviewers: &850 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + reviewers: &853 type: array items: type: object @@ -138059,7 +138306,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &851 + workflow_job_run: &854 type: object properties: conclusion: @@ -138805,18 +139052,18 @@ webhooks: type: string enum: - rejected - approver: *849 + approver: *852 comment: type: string - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - reviewers: *850 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + reviewers: *853 sender: *4 since: type: string - workflow_job_run: *851 + workflow_job_run: *854 workflow_job_runs: type: array items: @@ -139533,13 +139780,13 @@ webhooks: type: string enum: - requested - enterprise: *835 + enterprise: *838 environment: type: string - installation: *836 - organization: *837 - repository: *838 - requestor: &862 + installation: *839 + organization: *840 + repository: *841 + requestor: &865 title: User type: - object @@ -141472,12 +141719,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - workflow: *852 + workflow: *855 workflow_run: title: Deployment Workflow Run type: @@ -142168,7 +142415,7 @@ webhooks: type: string enum: - answered - answer: &855 + answer: &858 type: object properties: author_association: @@ -142328,11 +142575,11 @@ webhooks: - created_at - updated_at - body - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142459,11 +142706,11 @@ webhooks: - from required: - category - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142546,11 +142793,11 @@ webhooks: type: string enum: - closed - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142632,7 +142879,7 @@ webhooks: type: string enum: - created - comment: &854 + comment: &857 type: object properties: author_association: @@ -142792,11 +143039,11 @@ webhooks: - updated_at - body - reactions - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142879,12 +143126,12 @@ webhooks: type: string enum: - deleted - comment: *854 - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + comment: *857 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142979,12 +143226,12 @@ webhooks: - from required: - body - comment: *854 - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + comment: *857 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143068,11 +143315,11 @@ webhooks: type: string enum: - created - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143154,11 +143401,11 @@ webhooks: type: string enum: - deleted - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143258,11 +143505,11 @@ webhooks: type: string required: - from - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143344,10 +143591,10 @@ webhooks: type: string enum: - labeled - discussion: *853 - enterprise: *835 - installation: *836 - label: &856 + discussion: *856 + enterprise: *838 + installation: *839 + label: &859 title: Label type: object properties: @@ -143380,8 +143627,8 @@ webhooks: - color - default - description - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143464,11 +143711,11 @@ webhooks: type: string enum: - locked - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143550,11 +143797,11 @@ webhooks: type: string enum: - pinned - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143636,11 +143883,11 @@ webhooks: type: string enum: - reopened - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143725,16 +143972,16 @@ webhooks: changes: type: object properties: - new_discussion: *853 - new_repository: *838 + new_discussion: *856 + new_repository: *841 required: - new_discussion - new_repository - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143817,10 +144064,10 @@ webhooks: type: string enum: - unanswered - discussion: *853 - old_answer: *855 - organization: *837 - repository: *838 + discussion: *856 + old_answer: *858 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143902,12 +144149,12 @@ webhooks: type: string enum: - unlabeled - discussion: *853 - enterprise: *835 - installation: *836 - label: *856 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143990,11 +144237,11 @@ webhooks: type: string enum: - unlocked - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -144076,11 +144323,11 @@ webhooks: type: string enum: - unpinned - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -144149,7 +144396,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *860 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144212,7 +144459,7 @@ webhooks: required: true content: application/json: - schema: *858 + schema: *861 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144275,7 +144522,7 @@ webhooks: required: true content: application/json: - schema: *859 + schema: *862 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144338,7 +144585,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *860 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144401,7 +144648,7 @@ webhooks: required: true content: application/json: - schema: *858 + schema: *861 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144467,7 +144714,7 @@ webhooks: required: true content: application/json: - schema: *859 + schema: *862 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144533,7 +144780,7 @@ webhooks: required: true content: application/json: - schema: *860 + schema: *863 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144599,7 +144846,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *860 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144665,7 +144912,7 @@ webhooks: required: true content: application/json: - schema: *861 + schema: *864 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144731,7 +144978,7 @@ webhooks: required: true content: application/json: - schema: *858 + schema: *861 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144796,7 +145043,7 @@ webhooks: required: true content: application/json: - schema: *859 + schema: *862 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144861,7 +145108,7 @@ webhooks: required: true content: application/json: - schema: *860 + schema: *863 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144926,7 +145173,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *860 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144991,7 +145238,7 @@ webhooks: required: true content: application/json: - schema: *861 + schema: *864 responses: '200': description: Return a 200 status to indicate that the data was received @@ -145057,7 +145304,7 @@ webhooks: required: true content: application/json: - schema: *858 + schema: *861 responses: '200': description: Return a 200 status to indicate that the data was received @@ -145124,7 +145371,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *835 + enterprise: *838 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -145802,9 +146049,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *836 - organization: *837 - repository: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - forkee @@ -145950,9 +146197,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pages: description: The pages that were updated. type: array @@ -145990,7 +146237,7 @@ webhooks: - action - sha - html_url - repository: *838 + repository: *841 sender: *4 required: - pages @@ -146066,10 +146313,10 @@ webhooks: type: string enum: - created - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories: &863 + organization: *840 + repositories: &866 description: An array of repository objects that the installation can access. type: array @@ -146095,8 +146342,8 @@ webhooks: - name - full_name - private - repository: *838 - requester: *862 + repository: *841 + requester: *865 sender: *4 required: - action @@ -146171,11 +146418,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories: *863 - repository: *838 + organization: *840 + repositories: *866 + repository: *841 requester: type: - 'null' @@ -146252,11 +146499,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories: *863 - repository: *838 + organization: *840 + repositories: *866 + repository: *841 requester: type: - 'null' @@ -146333,10 +146580,10 @@ webhooks: type: string enum: - added - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories_added: &864 + organization: *840 + repositories_added: &867 description: An array of repository objects, which were added to the installation. type: array @@ -146382,15 +146629,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *838 - repository_selection: &865 + repository: *841 + repository_selection: &868 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *862 + requester: *865 sender: *4 required: - action @@ -146469,10 +146716,10 @@ webhooks: type: string enum: - removed - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories_added: *864 + organization: *840 + repositories_added: *867 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -146499,9 +146746,9 @@ webhooks: - name - full_name - private - repository: *838 - repository_selection: *865 - requester: *862 + repository: *841 + repository_selection: *868 + requester: *865 sender: *4 required: - action @@ -146580,11 +146827,11 @@ webhooks: type: string enum: - suspend - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories: *863 - repository: *838 + organization: *840 + repositories: *866 + repository: *841 requester: type: - 'null' @@ -146767,10 +147014,10 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 target_type: type: string @@ -146849,11 +147096,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories: *863 - repository: *838 + organization: *840 + repositories: *866 + repository: *841 requester: type: - 'null' @@ -147019,7 +147266,7 @@ webhooks: pin: anyOf: - type: 'null' - - *660 + - *663 user: title: User type: @@ -147105,8 +147352,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147918,8 +148165,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147936,7 +148183,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -148280,8 +148527,8 @@ webhooks: - state - locked - assignee - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -148361,7 +148608,7 @@ webhooks: type: string enum: - deleted - comment: &866 + comment: &869 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -148518,7 +148765,7 @@ webhooks: pin: anyOf: - type: 'null' - - *660 + - *663 required: - url - html_url @@ -148532,8 +148779,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -149341,8 +149588,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149359,7 +149606,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -149705,8 +149952,8 @@ webhooks: - state - locked - assignee - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -149786,7 +150033,7 @@ webhooks: type: string enum: - edited - changes: &890 + changes: &893 description: The changes to the comment. type: object properties: @@ -149798,9 +150045,9 @@ webhooks: type: string required: - from - comment: *866 - enterprise: *835 - installation: *836 + comment: *869 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -150611,8 +150858,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150629,7 +150876,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -150973,8 +151220,8 @@ webhooks: - state - locked - assignee - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -151055,9 +151302,9 @@ webhooks: type: string enum: - pinned - comment: *866 - enterprise: *835 - installation: *836 + comment: *869 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -151870,8 +152117,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151888,7 +152135,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -152234,8 +152481,8 @@ webhooks: - state - locked - assignee - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -152315,9 +152562,9 @@ webhooks: type: string enum: - unpinned - comment: *866 - enterprise: *835 - installation: *836 + comment: *869 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -153130,8 +153377,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153148,7 +153395,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -153494,8 +153741,8 @@ webhooks: - state - locked - assignee - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -153578,15 +153825,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *217 + blocked_issue: *219 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *217 - blocking_issue_repo: *76 - installation: *836 - organization: *837 - repository: *838 + blocking_issue: *219 + blocking_issue_repo: *78 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -153669,15 +153916,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *217 + blocked_issue: *219 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *217 - blocking_issue_repo: *76 - installation: *836 - organization: *837 - repository: *838 + blocking_issue: *219 + blocking_issue_repo: *78 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -153759,15 +154006,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *217 - blocked_issue_repo: *76 + blocked_issue: *219 + blocked_issue_repo: *78 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *217 - installation: *836 - organization: *837 - repository: *838 + blocking_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -153850,15 +154097,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *217 - blocked_issue_repo: *76 + blocked_issue: *219 + blocked_issue_repo: *78 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *217 - installation: *836 - organization: *837 - repository: *838 + blocking_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -153938,10 +154185,10 @@ webhooks: type: string enum: - assigned - assignee: *862 - enterprise: *835 - installation: *836 - issue: &869 + assignee: *865 + enterprise: *838 + installation: *839 + issue: &872 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -154751,12 +154998,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154773,7 +155020,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -154876,8 +155123,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -154957,8 +155204,8 @@ webhooks: type: string enum: - closed - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -155773,12 +156020,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155795,7 +156042,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -156041,8 +156288,8 @@ webhooks: required: - state - closed_at - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -156121,8 +156368,8 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156928,12 +157175,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156950,7 +157197,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -157052,8 +157299,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -157132,8 +157379,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157962,12 +158209,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157984,7 +158231,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -158065,7 +158312,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &867 + milestone: &870 title: Milestone description: A collection of related issues and pull requests. type: object @@ -158208,8 +158455,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -158308,8 +158555,8 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159119,12 +159366,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159138,7 +159385,7 @@ webhooks: timeline_url: type: string format: uri - type: *367 + type: *370 title: description: Title of the issue type: string @@ -159244,9 +159491,9 @@ webhooks: - active_lock_reason - body - reactions - label: *856 - organization: *837 - repository: *838 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -159326,8 +159573,8 @@ webhooks: type: string enum: - labeled - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160136,12 +160383,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160155,7 +160402,7 @@ webhooks: timeline_url: type: string format: uri - type: *367 + type: *370 title: description: Title of the issue type: string @@ -160261,9 +160508,9 @@ webhooks: - active_lock_reason - body - reactions - label: *856 - organization: *837 - repository: *838 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -160343,8 +160590,8 @@ webhooks: type: string enum: - locked - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -161178,12 +161425,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161197,7 +161444,7 @@ webhooks: timeline_url: type: string format: uri - type: *367 + type: *370 title: description: Title of the issue type: string @@ -161280,8 +161527,8 @@ webhooks: format: uri user_view_type: type: string - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -161360,8 +161607,8 @@ webhooks: type: string enum: - milestoned - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -162189,12 +162436,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162211,7 +162458,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -162291,9 +162538,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *867 - organization: *837 - repository: *838 + milestone: *870 + organization: *840 + repository: *841 sender: *4 required: - action @@ -163180,11 +163427,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163211,7 +163458,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 + - *220 user: title: User type: @@ -163284,7 +163531,7 @@ webhooks: required: - login - id - type: *367 + type: *370 required: - id - number @@ -163780,8 +164027,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -164588,11 +164835,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164609,7 +164856,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -164620,7 +164867,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 + - *220 user: title: User type: @@ -164715,8 +164962,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -164796,9 +165043,9 @@ webhooks: type: string enum: - pinned - enterprise: *835 - installation: *836 - issue: &868 + enterprise: *838 + installation: *839 + issue: &871 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -165602,12 +165849,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165624,7 +165871,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -165726,8 +165973,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -165806,8 +166053,8 @@ webhooks: type: string enum: - reopened - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -166639,12 +166886,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166741,9 +166988,9 @@ webhooks: format: uri user_view_type: type: string - type: *367 - organization: *837 - repository: *838 + type: *370 + organization: *840 + repository: *841 sender: *4 required: - action @@ -167630,12 +167877,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167652,7 +167899,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -168249,11 +168496,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *835 - installation: *836 - issue: *868 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *871 + organization: *840 + repository: *841 sender: *4 required: - action @@ -168333,12 +168580,12 @@ webhooks: type: string enum: - typed - enterprise: *835 - installation: *836 - issue: *869 - type: *367 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *872 + type: *370 + organization: *840 + repository: *841 sender: *4 required: - action @@ -168419,7 +168666,7 @@ webhooks: type: string enum: - unassigned - assignee: &893 + assignee: &896 title: User type: - object @@ -168491,11 +168738,11 @@ webhooks: required: - login - id - enterprise: *835 - installation: *836 - issue: *869 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *872 + organization: *840 + repository: *841 sender: *4 required: - action @@ -168574,12 +168821,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *835 - installation: *836 - issue: *869 - label: *856 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *872 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -168659,8 +168906,8 @@ webhooks: type: string enum: - unlocked - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -169492,12 +169739,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169514,7 +169761,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -169594,8 +169841,8 @@ webhooks: format: uri user_view_type: type: string - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -169675,11 +169922,11 @@ webhooks: type: string enum: - unpinned - enterprise: *835 - installation: *836 - issue: *868 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *871 + organization: *840 + repository: *841 sender: *4 required: - action @@ -169758,12 +170005,12 @@ webhooks: type: string enum: - untyped - enterprise: *835 - installation: *836 - issue: *869 - type: *367 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *872 + type: *370 + organization: *840 + repository: *841 sender: *4 required: - action @@ -169843,11 +170090,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - label: *856 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -169925,11 +170172,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - label: *856 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -170039,11 +170286,11 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - label: *856 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -170125,9 +170372,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *835 - installation: *836 - marketplace_purchase: &870 + enterprise: *838 + installation: *839 + marketplace_purchase: &873 title: Marketplace Purchase type: object required: @@ -170215,8 +170462,8 @@ webhooks: type: integer unit_count: type: integer - organization: *837 - previous_marketplace_purchase: &871 + organization: *840 + previous_marketplace_purchase: &874 title: Marketplace Purchase type: object properties: @@ -170300,7 +170547,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *838 + repository: *841 sender: *4 required: - action @@ -170380,10 +170627,10 @@ webhooks: - changed effective_date: type: string - enterprise: *835 - installation: *836 - marketplace_purchase: *870 - organization: *837 + enterprise: *838 + installation: *839 + marketplace_purchase: *873 + organization: *840 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -170471,7 +170718,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *838 + repository: *841 sender: *4 required: - action @@ -170553,10 +170800,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *835 - installation: *836 - marketplace_purchase: *870 - organization: *837 + enterprise: *838 + installation: *839 + marketplace_purchase: *873 + organization: *840 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -170642,7 +170889,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *838 + repository: *841 sender: *4 required: - action @@ -170723,8 +170970,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 marketplace_purchase: title: Marketplace Purchase type: object @@ -170810,9 +171057,9 @@ webhooks: type: integer unit_count: type: integer - organization: *837 - previous_marketplace_purchase: *871 - repository: *838 + organization: *840 + previous_marketplace_purchase: *874 + repository: *841 sender: *4 required: - action @@ -170892,12 +171139,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *835 - installation: *836 - marketplace_purchase: *870 - organization: *837 - previous_marketplace_purchase: *871 - repository: *838 + enterprise: *838 + installation: *839 + marketplace_purchase: *873 + organization: *840 + previous_marketplace_purchase: *874 + repository: *841 sender: *4 required: - action @@ -170999,11 +171246,11 @@ webhooks: type: string required: - to - enterprise: *835 - installation: *836 - member: *862 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + member: *865 + organization: *840 + repository: *841 sender: *4 required: - action @@ -171105,11 +171352,11 @@ webhooks: type: - string - 'null' - enterprise: *835 - installation: *836 - member: *862 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + member: *865 + organization: *840 + repository: *841 sender: *4 required: - action @@ -171188,11 +171435,11 @@ webhooks: type: string enum: - removed - enterprise: *835 - installation: *836 - member: *862 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + member: *865 + organization: *840 + repository: *841 sender: *4 required: - action @@ -171270,11 +171517,11 @@ webhooks: type: string enum: - added - enterprise: *835 - installation: *836 - member: *862 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + member: *865 + organization: *840 + repository: *841 scope: description: The scope of the membership. Currently, can only be `team`. @@ -171352,7 +171599,7 @@ webhooks: required: - login - id - team: &872 + team: &875 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -171582,11 +171829,11 @@ webhooks: type: string enum: - removed - enterprise: *835 - installation: *836 - member: *862 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + member: *865 + organization: *840 + repository: *841 scope: description: The scope of the membership. Currently, can only be `team`. @@ -171665,7 +171912,7 @@ webhooks: required: - login - id - team: *872 + team: *875 required: - action - scope @@ -171747,8 +171994,8 @@ webhooks: type: string enum: - checks_requested - installation: *836 - merge_group: &873 + installation: *839 + merge_group: &876 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -171767,15 +172014,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *516 + head_commit: *519 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -171861,10 +172108,10 @@ webhooks: - merged - invalidated - dequeued - installation: *836 - merge_group: *873 - organization: *837 - repository: *838 + installation: *839 + merge_group: *876 + organization: *840 + repository: *841 sender: *4 required: - action @@ -171937,7 +172184,7 @@ webhooks: type: string enum: - deleted - enterprise: *835 + enterprise: *838 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -172046,12 +172293,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *836 - organization: *837 + installation: *839 + organization: *840 repository: anyOf: - type: 'null' - - *838 + - *841 sender: *4 required: - action @@ -172131,11 +172378,11 @@ webhooks: type: string enum: - closed - enterprise: *835 - installation: *836 - milestone: *867 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + milestone: *870 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172214,9 +172461,9 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - milestone: &874 + enterprise: *838 + installation: *839 + milestone: &877 title: Milestone description: A collection of related issues and pull requests. type: object @@ -172358,8 +172605,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172438,11 +172685,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - milestone: *867 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + milestone: *870 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172552,11 +172799,11 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - milestone: *867 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + milestone: *870 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172636,11 +172883,11 @@ webhooks: type: string enum: - opened - enterprise: *835 - installation: *836 - milestone: *874 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + milestone: *877 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172719,11 +172966,11 @@ webhooks: type: string enum: - blocked - blocked_user: *862 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + blocked_user: *865 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172802,11 +173049,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *862 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + blocked_user: *865 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172881,8 +173128,8 @@ webhooks: type: string enum: - created - definition: *145 - enterprise: *835 + definition: *147 + enterprise: *838 sender: *4 required: - action @@ -172962,8 +173209,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 sender: *4 required: - action @@ -173035,9 +173282,9 @@ webhooks: type: string enum: - updated - definition: *145 - enterprise: *835 - installation: *836 + definition: *147 + enterprise: *838 + installation: *839 sender: *4 required: - action @@ -173109,18 +173356,18 @@ webhooks: type: string enum: - updated - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 new_property_values: type: array description: The new custom property values. - items: *150 + items: *152 old_property_values: type: array description: The old custom property values. - items: *150 + items: *152 required: - action - organization @@ -173199,9 +173446,9 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - membership: &875 + enterprise: *838 + installation: *839 + membership: &878 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -173311,8 +173558,8 @@ webhooks: - role - organization_url - user - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -173390,11 +173637,11 @@ webhooks: type: string enum: - member_added - enterprise: *835 - installation: *836 - membership: *875 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + membership: *878 + organization: *840 + repository: *841 sender: *4 required: - action @@ -173473,8 +173720,8 @@ webhooks: type: string enum: - member_invited - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -173596,10 +173843,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 - user: *862 + user: *865 required: - action - invitation @@ -173677,11 +173924,11 @@ webhooks: type: string enum: - member_removed - enterprise: *835 - installation: *836 - membership: *875 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + membership: *878 + organization: *840 + repository: *841 sender: *4 required: - action @@ -173768,11 +174015,11 @@ webhooks: properties: from: type: string - enterprise: *835 - installation: *836 - membership: *875 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + membership: *878 + organization: *840 + repository: *841 sender: *4 required: - action @@ -173850,9 +174097,9 @@ webhooks: type: string enum: - published - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 package: description: Information about the package. type: object @@ -174375,7 +174622,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &876 + items: &879 title: Ruby Gems metadata type: object properties: @@ -174472,7 +174719,7 @@ webhooks: - owner - package_version - registry - repository: *838 + repository: *841 sender: *4 required: - action @@ -174549,9 +174796,9 @@ webhooks: type: string enum: - updated - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 package: description: Information about the package. type: object @@ -174913,7 +175160,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *876 + items: *879 source_url: type: string format: uri @@ -174984,7 +175231,7 @@ webhooks: - owner - package_version - registry - repository: *838 + repository: *841 sender: *4 required: - action @@ -175164,12 +175411,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *835 + enterprise: *838 id: type: integer - installation: *836 - organization: *837 - repository: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - id @@ -175246,7 +175493,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &877 + personal_access_token_request: &880 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -175396,10 +175643,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *835 - organization: *837 + enterprise: *838 + organization: *840 sender: *4 - installation: *836 + installation: *839 required: - action - personal_access_token_request @@ -175476,11 +175723,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *877 - enterprise: *835 - organization: *837 + personal_access_token_request: *880 + enterprise: *838 + organization: *840 sender: *4 - installation: *836 + installation: *839 required: - action - personal_access_token_request @@ -175556,11 +175803,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *877 - enterprise: *835 - organization: *837 + personal_access_token_request: *880 + enterprise: *838 + organization: *840 sender: *4 - installation: *836 + installation: *839 required: - action - personal_access_token_request @@ -175635,11 +175882,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *877 - organization: *837 - enterprise: *835 + personal_access_token_request: *880 + organization: *840 + enterprise: *838 sender: *4 - installation: *836 + installation: *839 required: - action - personal_access_token_request @@ -175744,7 +175991,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *878 + last_response: *881 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -175776,8 +176023,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 zen: description: Random string of GitHub zen. @@ -176022,10 +176269,10 @@ webhooks: - from required: - note - enterprise: *835 - installation: *836 - organization: *837 - project_card: &879 + enterprise: *838 + installation: *839 + organization: *840 + project_card: &882 title: Project Card type: object properties: @@ -176148,7 +176395,7 @@ webhooks: - creator - created_at - updated_at - repository: *838 + repository: *841 sender: *4 required: - action @@ -176229,11 +176476,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - project_card: *879 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project_card: *882 + repository: *841 sender: *4 required: - action @@ -176313,9 +176560,9 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 project_card: title: Project Card type: object @@ -176445,7 +176692,7 @@ webhooks: repository: anyOf: - type: 'null' - - *838 + - *841 sender: *4 required: - action @@ -176539,11 +176786,11 @@ webhooks: - from required: - note - enterprise: *835 - installation: *836 - organization: *837 - project_card: *879 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project_card: *882 + repository: *841 sender: *4 required: - action @@ -176637,9 +176884,9 @@ webhooks: - from required: - column_id - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 project_card: allOf: - title: Project Card @@ -176836,7 +177083,7 @@ webhooks: type: string required: - after_id - repository: *838 + repository: *841 sender: *4 required: - action @@ -176916,10 +177163,10 @@ webhooks: type: string enum: - closed - enterprise: *835 - installation: *836 - organization: *837 - project: &881 + enterprise: *838 + installation: *839 + organization: *840 + project: &884 title: Project type: object properties: @@ -177046,7 +177293,7 @@ webhooks: - creator - created_at - updated_at - repository: *838 + repository: *841 sender: *4 required: - action @@ -177126,10 +177373,10 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - project_column: &880 + enterprise: *838 + installation: *839 + organization: *840 + project_column: &883 title: Project Column type: object properties: @@ -177169,7 +177416,7 @@ webhooks: - name - created_at - updated_at - repository: *838 + repository: *841 sender: *4 required: - action @@ -177248,14 +177495,14 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - project_column: *880 + enterprise: *838 + installation: *839 + organization: *840 + project_column: *883 repository: anyOf: - type: 'null' - - *838 + - *841 sender: *4 required: - action @@ -177344,11 +177591,11 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - organization: *837 - project_column: *880 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project_column: *883 + repository: *841 sender: *4 required: - action @@ -177428,11 +177675,11 @@ webhooks: type: string enum: - moved - enterprise: *835 - installation: *836 - organization: *837 - project_column: *880 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project_column: *883 + repository: *841 sender: *4 required: - action @@ -177512,11 +177759,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - project: *881 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project: *884 + repository: *841 sender: *4 required: - action @@ -177596,14 +177843,14 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - project: *881 + enterprise: *838 + installation: *839 + organization: *840 + project: *884 repository: anyOf: - type: 'null' - - *838 + - *841 sender: *4 required: - action @@ -177704,11 +177951,11 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - organization: *837 - project: *881 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project: *884 + repository: *841 sender: *4 required: - action @@ -177787,11 +178034,11 @@ webhooks: type: string enum: - reopened - enterprise: *835 - installation: *836 - organization: *837 - project: *881 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project: *884 + repository: *841 sender: *4 required: - action @@ -177872,9 +178119,9 @@ webhooks: type: string enum: - closed - installation: *836 - organization: *837 - projects_v2: *398 + installation: *839 + organization: *840 + projects_v2: *401 sender: *4 required: - action @@ -177955,9 +178202,9 @@ webhooks: type: string enum: - created - installation: *836 - organization: *837 - projects_v2: *398 + installation: *839 + organization: *840 + projects_v2: *401 sender: *4 required: - action @@ -178038,9 +178285,9 @@ webhooks: type: string enum: - deleted - installation: *836 - organization: *837 - projects_v2: *398 + installation: *839 + organization: *840 + projects_v2: *401 sender: *4 required: - action @@ -178161,9 +178408,9 @@ webhooks: type: string to: type: string - installation: *836 - organization: *837 - projects_v2: *398 + installation: *839 + organization: *840 + projects_v2: *401 sender: *4 required: - action @@ -178246,7 +178493,7 @@ webhooks: type: string enum: - archived - changes: &885 + changes: &888 type: object properties: archived_at: @@ -178262,9 +178509,9 @@ webhooks: - string - 'null' format: date-time - installation: *836 - organization: *837 - projects_v2_item: &882 + installation: *839 + organization: *840 + projects_v2_item: &885 title: Projects v2 Item description: An item belonging to a project type: object @@ -178282,7 +178529,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *404 + content_type: *407 creator: *4 created_at: type: string @@ -178404,9 +178651,9 @@ webhooks: - 'null' to: type: string - installation: *836 - organization: *837 - projects_v2_item: *882 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178488,9 +178735,9 @@ webhooks: type: string enum: - created - installation: *836 - organization: *837 - projects_v2_item: *882 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178571,9 +178818,9 @@ webhooks: type: string enum: - deleted - installation: *836 - organization: *837 - projects_v2_item: *882 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178678,7 +178925,7 @@ webhooks: oneOf: - type: string - type: integer - - &883 + - &886 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -178702,7 +178949,7 @@ webhooks: required: - id - name - - &884 + - &887 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -178742,8 +178989,8 @@ webhooks: oneOf: - type: string - type: integer - - *883 - - *884 + - *886 + - *887 type: - 'null' - string @@ -178766,9 +179013,9 @@ webhooks: - 'null' required: - body - installation: *836 - organization: *837 - projects_v2_item: *882 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178865,9 +179112,9 @@ webhooks: type: - string - 'null' - installation: *836 - organization: *837 - projects_v2_item: *882 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178950,10 +179197,10 @@ webhooks: type: string enum: - restored - changes: *885 - installation: *836 - organization: *837 - projects_v2_item: *882 + changes: *888 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -179035,9 +179282,9 @@ webhooks: type: string enum: - reopened - installation: *836 - organization: *837 - projects_v2: *398 + installation: *839 + organization: *840 + projects_v2: *401 sender: *4 required: - action @@ -179118,9 +179365,9 @@ webhooks: type: string enum: - created - installation: *836 - organization: *837 - projects_v2_status_update: *886 + installation: *839 + organization: *840 + projects_v2_status_update: *889 sender: *4 required: - action @@ -179201,9 +179448,9 @@ webhooks: type: string enum: - deleted - installation: *836 - organization: *837 - projects_v2_status_update: *886 + installation: *839 + organization: *840 + projects_v2_status_update: *889 sender: *4 required: - action @@ -179349,9 +179596,9 @@ webhooks: - string - 'null' format: date - installation: *836 - organization: *837 - projects_v2_status_update: *886 + installation: *839 + organization: *840 + projects_v2_status_update: *889 sender: *4 required: - action @@ -179422,10 +179669,10 @@ webhooks: title: public event type: object properties: - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - repository @@ -179502,13 +179749,13 @@ webhooks: type: string enum: - assigned - assignee: *862 - enterprise: *835 - installation: *836 - number: &887 + assignee: *865 + enterprise: *838 + installation: *839 + number: &890 description: The pull request number. type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -181887,7 +182134,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -181969,11 +182216,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -184345,7 +184592,7 @@ webhooks: - draft reason: type: string - repository: *838 + repository: *841 sender: *4 required: - action @@ -184427,11 +184674,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -186803,7 +187050,7 @@ webhooks: - draft reason: type: string - repository: *838 + repository: *841 sender: *4 required: - action @@ -186885,13 +187132,13 @@ webhooks: type: string enum: - closed - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: &888 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: &891 allOf: - - *683 + - *686 - type: object properties: allow_auto_merge: @@ -186953,7 +187200,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *838 + repository: *841 sender: *4 required: - action @@ -187034,12 +187281,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: *888 - repository: *838 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: *891 + repository: *841 sender: *4 required: - action @@ -187119,11 +187366,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *835 - milestone: *401 - number: *887 - organization: *837 - pull_request: &889 + enterprise: *838 + milestone: *404 + number: *890 + organization: *840 + pull_request: &892 title: Pull Request type: object properties: @@ -189480,7 +189727,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -189559,11 +189806,11 @@ webhooks: type: string enum: - dequeued - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -191939,7 +192186,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *838 + repository: *841 sender: *4 required: - action @@ -192063,12 +192310,12 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: *888 - repository: *838 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: *891 + repository: *841 sender: *4 required: - action @@ -192148,11 +192395,11 @@ webhooks: type: string enum: - enqueued - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -194513,7 +194760,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -194593,11 +194840,11 @@ webhooks: type: string enum: - labeled - enterprise: *835 - installation: *836 - label: *856 - number: *887 - organization: *837 + enterprise: *838 + installation: *839 + label: *859 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -196975,7 +197222,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -197056,10 +197303,10 @@ webhooks: type: string enum: - locked - enterprise: *835 - installation: *836 - number: *887 - organization: *837 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -199435,7 +199682,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -199515,12 +199762,12 @@ webhooks: type: string enum: - milestoned - enterprise: *835 - milestone: *401 - number: *887 - organization: *837 - pull_request: *889 - repository: *838 + enterprise: *838 + milestone: *404 + number: *890 + organization: *840 + pull_request: *892 + repository: *841 sender: *4 required: - action @@ -199599,12 +199846,12 @@ webhooks: type: string enum: - opened - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: *888 - repository: *838 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: *891 + repository: *841 sender: *4 required: - action @@ -199685,12 +199932,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: *888 - repository: *838 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: *891 + repository: *841 sender: *4 required: - action @@ -199770,12 +200017,12 @@ webhooks: type: string enum: - reopened - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: *888 - repository: *838 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: *891 + repository: *841 sender: *4 required: - action @@ -200150,9 +200397,9 @@ webhooks: - start_side - side - reactions - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: type: object properties: @@ -202412,7 +202659,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *838 + repository: *841 sender: *4 required: - action @@ -202492,7 +202739,7 @@ webhooks: type: string enum: - deleted - comment: &891 + comment: &894 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. @@ -202785,9 +203032,9 @@ webhooks: - start_side - side - reactions - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: type: object properties: @@ -205035,7 +205282,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *838 + repository: *841 sender: *4 required: - action @@ -205115,11 +205362,11 @@ webhooks: type: string enum: - edited - changes: *890 - comment: *891 - enterprise: *835 - installation: *836 - organization: *837 + changes: *893 + comment: *894 + enterprise: *838 + installation: *839 + organization: *840 pull_request: type: object properties: @@ -207370,7 +207617,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *838 + repository: *841 sender: *4 required: - action @@ -207451,9 +207698,9 @@ webhooks: type: string enum: - dismissed - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: title: Simple Pull Request type: object @@ -209716,7 +209963,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *838 + repository: *841 review: description: The review that was affected. type: object @@ -209967,9 +210214,9 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: title: Simple Pull Request type: object @@ -212083,8 +212330,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *838 - review: &892 + repository: *841 + review: &895 description: The review that was affected. type: object properties: @@ -212322,12 +212569,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: description: The pull request number. type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -214704,7 +214951,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 requested_reviewer: title: User type: @@ -214790,12 +215037,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: description: The pull request number. type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -217179,7 +217426,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 requested_team: title: Team description: Groups of organization members that gives permissions @@ -217374,12 +217621,12 @@ webhooks: type: string enum: - review_requested - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: description: The pull request number. type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -219758,7 +220005,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 requested_reviewer: title: User type: @@ -219845,12 +220092,12 @@ webhooks: type: string enum: - review_requested - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: description: The pull request number. type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -222220,7 +222467,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 requested_team: title: Team description: Groups of organization members that gives permissions @@ -222404,9 +222651,9 @@ webhooks: type: string enum: - submitted - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: title: Simple Pull Request type: object @@ -224672,8 +224919,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *838 - review: *892 + repository: *841 + review: *895 sender: *4 required: - action @@ -224753,9 +225000,9 @@ webhooks: type: string enum: - resolved - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: title: Simple Pull Request type: object @@ -226916,7 +227163,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *838 + repository: *841 sender: *4 thread: type: object @@ -227313,9 +227560,9 @@ webhooks: type: string enum: - unresolved - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: title: Simple Pull Request type: object @@ -229459,7 +229706,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *838 + repository: *841 sender: *4 thread: type: object @@ -229858,10 +230105,10 @@ webhooks: type: string before: type: string - enterprise: *835 - installation: *836 - number: *887 - organization: *837 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -232226,7 +232473,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -232308,11 +232555,11 @@ webhooks: type: string enum: - unassigned - assignee: *893 - enterprise: *835 - installation: *836 - number: *887 - organization: *837 + assignee: *896 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -234692,7 +234939,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -234771,11 +235018,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *835 - installation: *836 - label: *856 - number: *887 - organization: *837 + enterprise: *838 + installation: *839 + label: *859 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -237144,7 +237391,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -237225,10 +237472,10 @@ webhooks: type: string enum: - unlocked - enterprise: *835 - installation: *836 - number: *887 - organization: *837 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -239587,7 +239834,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -239790,7 +240037,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *835 + enterprise: *838 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -239885,8 +240132,8 @@ webhooks: - url - author - committer - installation: *836 - organization: *837 + installation: *839 + organization: *840 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -240489,9 +240736,9 @@ webhooks: type: string enum: - published - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 registry_package: type: object properties: @@ -240968,7 +241215,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *876 + items: *879 summary: type: string tag_name: @@ -241024,7 +241271,7 @@ webhooks: - owner - package_version - registry - repository: *838 + repository: *841 sender: *4 required: - action @@ -241102,9 +241349,9 @@ webhooks: type: string enum: - updated - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 registry_package: type: object properties: @@ -241416,7 +241663,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *876 + items: *879 summary: type: string tag_name: @@ -241466,7 +241713,7 @@ webhooks: - owner - package_version - registry - repository: *838 + repository: *841 sender: *4 required: - action @@ -241543,10 +241790,10 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - release: &894 + enterprise: *838 + installation: *839 + organization: *840 + release: &897 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -241877,7 +242124,7 @@ webhooks: - updated_at - zipball_url - body - repository: *838 + repository: *841 sender: *4 required: - action @@ -241954,11 +242201,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - release: *894 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + release: *897 + repository: *841 sender: *4 required: - action @@ -242075,11 +242322,11 @@ webhooks: type: boolean required: - to - enterprise: *835 - installation: *836 - organization: *837 - release: *894 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + release: *897 + repository: *841 sender: *4 required: - action @@ -242157,9 +242404,9 @@ webhooks: type: string enum: - prereleased - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -242495,7 +242742,7 @@ webhooks: - string - 'null' format: uri - repository: *838 + repository: *841 sender: *4 required: - action @@ -242571,10 +242818,10 @@ webhooks: type: string enum: - published - enterprise: *835 - installation: *836 - organization: *837 - release: &895 + enterprise: *838 + installation: *839 + organization: *840 + release: &898 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -242907,7 +243154,7 @@ webhooks: - string - 'null' format: uri - repository: *838 + repository: *841 sender: *4 required: - action @@ -242983,11 +243230,11 @@ webhooks: type: string enum: - released - enterprise: *835 - installation: *836 - organization: *837 - release: *894 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + release: *897 + repository: *841 sender: *4 required: - action @@ -243063,11 +243310,11 @@ webhooks: type: string enum: - unpublished - enterprise: *835 - installation: *836 - organization: *837 - release: *895 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + release: *898 + repository: *841 sender: *4 required: - action @@ -243143,11 +243390,11 @@ webhooks: type: string enum: - published - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - repository_advisory: *735 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + repository_advisory: *738 sender: *4 required: - action @@ -243223,11 +243470,11 @@ webhooks: type: string enum: - reported - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - repository_advisory: *735 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + repository_advisory: *738 sender: *4 required: - action @@ -243303,10 +243550,10 @@ webhooks: type: string enum: - archived - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243383,10 +243630,10 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243464,10 +243711,10 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243552,10 +243799,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243670,10 +243917,10 @@ webhooks: - 'null' items: type: string - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243745,10 +243992,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 status: type: string @@ -243829,10 +244076,10 @@ webhooks: type: string enum: - privatized - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243909,10 +244156,10 @@ webhooks: type: string enum: - publicized - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244006,10 +244253,10 @@ webhooks: - name required: - repository - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244089,11 +244336,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - repository_ruleset: *185 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + repository_ruleset: *187 sender: *4 required: - action @@ -244171,11 +244418,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - repository_ruleset: *185 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + repository_ruleset: *187 sender: *4 required: - action @@ -244253,11 +244500,11 @@ webhooks: type: string enum: - edited - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - repository_ruleset: *185 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + repository_ruleset: *187 changes: type: object properties: @@ -244276,16 +244523,16 @@ webhooks: properties: added: type: array - items: *156 + items: *158 deleted: type: array - items: *156 + items: *158 updated: type: array items: type: object properties: - condition: *156 + condition: *158 changes: type: object properties: @@ -244318,16 +244565,16 @@ webhooks: properties: added: type: array - items: *703 + items: *706 deleted: type: array - items: *703 + items: *706 updated: type: array items: type: object properties: - rule: *703 + rule: *706 changes: type: object properties: @@ -244564,10 +244811,10 @@ webhooks: - from required: - owner - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244645,10 +244892,10 @@ webhooks: type: string enum: - unarchived - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244726,7 +244973,7 @@ webhooks: type: string enum: - create - alert: &896 + alert: &899 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -244851,10 +245098,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245064,10 +245311,10 @@ webhooks: type: string enum: - dismissed - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245145,11 +245392,11 @@ webhooks: type: string enum: - reopen - alert: *896 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *899 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245351,10 +245598,10 @@ webhooks: enum: - fixed - open - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245432,17 +245679,17 @@ webhooks: type: string enum: - assigned - alert: &897 + alert: &900 type: object properties: - number: *124 - created_at: *131 + number: *126 + created_at: *133 updated_at: anyOf: - type: 'null' - - *132 - url: *129 - html_url: *130 + - *134 + url: *131 + html_url: *132 locations_url: type: string format: uri @@ -245547,10 +245794,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245628,11 +245875,11 @@ webhooks: type: string enum: - created - alert: *897 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *900 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245713,11 +245960,11 @@ webhooks: type: string enum: - created - alert: *897 - installation: *836 - location: *898 - organization: *837 - repository: *838 + alert: *900 + installation: *839 + location: *901 + organization: *840 + repository: *841 sender: *4 required: - location @@ -245955,11 +246202,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *897 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *900 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -246037,11 +246284,11 @@ webhooks: type: string enum: - reopened - alert: *897 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *900 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -246119,11 +246366,11 @@ webhooks: type: string enum: - resolved - alert: *897 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *900 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -246201,12 +246448,12 @@ webhooks: type: string enum: - unassigned - alert: *897 + alert: *900 assignee: *4 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -246284,11 +246531,11 @@ webhooks: type: string enum: - validated - alert: *897 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *900 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -246418,10 +246665,10 @@ webhooks: - organization - enterprise - - repository: *838 - enterprise: *835 - installation: *836 - organization: *837 + repository: *841 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 required: - action @@ -246499,11 +246746,11 @@ webhooks: type: string enum: - published - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - security_advisory: &899 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + security_advisory: &902 description: The details of the security advisory, including summary, description, and severity. type: object @@ -246520,7 +246767,7 @@ webhooks: required: - vector_string - score - cvss_severities: *126 + cvss_severities: *128 cwes: type: array items: @@ -246689,11 +246936,11 @@ webhooks: type: string enum: - updated - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - security_advisory: *899 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + security_advisory: *902 sender: *4 required: - action @@ -246766,10 +247013,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -246787,7 +247034,7 @@ webhooks: required: - vector_string - score - cvss_severities: *126 + cvss_severities: *128 cwes: type: array items: @@ -246955,11 +247202,11 @@ webhooks: from: type: object properties: - security_and_analysis: *412 - enterprise: *835 - installation: *836 - organization: *837 - repository: *454 + security_and_analysis: *415 + enterprise: *838 + installation: *839 + organization: *840 + repository: *457 sender: *4 required: - changes @@ -247037,12 +247284,12 @@ webhooks: type: string enum: - cancelled - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: &900 + sponsorship: &903 type: object properties: created_at: @@ -247347,12 +247594,12 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: *900 + sponsorship: *903 required: - action - sponsorship @@ -247440,12 +247687,12 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: *900 + sponsorship: *903 required: - action - changes @@ -247522,17 +247769,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &901 + effective_date: &904 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: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: *900 + sponsorship: *903 required: - action - sponsorship @@ -247606,7 +247853,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &902 + changes: &905 type: object properties: tier: @@ -247650,13 +247897,13 @@ webhooks: - from required: - tier - effective_date: *901 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + effective_date: *904 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: *900 + sponsorship: *903 required: - action - changes @@ -247733,13 +247980,13 @@ webhooks: type: string enum: - tier_changed - changes: *902 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + changes: *905 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: *900 + sponsorship: *903 required: - action - changes @@ -247813,10 +248060,10 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -247900,10 +248147,10 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -248337,15 +248584,15 @@ webhooks: type: - string - 'null' - enterprise: *835 + enterprise: *838 id: description: The unique identifier of the status. type: integer - installation: *836 + installation: *839 name: type: string - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 sha: description: The Commit SHA. @@ -248455,15 +248702,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *217 - parent_issue_repo: *76 + parent_issue: *219 + parent_issue_repo: *78 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *217 - installation: *836 - organization: *837 - repository: *838 + sub_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -248547,15 +248794,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *217 - parent_issue_repo: *76 + parent_issue: *219 + parent_issue_repo: *78 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *217 - installation: *836 - organization: *837 - repository: *838 + sub_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -248639,15 +248886,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *217 - sub_issue_repo: *76 + sub_issue: *219 + sub_issue_repo: *78 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *217 - installation: *836 - organization: *837 - repository: *838 + parent_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -248731,15 +248978,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *217 - sub_issue_repo: *76 + sub_issue: *219 + sub_issue_repo: *78 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *217 - installation: *836 - organization: *837 - repository: *838 + parent_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -248816,12 +249063,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - team: &903 + team: &906 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -249051,9 +249298,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 repository: title: Repository description: A git repository @@ -249523,7 +249770,7 @@ webhooks: - topics - visibility sender: *4 - team: *903 + team: *906 required: - action - team @@ -249599,9 +249846,9 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 repository: title: Repository description: A git repository @@ -250071,7 +250318,7 @@ webhooks: - topics - visibility sender: *4 - team: *903 + team: *906 required: - action - team @@ -250148,9 +250395,9 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 repository: title: Repository description: A git repository @@ -250620,7 +250867,7 @@ webhooks: - topics - visibility sender: *4 - team: *903 + team: *906 required: - action - team @@ -250764,9 +251011,9 @@ webhooks: - from required: - permissions - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 repository: title: Repository description: A git repository @@ -251236,7 +251483,7 @@ webhooks: - topics - visibility sender: *4 - team: *903 + team: *906 required: - action - changes @@ -251314,9 +251561,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 repository: title: Repository description: A git repository @@ -251786,7 +252033,7 @@ webhooks: - topics - visibility sender: *4 - team: *903 + team: *906 required: - action - team @@ -251862,10 +252109,10 @@ webhooks: type: string enum: - started - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -251938,17 +252185,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *835 + enterprise: *838 inputs: type: - object - 'null' additionalProperties: true - installation: *836 - organization: *837 + installation: *839 + organization: *840 ref: type: string - repository: *838 + repository: *841 sender: *4 workflow: type: string @@ -252030,10 +252277,10 @@ webhooks: type: string enum: - completed - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 workflow_job: allOf: @@ -252289,7 +252536,7 @@ webhooks: type: string required: - conclusion - deployment: *588 + deployment: *591 required: - action - repository @@ -252368,10 +252615,10 @@ webhooks: type: string enum: - in_progress - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 workflow_job: allOf: @@ -252653,7 +252900,7 @@ webhooks: required: - status - steps - deployment: *588 + deployment: *591 required: - action - repository @@ -252732,10 +252979,10 @@ webhooks: type: string enum: - queued - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 workflow_job: type: object @@ -252881,7 +253128,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *588 + deployment: *591 required: - action - repository @@ -252960,10 +253207,10 @@ webhooks: type: string enum: - waiting - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 workflow_job: type: object @@ -253110,7 +253357,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *588 + deployment: *591 required: - action - repository @@ -253190,12 +253437,12 @@ webhooks: type: string enum: - completed - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - workflow: *852 + workflow: *855 workflow_run: title: Workflow Run type: object @@ -254214,12 +254461,12 @@ webhooks: type: string enum: - in_progress - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - workflow: *852 + workflow: *855 workflow_run: title: Workflow Run type: object @@ -255223,12 +255470,12 @@ webhooks: type: string enum: - requested - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - workflow: *852 + workflow: *855 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json index dfcb008f4..54b83109c 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -22878,6 +22878,349 @@ } } }, + "/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" + ], + "examples": [ + "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" + ], + "examples": [ + "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", @@ -135178,6 +135521,344 @@ } } }, + "/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" + ], + "examples": [ + "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" + ], + "examples": [ + "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-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml index ec3277be6..a4685d040 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml +++ b/descriptions-next/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 - - &106 + - &108 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 - - &107 + - &109 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 - - &108 + - &110 name: direction description: The direction to sort the results by. in: query @@ -672,7 +672,7 @@ paths: - vulnerable_version_range - first_patched_version - vulnerable_functions - cvss_severities: &126 + cvss_severities: &128 type: - object - 'null' @@ -719,7 +719,7 @@ paths: required: - vector_string - score - epss: &127 + epss: &129 type: - object - 'null' @@ -882,7 +882,7 @@ paths: - subscriptions_url - type - url - type: &433 + type: &436 type: string description: The type of credit the user is receiving. enum: @@ -1014,7 +1014,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &252 + schema: &254 title: Validation Error Simple description: Validation Error Simple type: object @@ -1047,7 +1047,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: - - &737 + - &740 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1632,7 +1632,7 @@ paths: schema: type: integer default: 30 - - &341 + - &344 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 @@ -1648,7 +1648,7 @@ paths: application/json: schema: type: array - items: &342 + items: &345 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1744,7 +1744,7 @@ paths: - installation_id - repository_id examples: - default: &343 + default: &346 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1776,7 +1776,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &747 + schema: &750 title: Scim Error description: Scim Error type: object @@ -1807,7 +1807,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &251 + schema: &253 title: Validation Error description: Validation Error type: object @@ -1879,7 +1879,7 @@ paths: description: Response content: application/json: - schema: &344 + schema: &347 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -2014,7 +2014,7 @@ paths: - request - response examples: - default: &345 + default: &348 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2218,7 +2218,7 @@ paths: parameters: - *17 - *19 - - &222 + - &224 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) @@ -2864,7 +2864,7 @@ paths: application/json: schema: *20 examples: - default: &86 + default: &88 value: id: 1 account: @@ -3015,7 +3015,7 @@ paths: - selected repositories: type: array - items: &76 + items: &78 title: Repository description: A repository on GitHub. type: object @@ -3042,7 +3042,7 @@ paths: license: anyOf: - type: 'null' - - &219 + - &221 title: License Simple description: License Simple type: object @@ -7949,7 +7949,7 @@ paths: description: Response content: application/json: - schema: &253 + schema: &255 type: object properties: total_active_caches_count: @@ -7964,7 +7964,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &254 + default: &256 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -8179,7 +8179,7 @@ paths: - public_ip_enabled - platform examples: - default: &255 + default: &257 value: total_count: 2 runners: @@ -8483,7 +8483,7 @@ paths: application/json: schema: *47 examples: - default: &256 + default: &258 value: id: 1 platform: linux-x64 @@ -8628,7 +8628,7 @@ paths: application/json: schema: *50 examples: - default: &257 + default: &259 value: version: 1.0.0 size_gb: 75 @@ -8796,7 +8796,7 @@ paths: description: Response content: application/json: - schema: &258 + schema: &260 type: object properties: public_ips: @@ -8823,7 +8823,7 @@ paths: required: - public_ips examples: - default: &259 + default: &261 value: public_ips: current_usage: 17 @@ -8863,7 +8863,7 @@ paths: type: array items: *54 examples: - default: &260 + default: &262 value: id: 4-core cpu_cores: 4 @@ -9092,6 +9092,148 @@ 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: + - *39 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &57 + 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 + examples: + - 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': *27 + 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: + - *39 + requestBody: + required: true + content: + application/json: + schema: &263 + 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: &58 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *57 + examples: + default: *58 + '400': + description: Invalid input + '403': *27 + '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: + - *39 + - 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': *27 + '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 @@ -9115,7 +9257,7 @@ paths: schema: type: object properties: - enabled_organizations: &57 + enabled_organizations: &59 type: string description: The policy that controls the organizations in the enterprise that are allowed to run GitHub Actions. @@ -9128,7 +9270,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: &58 + allowed_actions: &60 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -9136,12 +9278,12 @@ paths: - all - local_only - selected - selected_actions_url: &263 + selected_actions_url: &266 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: &59 + sha_pinning_required: &61 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -9183,9 +9325,9 @@ paths: schema: type: object properties: - enabled_organizations: *57 - allowed_actions: *58 - sha_pinning_required: *59 + enabled_organizations: *59 + allowed_actions: *60 + sha_pinning_required: *61 required: - enabled_organizations examples: @@ -9216,7 +9358,7 @@ paths: description: Successfully retrieved the artifact and log retention settings content: application/json: - schema: &265 + schema: &268 type: object properties: days: @@ -9234,7 +9376,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &748 + '401': &751 description: Authorization failure '404': *6 x-github: @@ -9262,7 +9404,7 @@ paths: required: true content: application/json: - schema: &266 + schema: &269 type: object properties: days: @@ -9297,7 +9439,7 @@ paths: description: Response content: application/json: - schema: &60 + schema: &62 type: object properties: approval_policy: @@ -9311,7 +9453,7 @@ paths: required: - approval_policy examples: - default: &267 + default: &270 value: approval_policy: first_time_contributors '404': *6 @@ -9340,7 +9482,7 @@ paths: required: true content: application/json: - schema: *60 + schema: *62 examples: default: summary: Set approval policy to first time contributors @@ -9369,7 +9511,7 @@ paths: description: Response content: application/json: - schema: &268 + schema: &271 type: object required: - run_workflows_from_fork_pull_requests @@ -9395,7 +9537,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &61 + default: &63 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -9423,7 +9565,7 @@ paths: required: true content: application/json: - schema: &269 + schema: &272 type: object required: - run_workflows_from_fork_pull_requests @@ -9446,7 +9588,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *61 + default: *63 responses: '204': description: Empty response for successful settings update @@ -9486,7 +9628,7 @@ paths: type: number organizations: type: array - items: &71 + items: &73 title: Organization Simple description: A GitHub organization. type: object @@ -9561,7 +9703,7 @@ paths: - total_count - organizations examples: - default: &72 + default: &74 value: total_count: 1 organizations: @@ -9640,7 +9782,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *39 - - &62 + - &64 name: org_id description: The unique identifier of the organization. in: path @@ -9669,7 +9811,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-organization-for-github-actions-in-an-enterprise parameters: - *39 - - *62 + - *64 responses: '204': description: Response @@ -9698,7 +9840,7 @@ paths: description: Response content: application/json: - schema: &63 + schema: &65 type: object properties: github_owned_allowed: @@ -9719,7 +9861,7 @@ paths: items: type: string examples: - default: &64 + default: &66 value: github_owned_allowed: true verified_allowed: false @@ -9752,9 +9894,9 @@ paths: required: true content: application/json: - schema: *63 + schema: *65 examples: - selected_actions: *64 + selected_actions: *66 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -9859,17 +10001,17 @@ paths: description: Success response content: application/json: - schema: &272 + schema: &275 type: object properties: - default_workflow_permissions: &65 + default_workflow_permissions: &67 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &66 + can_approve_pull_request_reviews: &68 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -9877,7 +10019,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &67 + default: &69 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -9907,13 +10049,13 @@ paths: required: true content: application/json: - schema: &273 + schema: &276 type: object properties: - default_workflow_permissions: *65 - can_approve_pull_request_reviews: *66 + default_workflow_permissions: *67 + can_approve_pull_request_reviews: *68 examples: - default: *67 + default: *69 responses: '204': description: Success response @@ -9958,7 +10100,7 @@ paths: type: number runner_groups: type: array - items: &68 + items: &70 type: object properties: id: @@ -10139,9 +10281,9 @@ paths: description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: &69 + default: &71 value: id: 2 name: octo-runner-group @@ -10176,7 +10318,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: - *39 - - &70 + - &72 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -10188,9 +10330,9 @@ paths: description: Response content: application/json: - schema: *68 + schema: *70 examples: - default: *69 + default: *71 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -10210,7 +10352,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: - *39 - - *70 + - *72 requestBody: required: false content: @@ -10264,7 +10406,7 @@ paths: description: Response content: application/json: - schema: *68 + schema: *70 examples: default: value: @@ -10300,7 +10442,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: - *39 - - *70 + - *72 responses: '204': description: Response @@ -10324,7 +10466,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: - *39 - - *70 + - *72 - *17 - *19 responses: @@ -10339,12 +10481,12 @@ paths: type: number organizations: type: array - items: *71 + items: *73 required: - total_count - organizations examples: - default: *72 + default: *74 x-github: enabledForGitHubApps: false githubCloudOnly: true @@ -10364,7 +10506,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: - *39 - - *70 + - *72 requestBody: required: true content: @@ -10410,8 +10552,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: - *39 - - *70 - - *62 + - *72 + - *64 responses: '204': description: Response @@ -10434,8 +10576,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: - *39 - - *70 - - *62 + - *72 + - *64 responses: '204': description: Response @@ -10459,7 +10601,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: - *39 - - *70 + - *72 - *17 - *19 responses: @@ -10474,7 +10616,7 @@ paths: type: number runners: type: array - items: &74 + items: &76 title: Self hosted runners description: A self hosted runner type: object @@ -10508,7 +10650,7 @@ paths: type: boolean labels: type: array - items: &78 + items: &80 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -10541,7 +10683,7 @@ paths: - total_count - runners examples: - default: &75 + default: &77 value: total_count: 2 runners: @@ -10601,7 +10743,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: - *39 - - *70 + - *72 requestBody: required: true content: @@ -10646,8 +10788,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: - *39 - - *70 - - &73 + - *72 + - &75 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -10676,8 +10818,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: - *39 - - *70 - - *73 + - *72 + - *75 responses: '204': description: Response @@ -10720,9 +10862,9 @@ paths: type: number runners: type: array - items: *74 + items: *76 examples: - default: *75 + default: *77 headers: Link: *45 x-github: @@ -10752,7 +10894,7 @@ paths: application/json: schema: type: array - items: &277 + items: &280 title: Runner Application description: Runner Application type: object @@ -10777,7 +10919,7 @@ paths: - download_url - filename examples: - default: &278 + default: &281 value: - os: osx architecture: x64 @@ -10861,7 +11003,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &279 + '201': &282 description: Response content: application/json: @@ -10871,7 +11013,7 @@ paths: - runner - encoded_jit_config properties: - runner: *74 + runner: *76 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -10900,7 +11042,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': &117 + '409': &119 description: Conflict content: application/json: @@ -10938,7 +11080,7 @@ paths: description: Response content: application/json: - schema: &77 + schema: &79 title: Authentication Token description: Authentication Token type: object @@ -10962,7 +11104,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *76 + items: *78 single_file: type: - string @@ -10980,7 +11122,7 @@ paths: - token - expires_at examples: - default: &280 + default: &283 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -11018,9 +11160,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: &281 + default: &284 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -11044,15 +11186,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-enterprise parameters: - *39 - - *73 + - *75 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: &282 + default: &285 value: id: 23 name: MBP @@ -11092,7 +11234,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-enterprise parameters: - *39 - - *73 + - *75 responses: '204': description: Response @@ -11117,9 +11259,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: - *39 - - *73 + - *75 responses: - '200': &79 + '200': &81 description: Response content: application/json: @@ -11133,7 +11275,7 @@ paths: type: integer labels: type: array - items: *78 + items: *80 examples: default: value: @@ -11171,7 +11313,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: - *39 - - *73 + - *75 requestBody: required: true content: @@ -11195,7 +11337,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -11218,7 +11360,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: - *39 - - *73 + - *75 requestBody: required: true content: @@ -11243,7 +11385,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -11266,9 +11408,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: - *39 - - *73 + - *75 responses: - '200': &283 + '200': &286 description: Response content: application/json: @@ -11282,7 +11424,7 @@ paths: type: integer labels: type: array - items: *78 + items: *80 examples: default: value: @@ -11323,8 +11465,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: - *39 - - *73 - - &284 + - *75 + - &287 name: name description: The name of a self-hosted runner's custom label. in: path @@ -11332,7 +11474,7 @@ paths: schema: type: string responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -11357,13 +11499,13 @@ paths: description: Response content: application/json: - schema: &84 + schema: &86 title: Announcement Banner description: Announcement at either the repository, organization, or enterprise level type: object properties: - announcement: &80 + announcement: &82 type: - string - 'null' @@ -11372,7 +11514,7 @@ paths: 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)." examples: - Very **important** announcement about _something_. - expires_at: &81 + expires_at: &83 type: - string - 'null' @@ -11384,7 +11526,7 @@ paths: it to an empty string.' examples: - '"2021-01-01T00:00:00.000-07:00"' - user_dismissible: &82 + user_dismissible: &84 type: - boolean - 'null' @@ -11397,7 +11539,7 @@ paths: - expires_at - user_dismissible examples: - default: &83 + default: &85 summary: Announcement banner value: announcement: Very **important** announcement about _something_. @@ -11421,18 +11563,18 @@ paths: required: true content: application/json: - schema: &291 + schema: &294 title: Enterprise Announcement description: Enterprise global announcement type: object properties: - announcement: *80 - expires_at: *81 - user_dismissible: *82 + announcement: *82 + expires_at: *83 + user_dismissible: *84 required: - announcement examples: - default: *83 + default: *85 parameters: - *39 responses: @@ -11440,9 +11582,9 @@ paths: description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *83 + default: *85 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -11541,7 +11683,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#get-repositories-belonging-to-an-enterprise-owned-organization parameters: - *39 - - &85 + - &87 name: org description: The organization name. The name is not case sensitive. in: path @@ -11558,7 +11700,7 @@ paths: application/json: schema: type: array - items: &87 + items: &89 title: Accessible Repository description: A repository that may be made accessible to a GitHub App. @@ -11612,7 +11754,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: - *39 - - *85 + - *87 - *17 - *19 responses: @@ -11711,7 +11853,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: - *39 - - *85 + - *87 responses: '200': description: A GitHub App installation that was installed previously. @@ -11719,14 +11861,14 @@ paths: application/json: schema: *20 examples: - default: *86 + default: *88 '201': description: A GitHub App installation. content: application/json: schema: *20 examples: - default: *86 + default: *88 requestBody: required: true content: @@ -11794,7 +11936,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: - *39 - - *85 + - *87 - *21 responses: '204': @@ -11822,7 +11964,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: - *39 - - *85 + - *87 - *21 - *17 - *19 @@ -11834,7 +11976,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -11863,7 +12005,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: - *39 - - *85 + - *87 - *21 requestBody: required: true @@ -11903,7 +12045,7 @@ paths: application/json: schema: *20 examples: - default: *86 + default: *88 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -11924,7 +12066,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#grant-repository-access-to-an-organization-installation parameters: - *39 - - *85 + - *87 - *21 responses: '200': @@ -11934,7 +12076,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -11985,7 +12127,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/organization-installations#remove-repository-access-from-an-organization-installation parameters: - *39 - - *85 + - *87 - *21 responses: '200': @@ -11995,7 +12137,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -12072,7 +12214,7 @@ paths: required: false schema: type: string - - &294 + - &297 name: include description: |- The event types to include: @@ -12090,7 +12232,7 @@ paths: - web - git - all - - &295 + - &298 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. @@ -12098,7 +12240,7 @@ paths: required: false schema: type: string - - &296 + - &299 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. @@ -12106,7 +12248,7 @@ paths: required: false schema: type: string - - &297 + - &300 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -12128,7 +12270,7 @@ paths: application/json: schema: type: array - items: &298 + items: &301 type: object properties: "@timestamp": @@ -12250,7 +12392,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &299 + default: &302 value: - "@timestamp": 1606929874512 action: team.add_member @@ -12430,7 +12572,7 @@ paths: vendor_specific: type: object oneOf: - - &91 + - &93 title: AzureBlobConfig description: Azure Blob Config for audit log streaming configuration. type: object @@ -12449,7 +12591,7 @@ paths: - key_id - encrypted_sas_url - container - - &92 + - &94 title: AzureHubConfig description: Azure Event Hubs Config for audit log streaming configuration. type: object @@ -12468,7 +12610,7 @@ paths: - name - encrypted_connstring - key_id - - &93 + - &95 title: AmazonS3OIDCConfig description: Amazon S3 OIDC Config for audit log streaming configuration. type: object @@ -12496,7 +12638,7 @@ paths: - bucket - key_id - region - - &94 + - &96 title: AmazonS3AccessKeysConfig description: Amazon S3 Access Keys Config for audit log streaming configuration. @@ -12530,7 +12672,7 @@ paths: - encrypted_secret_key - key_id - region - - &95 + - &97 title: SplunkConfig description: Splunk Config for Audit Log Stream Configuration type: object @@ -12558,7 +12700,7 @@ paths: - key_id - port - ssl_verify - - &96 + - &98 title: HecConfig description: Hec Config for Audit Log Stream Configuration type: object @@ -12590,7 +12732,7 @@ paths: - key_id - port - ssl_verify - - &97 + - &99 title: GoogleCloudConfig description: Google Cloud Config for audit log streaming configuration. type: object @@ -12608,7 +12750,7 @@ paths: - bucket - key_id - encrypted_json_credentials - - &98 + - &100 title: DatadogConfig description: Datadog Config for audit log streaming configuration. type: object @@ -12639,7 +12781,7 @@ paths: - stream_type - vendor_specific examples: - default: &99 + default: &101 value: enabled: false stream_type: Azure Event Hubs @@ -12653,7 +12795,7 @@ paths: description: The audit log stream configuration was created successfully. content: application/json: - schema: &88 + schema: &90 title: Get an audit log streaming configuration description: Get an audit log streaming configuration for an enterprise. type: object @@ -12685,7 +12827,7 @@ paths: - created_at - updated_at examples: - default: &89 + default: &91 value: id: 1 stream_type: Splunk @@ -12714,7 +12856,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: - *39 - - &90 + - &92 name: stream_id description: The ID of the audit log stream configuration. in: path @@ -12726,9 +12868,9 @@ paths: description: Lists one audit log stream configuration via stream ID. content: application/json: - schema: *88 + schema: *90 examples: - default: *89 + default: *91 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -12748,7 +12890,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/audit-log#update-an-existing-audit-log-stream-configuration parameters: - *39 - - *90 + - *92 requestBody: required: true content: @@ -12774,28 +12916,28 @@ paths: vendor_specific: type: object oneOf: - - *91 - - *92 - *93 - *94 - *95 - *96 - *97 - *98 + - *99 + - *100 required: - enabled - stream_type - vendor_specific examples: - default: *99 + default: *101 responses: '200': description: Successful update content: application/json: - schema: *88 + schema: *90 examples: - default: *89 + default: *91 '422': description: Validation error content: @@ -12826,7 +12968,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: - *39 - - *90 + - *92 responses: '204': description: The audit log stream configuration was deleted successfully. @@ -12853,13 +12995,13 @@ paths: subcategory: bypass-requests parameters: - *39 - - &100 + - &102 name: organization_name description: The name of the organization to filter on. in: query schema: type: string - - &101 + - &103 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -12867,7 +13009,7 @@ paths: required: false schema: type: string - - &102 + - &104 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -12875,7 +13017,7 @@ paths: required: false schema: type: string - - &103 + - &105 name: time_period description: |- The time period to filter by. @@ -12891,7 +13033,7 @@ paths: - week - month default: day - - &104 + - &106 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -12918,7 +13060,7 @@ paths: application/json: schema: type: array - items: &300 + items: &303 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -13044,7 +13186,7 @@ paths: - array - 'null' description: The responses to the bypass request. - items: &105 + items: &107 title: Bypass response description: A response made by a delegated bypasser to a bypass request. @@ -13090,7 +13232,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &301 + default: &304 value: - id: 21 number: 42 @@ -13181,11 +13323,11 @@ paths: subcategory: delegated-bypass parameters: - *39 - - *100 - - *101 - *102 - *103 - *104 + - *105 + - *106 - *17 - *19 responses: @@ -13195,7 +13337,7 @@ paths: application/json: schema: type: array - items: &303 + items: &306 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -13313,7 +13455,7 @@ paths: - array - 'null' description: The responses to the bypass request. - items: *105 + items: *107 url: type: string format: uri @@ -13326,7 +13468,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &304 + default: &307 value: - id: 21 number: 42 @@ -13411,17 +13553,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *39 - - &309 + - &312 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: &109 + schema: &111 type: string description: The name of the tool used to generate the code scanning analysis. - - &310 + - &313 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 @@ -13429,23 +13571,23 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &110 + schema: &112 type: - string - 'null' description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *106 - - *107 + - *108 + - *109 - *19 - *17 - - *108 + - *110 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &311 + schema: &314 type: string description: State of a code scanning alert. enum: @@ -13478,42 +13620,42 @@ paths: application/json: schema: type: array - items: &312 + items: &315 type: object properties: - number: &124 + number: &126 type: integer description: The security alert number. readOnly: true - created_at: &131 + created_at: &133 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: &132 + updated_at: &134 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: &129 + url: &131 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &130 + html_url: &132 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &522 + instances_url: &525 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &111 + state: &113 type: - string - 'null' @@ -13523,7 +13665,7 @@ paths: - dismissed - fixed - - fixed_at: &134 + fixed_at: &136 type: - string - 'null' @@ -13535,7 +13677,7 @@ paths: anyOf: - type: 'null' - *4 - dismissed_at: &133 + dismissed_at: &135 type: - string - 'null' @@ -13543,7 +13685,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &523 + dismissed_reason: &526 type: - string - 'null' @@ -13554,14 +13696,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &524 + dismissed_comment: &527 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &525 + rule: &528 type: object properties: id: @@ -13622,43 +13764,43 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &526 + tool: &529 type: object properties: - name: *109 + name: *111 version: type: - string - 'null' description: The version of the tool used to generate the code scanning analysis. - guid: *110 - most_recent_instance: &527 + guid: *112 + most_recent_instance: &530 type: object properties: - ref: &520 + ref: &523 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &537 + analysis_key: &540 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: &538 + environment: &541 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: &539 + category: &542 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: *111 + state: *113 commit_sha: type: string message: @@ -13666,7 +13808,7 @@ paths: properties: text: type: string - location: &540 + location: &543 type: object description: Describe a region within a file for the alert. properties: @@ -13687,7 +13829,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: &541 + items: &544 type: - string - 'null' @@ -13699,7 +13841,7 @@ paths: - test - library - - repository: &118 + repository: &120 title: Simple Repository description: A GitHub repository. type: object @@ -14043,7 +14185,7 @@ paths: - most_recent_instance - repository examples: - default: &313 + default: &316 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -14274,7 +14416,7 @@ paths: headers: Link: *45 '404': *6 - '503': &190 + '503': &192 description: Service unavailable content: application/json: @@ -14318,8 +14460,8 @@ paths: schema: type: integer default: 30 - - *106 - - *107 + - *108 + - *109 responses: '200': description: Response @@ -14327,7 +14469,7 @@ paths: application/json: schema: type: array - items: &112 + items: &114 type: object description: A code security configuration properties: @@ -14725,7 +14867,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &116 + code_scanning_options: &118 type: - object - 'null' @@ -14744,7 +14886,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &115 + code_scanning_default_setup_options: &117 type: - object - 'null' @@ -14871,9 +15013,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *112 + schema: *114 examples: - default: &113 + default: &115 value: id: 1325 target_type: enterprise @@ -14931,7 +15073,7 @@ paths: description: Response content: application/json: - schema: &315 + schema: &318 type: array description: A list of default code security configurations items: @@ -14945,9 +15087,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *112 + configuration: *114 examples: - default: &316 + default: &319 value: - default_for_new_repos: public configuration: @@ -15036,7 +15178,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *39 - - &114 + - &116 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -15048,9 +15190,9 @@ paths: description: Response content: application/json: - schema: *112 + schema: *114 examples: - default: *113 + default: *115 '304': *35 '403': *27 '404': *6 @@ -15075,7 +15217,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *39 - - *114 + - *116 requestBody: required: true content: @@ -15154,8 +15296,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *115 - code_scanning_options: *116 + code_scanning_default_setup_options: *117 + code_scanning_options: *118 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -15251,13 +15393,13 @@ paths: description: Response content: application/json: - schema: *112 + schema: *114 examples: - default: *113 + default: *115 '304': *35 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -15281,14 +15423,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *39 - - *114 + - *116 responses: - '204': &149 + '204': &151 description: A header with no content is returned. '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -15313,7 +15455,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *39 - - *114 + - *116 requestBody: required: true content: @@ -15340,7 +15482,7 @@ paths: '202': *37 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -15365,7 +15507,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: - *39 - - *114 + - *116 requestBody: required: true content: @@ -15405,12 +15547,12 @@ paths: - none - private_and_internal - public - configuration: *112 + configuration: *114 examples: default: value: default_for_new_repos: all - configuration: &314 + configuration: &317 value: id: 1325 target_type: organization @@ -15467,7 +15609,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *39 - - *114 + - *116 - 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)." @@ -15476,8 +15618,8 @@ paths: schema: type: integer default: 30 - - *106 - - *107 + - *108 + - *109 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -15495,7 +15637,7 @@ paths: application/json: schema: type: array - items: &317 + items: &320 type: object description: Repositories associated with a code security configuration and attachment status @@ -15513,13 +15655,13 @@ paths: - failed - updating - removed_by_enterprise - repository: *118 + repository: *120 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: &318 + repository: &321 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -16002,7 +16144,7 @@ paths: or enterprise teams are only counted once. seats: type: array - items: &140 + items: &142 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -16015,12 +16157,12 @@ paths: organization: anyOf: - type: 'null' - - *71 + - *73 assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &305 + - &308 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -16097,7 +16239,7 @@ paths: parent: anyOf: - type: 'null' - - &380 + - &383 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -16215,7 +16357,7 @@ paths: - slug - parent - type - - &139 + - &141 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -16338,7 +16480,7 @@ paths: - created_at additionalProperties: false examples: - default: &141 + default: &143 value: total_seats: 2 seats: @@ -16875,7 +17017,7 @@ paths: '401': *23 '403': *27 '404': *6 - '413': &320 + '413': &323 description: Payload Too Large content: application/json: @@ -17300,7 +17442,7 @@ paths: application/json: schema: type: array - items: &203 + items: &205 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -17615,7 +17757,7 @@ paths: - date additionalProperties: true examples: - default: &204 + default: &206 value: - date: '2024-06-24' total_active_users: 24 @@ -17717,7 +17859,7 @@ paths: '500': *38 '403': *27 '404': *6 - '422': &205 + '422': &207 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -17747,7 +17889,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: - *39 - - &119 + - &121 name: day description: The day to request data for, in `YYYY-MM-DD` format. in: query @@ -17762,7 +17904,7 @@ paths: description: Response content: application/json: - schema: &120 + schema: &122 type: object title: Copilot Metrics 1 Day Report description: Links to download the Copilot usage metrics report for @@ -17783,7 +17925,7 @@ paths: - download_links - report_day examples: - default: &121 + default: &123 value: download_links: - https://example.com/copilot-usage-report-1.json @@ -17821,7 +17963,7 @@ paths: description: Response content: application/json: - schema: &122 + schema: &124 type: object title: Copilot Metrics 28 Day Report description: Links to download the latest Copilot usage metrics report @@ -17849,7 +17991,7 @@ paths: - report_start_day - report_end_day examples: - default: &123 + default: &125 value: download_links: - https://example.com/copilot-usage-report-1.json @@ -17883,15 +18025,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: - *39 - - *119 + - *121 responses: '200': description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '500': *38 '403': *27 '404': *6 @@ -17924,9 +18066,9 @@ paths: description: Response content: application/json: - schema: *122 + schema: *124 examples: - default: *123 + default: *125 '500': *38 '403': *27 '404': *6 @@ -17954,7 +18096,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *39 - - &325 + - &328 name: state in: query description: |- @@ -17963,7 +18105,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &326 + - &329 name: severity in: query description: |- @@ -17972,7 +18114,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &327 + - &330 name: ecosystem in: query description: |- @@ -17981,14 +18123,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &328 + - &331 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 - - &329 + - &332 name: epss_percentage in: query description: |- @@ -18000,7 +18142,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 - - &578 + - &581 name: has in: query description: |- @@ -18014,7 +18156,7 @@ paths: type: string enum: - patch - - &330 + - &333 name: assignee in: query description: |- @@ -18023,7 +18165,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &331 + - &334 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -18033,7 +18175,7 @@ paths: enum: - development - runtime - - &332 + - &335 name: sort in: query description: |- @@ -18048,9 +18190,9 @@ paths: - updated - epss_percentage default: created + - *110 - *108 - - *106 - - *107 + - *109 - *17 responses: '200': @@ -18059,11 +18201,11 @@ paths: application/json: schema: type: array - items: &333 + items: &336 type: object description: A Dependabot alert. properties: - number: *124 + number: *126 state: type: string description: The state of the Dependabot alert. @@ -18078,7 +18220,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &125 + package: &127 type: object description: Details for the vulnerable package. readOnly: true @@ -18126,7 +18268,7 @@ paths: - direct - transitive - - security_advisory: &579 + security_advisory: &582 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -18157,13 +18299,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &128 + items: &130 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *125 + package: *127 severity: type: string description: The severity of the vulnerability. @@ -18209,8 +18351,8 @@ paths: - medium - high - critical - cvss_severities: *126 - epss: *127 + cvss_severities: *128 + epss: *129 cwes: type: array description: Details for the advisory pertaining to Common @@ -18309,12 +18451,12 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *128 - url: *129 - html_url: *130 - created_at: *131 - updated_at: *132 - dismissed_at: *133 + security_vulnerability: *130 + url: *131 + html_url: *132 + created_at: *133 + updated_at: *134 + dismissed_at: *135 dismissed_by: anyOf: - type: 'null' @@ -18338,8 +18480,8 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *134 - auto_dismissed_at: &580 + fixed_at: *136 + auto_dismissed_at: &583 type: - string - 'null' @@ -18347,7 +18489,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &581 + dismissal_request: &584 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -18391,7 +18533,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *118 + repository: *120 required: - number - state @@ -18410,7 +18552,7 @@ paths: - repository additionalProperties: false examples: - default: &334 + default: &337 value: - number: 2 state: dismissed @@ -18793,7 +18935,7 @@ paths: roles: type: array description: The list of enterprise roles available to the enterprise. - items: &138 + items: &140 title: Enterprise Role description: Enterprise custom roles type: object @@ -18921,7 +19063,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-all-enterprise-roles-from-a-team parameters: - *39 - - &135 + - &137 name: team_slug description: The slug of the enterprise team name. in: path @@ -18964,8 +19106,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#assign-an-enterprise-role-to-a-team parameters: - *39 - - *135 - - &136 + - *137 + - &138 name: role_id description: The unique identifier of the role. in: path @@ -19007,8 +19149,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-an-enterprise-role-from-a-team parameters: - *39 - - *135 - - *136 + - *137 + - *138 responses: '204': description: Response @@ -19042,7 +19184,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-all-enterprise-roles-from-a-user parameters: - *39 - - &137 + - &139 name: username description: The handle for the GitHub user account. in: path @@ -19082,8 +19224,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#assign-an-enterprise-role-to-an-enterprise-user parameters: - *39 - - *137 - - *136 + - *139 + - *138 responses: '204': description: Response @@ -19116,8 +19258,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#remove-enterprise-user-role-assignment parameters: - *39 - - *137 - - *136 + - *139 + - *138 responses: '204': description: Response @@ -19151,13 +19293,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/enterprise-roles#get-an-enterprise-role parameters: - *39 - - *136 + - *138 responses: '200': description: Response content: application/json: - schema: *138 + schema: *140 examples: default: value: @@ -19211,7 +19353,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: - *39 - - *136 + - *138 - *17 - *19 responses: @@ -19221,9 +19363,9 @@ paths: application/json: schema: type: array - items: *139 + items: *141 examples: - default: &206 + default: &208 value: - id: 1 name: Justice League @@ -19262,7 +19404,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: - *39 - - *136 + - *138 - *17 - *19 responses: @@ -19295,7 +19437,7 @@ paths: description: Enterprise Team the user has gotten the role through type: array - items: *139 + items: *141 examples: default: value: @@ -19387,7 +19529,7 @@ paths: application/json: schema: *20 examples: - default: &357 + default: &360 value: id: 1 account: @@ -19528,7 +19670,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: - *39 - - *137 + - *139 responses: '200': description: The user's GitHub Copilot seat details, including usage. @@ -19544,9 +19686,9 @@ paths: teams or multiple organizations are only counted once. seats: type: array - items: *140 + items: *142 examples: - default: *141 + default: *143 '500': *38 '401': *23 '403': *27 @@ -19589,7 +19731,7 @@ paths: type: integer network_configurations: type: array - items: &142 + items: &144 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -19648,7 +19790,7 @@ paths: - name - created_on examples: - default: &437 + default: &440 value: total_count: 2 network_configurations: @@ -19727,9 +19869,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: &143 + default: &145 value: id: 123456789ABCDEF name: My network configuration @@ -19756,7 +19898,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: - *39 - - &144 + - &146 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -19768,9 +19910,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: *143 + default: *145 headers: Link: *45 x-github: @@ -19790,7 +19932,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: - *39 - - *144 + - *146 requestBody: required: true content: @@ -19830,9 +19972,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: *143 + default: *145 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19850,7 +19992,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: - *39 - - *144 + - *146 responses: '204': description: Response @@ -19873,7 +20015,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: - *39 - - &438 + - &441 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -19885,7 +20027,7 @@ paths: description: Response content: application/json: - schema: &439 + schema: &442 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -19924,7 +20066,7 @@ paths: - subnet_id - region examples: - default: &440 + default: &443 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -19963,7 +20105,7 @@ paths: application/json: schema: type: array - items: &145 + items: &147 title: Custom Property for Organization description: Custom property defined for an organization allOf: @@ -20041,7 +20183,7 @@ paths: - property_name - value_type examples: - default: &146 + default: &148 value: - property_name: environment url: https://api.github.com/enterprises/github/org-properties/schema/environment @@ -20101,7 +20243,7 @@ paths: type: array description: The array of organization custom properties to create or update. - items: *145 + items: *147 minItems: 1 maxItems: 100 required: @@ -20134,9 +20276,9 @@ paths: application/json: schema: type: array - items: *145 + items: *147 examples: - default: *146 + default: *148 '403': *27 '404': *6 '422': *7 @@ -20163,7 +20305,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: - *39 - - &147 + - &149 name: custom_property_name description: The custom property name in: path @@ -20175,9 +20317,9 @@ paths: description: Response content: application/json: - schema: *145 + schema: *147 examples: - default: &148 + default: &150 value: property_name: environment url: https://api.github.com/enterprises/github/org-properties/schema/environment @@ -20214,7 +20356,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: - *39 - - *147 + - *149 requestBody: required: true content: @@ -20292,9 +20434,9 @@ paths: description: Response content: application/json: - schema: *145 + schema: *147 examples: - default: *148 + default: *150 '403': *27 '404': *6 '422': *7 @@ -20320,9 +20462,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: - *39 - - *147 + - *149 responses: - '204': *149 + '204': *151 '403': *27 '404': *6 '422': *7 @@ -20373,7 +20515,7 @@ paths: - Hello-World properties: type: array - items: &150 + items: &152 title: Custom Property Value description: Custom property name and associated value type: object @@ -20459,7 +20601,7 @@ paths: type: array description: List of custom property names and associated values to apply to the organizations. - items: *150 + items: *152 required: - organization_logins - properties @@ -20509,7 +20651,7 @@ paths: application/json: schema: type: array - items: &151 + items: &153 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -20587,7 +20729,7 @@ paths: - property_name - value_type examples: - default: &152 + default: &154 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -20645,7 +20787,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *151 + items: *153 minItems: 1 maxItems: 100 required: @@ -20675,9 +20817,9 @@ paths: application/json: schema: type: array - items: *151 + items: *153 examples: - default: *152 + default: *154 '403': *27 '404': *6 x-github: @@ -20700,16 +20842,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#promote-a-custom-property-to-an-enterprise parameters: - *39 - - *85 - - *147 + - *87 + - *149 responses: '200': description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: &153 + default: &155 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -20742,15 +20884,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#get-a-custom-property-for-an-enterprise parameters: - *39 - - *147 + - *149 responses: '200': description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *153 + default: *155 '403': *27 '404': *6 x-github: @@ -20772,12 +20914,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: - *39 - - *147 + - *149 requestBody: required: true content: application/json: - schema: &411 + schema: &414 title: Custom Property Set Payload description: Custom property set payload type: object @@ -20852,9 +20994,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *153 + default: *155 '403': *27 '404': *6 x-github: @@ -20876,9 +21018,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/custom-properties#remove-a-custom-property-for-an-enterprise parameters: - *39 - - *147 + - *149 responses: - '204': *149 + '204': *151 '403': *27 '404': *6 x-github: @@ -20918,7 +21060,7 @@ paths: - push - repository default: branch - enforcement: &162 + enforcement: &164 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins can view insights @@ -20931,7 +21073,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &163 + items: &165 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -20973,7 +21115,7 @@ paths: - pull_request - exempt default: always - conditions: &187 + conditions: &189 title: Enterprise ruleset conditions type: object description: |- @@ -20986,7 +21128,7 @@ paths: description: Conditions to target organizations by name and all repositories allOf: - - &154 + - &156 title: Repository ruleset conditions for organization names type: object description: Parameters for an organization name condition @@ -21012,7 +21154,7 @@ paths: type: string required: - organization_name - - &157 + - &159 title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -21041,7 +21183,7 @@ paths: is prevented. required: - repository_name - - &156 + - &158 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name condition @@ -21069,8 +21211,8 @@ paths: description: Conditions to target organizations by name and repositories by property allOf: - - *154 - - &159 + - *156 + - &161 title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -21083,7 +21225,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &155 + items: &157 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a repository @@ -21114,16 +21256,16 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *155 + items: *157 required: - repository_property - - *156 + - *158 - type: object title: organization_id_and_repository_name description: Conditions to target organizations by id and all repositories allOf: - - &158 + - &160 title: Repository ruleset conditions for organization IDs type: object description: Parameters for an organization ID condition @@ -21140,22 +21282,22 @@ paths: type: integer required: - organization_id - - *157 - - *156 + - *159 + - *158 - type: object title: organization_id_and_repository_property description: Conditions to target organization by id and repositories by property allOf: + - *160 + - *161 - *158 - - *159 - - *156 - type: object title: organization_property_and_repository_name description: Conditions to target organizations by property and all repositories allOf: - - &161 + - &163 title: Repository ruleset conditions for organization properties type: object description: Parameters for a organization property condition @@ -21168,7 +21310,7 @@ paths: description: The organization properties and values to include. All of these properties must match for the condition to pass. - items: &160 + items: &162 title: Repository ruleset property targeting definition type: object description: Parameters for a targeting a organization @@ -21192,28 +21334,28 @@ paths: description: The organization properties and values to exclude. The condition will not pass if any of these properties match. - items: *160 + items: *162 required: - organization_property - - *157 - - *156 + - *159 + - *158 - type: object title: organization_property_and_repository_property description: Conditions to target organizations by property and repositories by property allOf: + - *163 - *161 - - *159 - - *156 + - *158 rules: type: array description: An array of rules within the ruleset. - items: &188 + items: &190 title: Repository Rule type: object description: A repository rule. oneOf: - - &164 + - &166 title: creation description: Only allow users with bypass permission to create matching refs. @@ -21225,7 +21367,7 @@ paths: type: string enum: - creation - - &165 + - &167 title: update description: Only allow users with bypass permission to update matching refs. @@ -21246,7 +21388,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &166 + - &168 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -21258,7 +21400,7 @@ paths: type: string enum: - deletion - - &167 + - &169 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -21270,7 +21412,7 @@ paths: type: string enum: - required_linear_history - - &168 + - &170 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -21294,7 +21436,7 @@ paths: type: string required: - required_deployment_environments - - &169 + - &171 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -21306,7 +21448,7 @@ paths: type: string enum: - required_signatures - - &170 + - &172 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. @@ -21409,7 +21551,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &171 + - &173 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -21456,7 +21598,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &172 + - &174 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -21468,7 +21610,7 @@ paths: type: string enum: - non_fast_forward - - &173 + - &175 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -21505,7 +21647,7 @@ paths: required: - operator - pattern - - &174 + - &176 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -21542,7 +21684,7 @@ paths: required: - operator - pattern - - &175 + - &177 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -21579,7 +21721,7 @@ paths: required: - operator - pattern - - &176 + - &178 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -21616,7 +21758,7 @@ paths: required: - operator - pattern - - &177 + - &179 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -21653,7 +21795,7 @@ paths: required: - operator - pattern - - &178 + - &180 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -21677,7 +21819,7 @@ paths: type: string required: - restricted_file_paths - - &179 + - &181 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -21701,7 +21843,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &180 + - &182 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -21724,7 +21866,7 @@ paths: type: string required: - restricted_file_extensions - - &181 + - &183 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -21748,7 +21890,7 @@ paths: maximum: 100 required: - max_file_size - - &182 + - &184 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -21797,7 +21939,7 @@ paths: - repository_id required: - workflows - - &183 + - &185 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -21857,7 +21999,7 @@ paths: - tool required: - code_scanning_tools - - &184 + - &186 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code review @@ -21907,7 +22049,7 @@ paths: description: Response content: application/json: - schema: &185 + schema: &187 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -21942,11 +22084,11 @@ paths: source: type: string description: The name of the source - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 + items: *165 current_user_can_bypass: type: string description: |- @@ -21978,8 +22120,8 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - *156 - - &415 + - *158 + - &418 title: Organization ruleset conditions type: object description: |- @@ -21993,14 +22135,14 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *156 - - *157 + - *158 + - *159 - type: object title: repository_id_and_ref_name description: Conditions to target repositories by id and refs by name allOf: - - *156 + - *158 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -22022,23 +22164,23 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *156 - - *159 + - *158 + - *161 type: - 'null' - object rules: type: array - items: &703 + items: &706 title: Repository Rule type: object description: A repository rule. oneOf: - - *164 - - *165 - *166 - *167 - - &701 + - *168 + - *169 + - &704 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -22116,8 +22258,6 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - *168 - - *169 - *170 - *171 - *172 @@ -22133,6 +22273,8 @@ paths: - *182 - *183 - *184 + - *185 + - *186 created_at: type: string format: date-time @@ -22140,7 +22282,7 @@ paths: type: string format: date-time examples: - default: &186 + default: &188 value: id: 21 name: super cool ruleset @@ -22199,9 +22341,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *186 + default: *188 '404': *6 '500': *38 x-github: @@ -22245,16 +22387,16 @@ paths: - tag - push - repository - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 - conditions: *187 + items: *165 + conditions: *189 rules: description: An array of rules within the ruleset. type: array - items: *188 + items: *190 examples: default: value: @@ -22278,9 +22420,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *186 + default: *188 '404': *6 '500': *38 x-github: @@ -22342,7 +22484,7 @@ paths: application/json: schema: type: array - items: &189 + items: &191 title: Ruleset version type: object description: The historical version of a ruleset @@ -22366,7 +22508,7 @@ paths: type: string format: date-time examples: - default: &418 + default: &421 value: - version_id: 3 actor: @@ -22419,9 +22561,9 @@ paths: description: Response content: application/json: - schema: &419 + schema: &422 allOf: - - *189 + - *191 - type: object required: - state @@ -22474,7 +22616,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &420 + - &423 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -22485,7 +22627,7 @@ paths: enum: - open - resolved - - &421 + - &424 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -22495,7 +22637,7 @@ paths: required: false schema: type: string - - &422 + - &425 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -22504,7 +22646,7 @@ paths: required: false schema: type: string - - &423 + - &426 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -22523,7 +22665,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &424 + - &427 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. @@ -22535,11 +22677,11 @@ paths: - created - updated default: created - - *108 + - *110 - *17 - - *106 - - *107 - - &425 + - *108 + - *109 + - &428 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -22548,7 +22690,7 @@ paths: required: false schema: type: string - - &426 + - &429 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -22557,7 +22699,7 @@ paths: schema: type: boolean default: false - - &427 + - &430 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -22566,7 +22708,7 @@ paths: schema: type: boolean default: false - - &428 + - &431 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -22582,30 +22724,30 @@ paths: application/json: schema: type: array - items: &429 + items: &432 type: object properties: - number: *124 - created_at: *131 + number: *126 + created_at: *133 updated_at: anyOf: - type: 'null' - - *132 - url: *129 - html_url: *130 + - *134 + url: *131 + html_url: *132 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &715 + state: &718 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: &716 + resolution: &719 type: - string - 'null' @@ -22639,7 +22781,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *118 + repository: *120 push_protection_bypassed: type: - boolean @@ -22712,14 +22854,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &717 + - &720 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &719 + - &722 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -22776,7 +22918,7 @@ paths: - blob_url - commit_sha - commit_url - - &720 + - &723 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. @@ -22837,7 +22979,7 @@ paths: - page_url - commit_sha - commit_url - - &721 + - &724 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -22852,7 +22994,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &722 + - &725 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -22867,7 +23009,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &723 + - &726 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -22882,7 +23024,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &724 + - &727 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -22897,7 +23039,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &725 + - &728 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -22912,7 +23054,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &726 + - &729 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -22927,7 +23069,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &727 + - &730 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. @@ -22942,7 +23084,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &728 + - &731 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. @@ -22957,7 +23099,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &729 + - &732 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. @@ -22972,7 +23114,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &730 + - &733 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. @@ -22987,7 +23129,7 @@ paths: - https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &731 + - &734 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 @@ -23012,7 +23154,7 @@ paths: - type: 'null' - *4 examples: - default: &430 + default: &433 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -23190,7 +23332,7 @@ paths: headers: Link: *45 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -23221,13 +23363,13 @@ paths: description: Response content: application/json: - schema: &431 + schema: &434 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: &192 + pattern_config_version: &194 type: - string - 'null' @@ -23237,7 +23379,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &191 + items: &193 type: object properties: token_type: @@ -23306,9 +23448,9 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *191 + items: *193 examples: - default: &432 + default: &435 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -23363,7 +23505,7 @@ paths: schema: type: object properties: - pattern_config_version: *192 + pattern_config_version: *194 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -23389,7 +23531,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *192 + custom_pattern_version: *194 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -23425,7 +23567,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 "/enterprises/{enterprise}/settings/billing/advanced-security": get: @@ -23444,7 +23586,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *39 - - &434 + - &437 name: advanced_security_product in: query description: | @@ -23464,7 +23606,7 @@ paths: description: Success content: application/json: - schema: &435 + schema: &438 type: object properties: total_advanced_security_committers: @@ -23527,7 +23669,7 @@ paths: required: - repositories examples: - default: &436 + default: &439 value: total_advanced_security_committers: 2 total_count: 2 @@ -23950,7 +24092,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/budgets#get-a-budget-by-id parameters: - *39 - - &193 + - &195 name: budget_id description: The ID corresponding to the budget. in: path @@ -24053,7 +24195,7 @@ paths: '404': *6 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24301,7 +24443,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/budgets#delete-a-budget parameters: - *39 - - *193 + - *195 responses: '200': description: Response when deleting a budget @@ -24328,7 +24470,7 @@ paths: '404': *6 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24428,7 +24570,7 @@ paths: '400': *14 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24558,7 +24700,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#get-a-cost-center-by-id parameters: - *39 - - &195 + - &197 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -24616,7 +24758,7 @@ paths: - name - resources examples: - default: &194 + default: &196 value: id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -24630,7 +24772,7 @@ paths: '400': *14 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24720,13 +24862,13 @@ paths: - name - resources examples: - default: *194 + default: *196 '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24744,7 +24886,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#delete-a-cost-center parameters: - *39 - - *195 + - *197 responses: '200': description: Response when deleting a cost center @@ -24783,7 +24925,7 @@ paths: '404': *6 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24804,7 +24946,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#add-resources-to-a-cost-center parameters: - *39 - - *195 + - *197 requestBody: required: true content: @@ -24875,9 +25017,9 @@ paths: previous_cost_center: yet-another-cost-center '400': *14 '403': *27 - '409': *117 + '409': *119 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24897,7 +25039,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/cost-centers#remove-resources-from-a-cost-center parameters: - *39 - - *195 + - *197 requestBody: required: true content: @@ -24944,7 +25086,7 @@ paths: '400': *14 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -24965,7 +25107,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-premium-request-usage-report-for-an-enterprise parameters: - *39 - - &198 + - &200 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, @@ -24974,7 +25116,7 @@ paths: required: false schema: type: integer - - &200 + - &202 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 @@ -24983,7 +25125,7 @@ paths: required: false schema: type: integer - - &199 + - &201 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -24992,7 +25134,7 @@ paths: required: false schema: type: integer - - &201 + - &203 name: organization description: The organization name to query usage for. The name is not case sensitive. @@ -25012,7 +25154,7 @@ paths: required: false schema: type: string - - &202 + - &204 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -25151,7 +25293,7 @@ paths: '403': *27 '404': *6 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25184,7 +25326,7 @@ paths: usage_report_exports: type: array description: List of usage report exports - items: &196 + items: &198 type: object properties: id: @@ -25281,7 +25423,7 @@ paths: '403': *27 '404': *6 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25349,9 +25491,9 @@ paths: description: Report export request accepted content: application/json: - schema: *196 + schema: *198 examples: - usage-report-export: &197 + usage-report-export: &199 value: id: a1b2c3d4-e5f6-7890-abcd-ef1234567890 report_type: detailed @@ -25367,7 +25509,7 @@ paths: '403': *27 '404': *6 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25401,14 +25543,14 @@ paths: description: Usage report export details content: application/json: - schema: *196 + schema: *198 examples: - usage-report-export: *197 + usage-report-export: *199 '401': *23 '403': *27 '404': *6 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25429,7 +25571,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-usage-report-for-an-enterprise parameters: - *39 - - *198 + - *200 - name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -25438,7 +25580,7 @@ paths: required: false schema: type: integer - - *199 + - *201 - name: cost_center_id description: The ID corresponding to a cost center. The default value is no cost center. @@ -25521,7 +25663,7 @@ paths: '400': *14 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25545,17 +25687,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/usage#get-billing-usage-summary-for-an-enterprise parameters: - *39 - - *198 - *200 - - *199 + - *202 - *201 + - *203 - name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *202 + - *204 - name: sku description: The SKU to query for usage. in: query @@ -25688,7 +25830,7 @@ paths: '400': *14 '403': *27 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -25722,7 +25864,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-an-enterprise-team parameters: - *39 - - *135 + - *137 - 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`). @@ -25754,13 +25896,13 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 '500': *38 '403': *27 '404': *6 - '422': *205 + '422': *207 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -25787,9 +25929,9 @@ paths: application/json: schema: type: array - items: *139 + items: *141 examples: - default: *206 + default: *208 headers: Link: *45 '403': *27 @@ -25866,9 +26008,9 @@ paths: description: Response content: application/json: - schema: *139 + schema: *141 examples: - default: &211 + default: &213 value: id: 1 name: Justice League @@ -25897,7 +26039,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *39 - - &207 + - &209 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -25916,7 +26058,7 @@ paths: type: array items: *4 examples: - default: &208 + default: &210 value: - login: octocat id: 1 @@ -25955,7 +26097,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *39 - - *207 + - *209 requestBody: required: true content: @@ -25986,7 +26128,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26004,7 +26146,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *39 - - *207 + - *209 requestBody: required: true content: @@ -26035,7 +26177,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26053,8 +26195,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *39 - - *207 - - *137 + - *209 + - *139 responses: '200': description: User is a member of the enterprise team. @@ -26062,7 +26204,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &209 + exampleKey1: &211 value: login: octocat id: 1 @@ -26098,8 +26240,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *39 - - *207 - - *137 + - *209 + - *139 responses: '201': description: Successfully added team member @@ -26107,7 +26249,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *209 + exampleKey1: *211 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26125,8 +26267,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *39 - - *207 - - *137 + - *209 + - *139 responses: '204': description: Response @@ -26148,7 +26290,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *39 - - *207 + - *209 - *17 - *19 responses: @@ -26158,9 +26300,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: &210 + default: &212 value: login: github id: 1 @@ -26191,7 +26333,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *39 - - *207 + - *209 requestBody: required: true content: @@ -26219,9 +26361,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: &246 + default: &248 value: - login: github id: 1 @@ -26252,7 +26394,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *39 - - *207 + - *209 requestBody: required: true content: @@ -26293,16 +26435,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *39 - - *207 - - *85 + - *209 + - *87 responses: '200': description: The team is assigned to the organization content: application/json: - schema: *71 + schema: *73 examples: - default: *210 + default: *212 '404': description: The team is not assigned to the organization x-github: @@ -26321,16 +26463,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *39 - - *207 - - *85 + - *209 + - *87 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *71 + schema: *73 examples: - default: *210 + default: *212 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -26347,8 +26489,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *39 - - *207 - - *85 + - *209 + - *87 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -26372,7 +26514,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *39 - - &212 + - &214 name: team_slug description: The slug of the team name. in: path @@ -26384,9 +26526,9 @@ paths: description: Response content: application/json: - schema: *139 + schema: *141 examples: - default: *211 + default: *213 headers: Link: *45 '403': *27 @@ -26406,7 +26548,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *39 - - *212 + - *214 requestBody: required: true content: @@ -26464,9 +26606,9 @@ paths: description: Response content: application/json: - schema: *139 + schema: *141 examples: - default: *211 + default: *213 headers: Link: *45 '403': *27 @@ -26489,7 +26631,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *39 - - *212 + - *214 responses: '204': description: Response @@ -26588,7 +26730,7 @@ paths: application/json: schema: type: array - items: &241 + items: &243 title: Event description: Event type: object @@ -26599,7 +26741,7 @@ paths: type: - string - 'null' - actor: &213 + actor: &215 title: Actor description: Actor type: object @@ -26640,7 +26782,7 @@ paths: - id - name - url - org: *213 + org: *215 payload: oneOf: - title: CreateEvent @@ -26687,7 +26829,7 @@ paths: properties: action: type: string - discussion: &853 + discussion: &856 title: Discussion description: A Discussion in a repository. type: object @@ -26984,7 +27126,7 @@ paths: - id labels: type: array - items: &216 + items: &218 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -27067,7 +27209,7 @@ paths: properties: action: type: string - issue: &217 + issue: &219 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. @@ -27184,7 +27326,7 @@ paths: milestone: anyOf: - type: 'null' - - &401 + - &404 title: Milestone description: A collection of related issues and pull requests. @@ -27361,7 +27503,7 @@ paths: timeline_url: type: string format: uri - type: &367 + type: &370 title: Issue Type description: The type of issue. type: @@ -27415,12 +27557,12 @@ paths: - node_id - name - description - repository: *76 + repository: *78 performed_via_github_app: anyOf: - type: 'null' - *5 - author_association: &214 + author_association: &216 title: author_association type: string description: How the author is associated with the @@ -27436,7 +27578,7 @@ paths: - OWNER examples: - OWNER - reactions: &215 + reactions: &217 title: Reaction Rollup type: object properties: @@ -27472,7 +27614,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &775 + sub_issues_summary: &778 title: Sub-issues Summary type: object properties: @@ -27496,7 +27638,7 @@ paths: pinned_comment: anyOf: - type: 'null' - - &218 + - &220 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -27547,16 +27689,16 @@ paths: issue_url: type: string format: uri - author_association: *214 + author_association: *216 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *215 + reactions: *217 pin: anyOf: - type: 'null' - - &660 + - &663 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -27583,7 +27725,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &776 + issue_dependencies_summary: &779 title: Issue Dependencies Summary type: object properties: @@ -27602,7 +27744,7 @@ paths: - total_blocking issue_field_values: type: array - items: &645 + items: &648 title: Issue Field Value description: A value assigned to an issue field type: object @@ -27701,10 +27843,10 @@ paths: assignees: type: array items: *4 - label: *216 + label: *218 labels: type: array - items: *216 + items: *218 required: - action - issue @@ -27713,8 +27855,8 @@ paths: properties: action: type: string - issue: *217 - comment: *218 + issue: *219 + comment: *220 required: - action - issue @@ -27895,7 +28037,7 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 allow_forking: type: boolean is_template: @@ -27986,7 +28128,7 @@ paths: type: string number: type: integer - pull_request: &220 + pull_request: &222 title: Pull Request Minimal type: object properties: @@ -28057,10 +28199,10 @@ paths: assignees: type: array items: *4 - label: *216 + label: *218 labels: type: array - items: *216 + items: *218 required: - action - number @@ -28070,7 +28212,7 @@ paths: properties: action: type: string - pull_request: *220 + pull_request: *222 comment: type: object properties: @@ -28324,7 +28466,7 @@ paths: - pull_request updated_at: type: string - pull_request: *220 + pull_request: *222 required: - action - review @@ -28373,7 +28515,7 @@ paths: updated_at: type: string format: date-time - reactions: *215 + reactions: *217 required: - action - comment @@ -28384,7 +28526,7 @@ paths: type: string release: allOf: - - &694 + - &697 title: Release description: A release. type: object @@ -28466,7 +28608,7 @@ paths: author: *4 assets: type: array - items: &695 + items: &698 title: Release Asset description: Data related to a release. type: object @@ -28541,7 +28683,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *215 + reactions: *217 required: - assets_url - upload_url @@ -28634,7 +28776,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *35 '403': *27 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28724,7 +28866,7 @@ paths: _links: type: object properties: - timeline: &221 + timeline: &223 title: Link With Type description: Hypermedia Link with Type type: object @@ -28736,17 +28878,17 @@ paths: required: - href - type - user: *221 - security_advisories: *221 - current_user: *221 - current_user_public: *221 - current_user_actor: *221 - current_user_organization: *221 + user: *223 + security_advisories: *223 + current_user: *223 + current_user_public: *223 + current_user_actor: *223 + current_user_organization: *223 current_user_organizations: type: array - items: *221 - repository_discussions: *221 - repository_discussions_category: *221 + items: *223 + repository_discussions: *223 + repository_discussions_category: *223 required: - timeline - user @@ -28808,7 +28950,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *222 + - *224 - *17 - *19 responses: @@ -28818,7 +28960,7 @@ paths: application/json: schema: type: array - items: &223 + items: &225 title: Base Gist description: Base Gist type: object @@ -28904,7 +29046,7 @@ paths: - created_at - updated_at examples: - default: &224 + default: &226 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -29028,7 +29170,7 @@ paths: description: Response content: application/json: - schema: &225 + schema: &227 title: Gist Simple description: Gist Simple type: object @@ -29195,7 +29337,7 @@ paths: truncated: type: boolean examples: - default: &226 + default: &228 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -29299,7 +29441,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *222 + - *224 - *17 - *19 responses: @@ -29309,9 +29451,9 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *224 + default: *226 headers: Link: *45 '422': *15 @@ -29333,7 +29475,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *222 + - *224 - *17 - *19 responses: @@ -29343,9 +29485,9 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *224 + default: *226 headers: Link: *45 '401': *23 @@ -29373,7 +29515,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &227 + - &229 name: gist_id description: The unique identifier of the gist. in: path @@ -29385,10 +29527,10 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *226 - '403': &230 + default: *228 + '403': &232 description: Forbidden Gist content: application/json: @@ -29437,7 +29579,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *227 + - *229 requestBody: required: true content: @@ -29501,9 +29643,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - updateGist: *226 + updateGist: *228 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -29661,7 +29803,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *227 + - *229 responses: '204': description: Response @@ -29690,7 +29832,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *227 + - *229 - *17 - *19 responses: @@ -29700,7 +29842,7 @@ paths: application/json: schema: type: array - items: &228 + items: &230 title: Gist Comment description: A comment made to a gist. type: object @@ -29738,7 +29880,7 @@ paths: format: date-time examples: - '2011-04-18T23:23:56Z' - author_association: *214 + author_association: *216 required: - url - id @@ -29803,7 +29945,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *227 + - *229 requestBody: required: true content: @@ -29829,9 +29971,9 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: - default: &229 + default: &231 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -29889,8 +30031,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *227 - - &231 + - *229 + - &233 name: comment_id description: The unique identifier of the comment. in: path @@ -29903,12 +30045,12 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: - default: *229 + default: *231 '304': *35 '404': *6 - '403': *230 + '403': *232 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29930,8 +30072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *227 - - *231 + - *229 + - *233 requestBody: required: true content: @@ -29957,9 +30099,9 @@ paths: description: Response content: application/json: - schema: *228 + schema: *230 examples: - default: *229 + default: *231 '404': *6 x-github: githubCloudOnly: false @@ -29976,8 +30118,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *227 - - *231 + - *229 + - *233 responses: '204': description: Response @@ -30000,7 +30142,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *227 + - *229 - *17 - *19 responses: @@ -30101,7 +30243,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *227 + - *229 - *17 - *19 responses: @@ -30111,7 +30253,7 @@ paths: application/json: schema: type: array - items: *225 + items: *227 examples: default: value: @@ -30176,13 +30318,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *227 + - *229 responses: '201': description: Response content: application/json: - schema: *223 + schema: *225 examples: default: value: @@ -30253,7 +30395,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *227 + - *229 responses: '204': description: Response if gist is starred @@ -30283,7 +30425,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *227 + - *229 responses: '204': description: Response @@ -30305,7 +30447,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *227 + - *229 responses: '204': description: Response @@ -30334,7 +30476,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *227 + - *229 - name: sha in: path required: true @@ -30345,9 +30487,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *227 examples: - default: *226 + default: *228 '422': *15 '404': *6 '403': *27 @@ -30510,7 +30652,7 @@ paths: type: array items: allOf: - - *76 + - *78 repository_selection: type: string examples: @@ -30718,7 +30860,7 @@ paths: - closed - all default: open - - &370 + - &373 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -30736,8 +30878,8 @@ paths: - updated - comments default: created - - *108 - - *222 + - *110 + - *224 - name: collab in: query required: false @@ -30767,9 +30909,9 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: &371 + default: &374 value: - id: 1 node_id: MDU6SXNzdWUx @@ -31049,7 +31191,7 @@ paths: application/json: schema: type: array - items: *219 + items: *221 examples: default: value: @@ -31347,7 +31489,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &232 + X-CommonMarker-Version: &234 example: 0.17.4 schema: type: string @@ -31402,7 +31544,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *232 + X-CommonMarker-Version: *234 content: text/html: schema: @@ -31431,7 +31573,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: - - &235 + - &237 name: account_id description: account_id parameter in: path @@ -31443,7 +31585,7 @@ paths: description: Response content: application/json: - schema: &234 + schema: &236 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -31477,7 +31619,7 @@ paths: - 'null' id: type: integer - plan: &233 + plan: &235 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -31580,7 +31722,7 @@ paths: - 'null' updated_at: type: string - plan: *233 + plan: *235 required: - url - id @@ -31588,7 +31730,7 @@ paths: - login - marketplace_purchase examples: - default: &236 + default: &238 value: url: https://api.github.com/orgs/github type: Organization @@ -31673,9 +31815,9 @@ paths: application/json: schema: type: array - items: *233 + items: *235 examples: - default: &237 + default: &239 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -31715,14 +31857,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &238 + - &240 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &239 + - &241 name: sort description: The property to sort the results by. in: query @@ -31752,9 +31894,9 @@ paths: application/json: schema: type: array - items: *234 + items: *236 examples: - default: &240 + default: &242 value: - url: https://api.github.com/orgs/github type: Organization @@ -31828,15 +31970,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: - - *235 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *236 examples: - default: *236 + default: *238 '404': description: Not Found when the account has not purchased the listing '401': *23 @@ -31868,9 +32010,9 @@ paths: application/json: schema: type: array - items: *233 + items: *235 examples: - default: *237 + default: *239 headers: Link: *45 '401': *23 @@ -31893,8 +32035,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *238 - - *239 + - *240 + - *241 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -31914,9 +32056,9 @@ paths: application/json: schema: type: array - items: *234 + items: *236 examples: - default: *240 + default: *242 headers: Link: *45 '401': *23 @@ -32181,14 +32323,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: - - &449 + - &452 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &450 + - &453 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -32205,7 +32347,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -32250,7 +32392,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &455 + '301': &458 description: Moved permanently content: application/json: @@ -32272,7 +32414,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &668 + - &671 name: all description: If `true`, show notifications marked as read. in: query @@ -32280,7 +32422,7 @@ paths: schema: type: boolean default: false - - &669 + - &672 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -32289,8 +32431,8 @@ paths: schema: type: boolean default: false - - *222 - - &670 + - *224 + - &673 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: @@ -32315,14 +32457,14 @@ paths: application/json: schema: type: array - items: &242 + items: &244 title: Thread description: Thread type: object properties: id: type: string - repository: &276 + repository: &279 title: Minimal Repository description: Minimal Repository type: object @@ -32672,7 +32814,7 @@ paths: type: boolean examples: - false - security_and_analysis: &412 + security_and_analysis: &415 type: - object - 'null' @@ -32884,7 +33026,7 @@ paths: - url - subscription_url examples: - default: &671 + default: &674 value: - id: '1' repository: @@ -33050,7 +33192,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &243 + - &245 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 @@ -33064,7 +33206,7 @@ paths: description: Response content: application/json: - schema: *242 + schema: *244 examples: default: value: @@ -33167,7 +33309,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *243 + - *245 responses: '205': description: Reset Content @@ -33190,7 +33332,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *243 + - *245 responses: '204': description: No content @@ -33213,13 +33355,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: - - *243 + - *245 responses: '200': description: Response content: application/json: - schema: &244 + schema: &246 title: Thread Subscription description: Thread Subscription type: object @@ -33263,7 +33405,7 @@ paths: - url - subscribed examples: - default: &245 + default: &247 value: subscribed: true ignored: false @@ -33294,7 +33436,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *243 + - *245 requestBody: required: false content: @@ -33315,9 +33457,9 @@ paths: description: Response content: application/json: - schema: *244 + schema: *246 examples: - default: *245 + default: *247 '304': *35 '403': *27 '401': *23 @@ -33340,7 +33482,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *243 + - *245 responses: '204': description: Response @@ -33435,9 +33577,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: *246 + default: *248 headers: Link: example: ; rel="next" @@ -33503,13 +33645,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &247 + schema: &249 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -33543,12 +33685,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *247 + schema: *249 examples: selected_actions: *42 responses: @@ -33577,13 +33719,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &248 + schema: &250 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -33617,12 +33759,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *248 + schema: *250 examples: selected_actions: *44 responses: @@ -33651,7 +33793,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: - - *85 + - *87 - name: page in: query description: The page number of results to fetch. @@ -33697,7 +33839,7 @@ paths: items: anyOf: - type: 'null' - - *118 + - *120 additionalProperties: false examples: default: @@ -33802,7 +33944,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: - - *85 + - *87 requestBody: required: true content: @@ -33868,7 +34010,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: - - *85 + - *87 requestBody: required: true content: @@ -33921,7 +34063,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: - - *85 + - *87 responses: '200': description: Response @@ -33929,9 +34071,9 @@ paths: application/json: schema: type: array - items: *150 + items: *152 examples: - default: &677 + default: &680 value: - property_name: environment value: production @@ -33965,7 +34107,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: - - *85 + - *87 requestBody: required: true content: @@ -33977,11 +34119,11 @@ paths: type: array description: A list of custom property names and associated values to apply to the organization. - items: *150 + items: *152 required: - properties examples: - default: &678 + default: &681 value: properties: - property_name: environment @@ -34022,13 +34164,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#get-an-organization parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &249 + schema: &251 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -34432,7 +34574,7 @@ paths: - updated_at - archived_at examples: - default-response: &250 + default-response: &252 value: login: github id: 1 @@ -34533,7 +34675,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#update-an-organization parameters: - - *85 + - *87 requestBody: required: false content: @@ -34753,18 +34895,18 @@ paths: description: Response content: application/json: - schema: *249 + schema: *251 examples: - default: *250 + default: *252 '422': description: Validation failed content: application/json: schema: oneOf: - - *251 - - *252 - '409': *117 + - *253 + - *254 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34787,7 +34929,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#delete-an-organization parameters: - - *85 + - *87 responses: '202': *37 '404': *6 @@ -34813,15 +34955,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *253 + schema: *255 examples: - default: *254 + default: *256 headers: Link: *45 x-github: @@ -34844,7 +34986,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: - - *85 + - *87 - *17 - *19 responses: @@ -34862,7 +35004,7 @@ paths: type: integer repository_cache_usages: type: array - items: &462 + items: &465 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -34920,7 +35062,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: - - *85 + - *87 - *17 - *19 responses: @@ -34940,7 +35082,7 @@ paths: type: array items: *46 examples: - default: *255 + default: *257 headers: Link: *45 x-github: @@ -34960,7 +35102,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: - - *85 + - *87 requestBody: required: true content: @@ -35060,7 +35202,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: - - *85 + - *87 responses: '200': description: Response @@ -35098,7 +35240,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: - - *85 + - *87 - *48 responses: '200': @@ -35107,7 +35249,7 @@ paths: application/json: schema: *47 examples: - default: *256 + default: *258 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35126,7 +35268,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: - - *85 + - *87 - *48 responses: '204': @@ -35151,7 +35293,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: - *48 - - *85 + - *87 responses: '200': description: Response @@ -35189,7 +35331,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: - - *85 + - *87 - *48 - *51 responses: @@ -35199,7 +35341,7 @@ paths: application/json: schema: *50 examples: - default: *257 + default: *259 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35218,7 +35360,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: - - *85 + - *87 - *48 - *51 responses: @@ -35241,7 +35383,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: - - *85 + - *87 responses: '200': description: Response @@ -35277,7 +35419,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: - - *85 + - *87 responses: '200': description: Response @@ -35312,15 +35454,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *258 + schema: *260 examples: - default: *259 + default: *261 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35338,7 +35480,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: - - *85 + - *87 responses: '200': description: Response @@ -35356,7 +35498,7 @@ paths: type: array items: *54 examples: - default: *260 + default: *262 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35374,7 +35516,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: - - *85 + - *87 responses: '200': description: Response @@ -35418,7 +35560,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: - - *85 + - *87 - *56 responses: '200': @@ -35447,7 +35589,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: - - *85 + - *87 - *56 requestBody: required: true @@ -35519,7 +35661,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: - - *85 + - *87 - *56 responses: '202': @@ -35534,6 +35676,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: + - *87 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *57 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *27 + 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: + - *87 + requestBody: + required: true + content: + application/json: + schema: *263 + examples: + default: *58 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *57 + examples: + default: *58 + '400': + description: Invalid input + '403': *27 + '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: + - *87 + - 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': *27 + '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 @@ -35548,13 +35795,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: - - *85 + - *87 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &261 + schema: &264 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -35568,7 +35815,7 @@ paths: required: - include_claim_keys examples: - default: &262 + default: &265 value: include_claim_keys: - repo @@ -35590,20 +35837,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *261 + schema: *264 examples: - default: *262 + default: *265 responses: '201': description: Empty response content: application/json: - schema: &287 + schema: &290 title: Empty Object description: An object without any properties. type: object @@ -35633,7 +35880,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: - - *85 + - *87 responses: '200': description: Response @@ -35642,7 +35889,7 @@ paths: schema: type: object properties: - enabled_repositories: &264 + enabled_repositories: &267 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -35655,9 +35902,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: *58 - selected_actions_url: *263 - sha_pinning_required: *59 + allowed_actions: *60 + selected_actions_url: *266 + sha_pinning_required: *61 required: - enabled_repositories examples: @@ -35687,7 +35934,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: - - *85 + - *87 responses: '204': description: Response @@ -35698,9 +35945,9 @@ paths: schema: type: object properties: - enabled_repositories: *264 - allowed_actions: *58 - sha_pinning_required: *59 + enabled_repositories: *267 + allowed_actions: *60 + sha_pinning_required: *61 required: - enabled_repositories examples: @@ -35728,13 +35975,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *265 + schema: *268 examples: response: summary: Example response @@ -35760,12 +36007,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *266 + schema: *269 examples: application/json: value: @@ -35775,7 +36022,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 x-github: enabledForGitHubApps: true @@ -35795,15 +36042,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *267 + default: *270 '404': *6 x-github: enabledForGitHubApps: true @@ -35822,7 +36069,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: - - *85 + - *87 responses: '204': description: Response @@ -35832,7 +36079,7 @@ paths: required: true content: application/json: - schema: *60 + schema: *62 examples: default: summary: Set approval policy to first time contributors @@ -35854,15 +36101,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *61 + default: *63 '403': *27 '404': *6 x-github: @@ -35880,14 +36127,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *269 + schema: *272 examples: - default: *61 + default: *63 responses: '204': description: Empty response for successful settings update @@ -35917,7 +36164,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: - - *85 + - *87 - *17 - *19 responses: @@ -35935,9 +36182,9 @@ paths: type: number repositories: type: array - items: *76 + items: *78 examples: - default: &271 + default: &274 value: total_count: 1 repositories: @@ -36077,7 +36324,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: - - *85 + - *87 responses: '204': description: Response @@ -36121,8 +36368,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: - - *85 - - &270 + - *87 + - &273 name: repository_id description: The unique identifier of the repository. in: path @@ -36150,8 +36397,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: - - *85 - - *270 + - *87 + - *273 responses: '204': description: Response @@ -36174,15 +36421,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *63 + schema: *65 examples: - default: *64 + default: *66 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -36205,7 +36452,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: - - *85 + - *87 responses: '204': description: Response @@ -36213,9 +36460,9 @@ paths: required: false content: application/json: - schema: *63 + schema: *65 examples: - selected_actions: *64 + selected_actions: *66 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -36235,7 +36482,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: - - *85 + - *87 responses: '200': description: Response @@ -36283,7 +36530,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: - - *85 + - *87 requestBody: required: true content: @@ -36310,7 +36557,7 @@ paths: description: No content '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 x-github: enabledForGitHubApps: true @@ -36330,7 +36577,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: - - *85 + - *87 - *17 - *19 responses: @@ -36345,9 +36592,9 @@ paths: type: integer repositories: type: array - items: *76 + items: *78 examples: - default: *271 + default: *274 '403': *27 '404': *6 x-github: @@ -36367,7 +36614,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: - - *85 + - *87 requestBody: required: true content: @@ -36415,14 +36662,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: - - *85 - - *270 + - *87 + - *273 responses: '204': description: No content '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 x-github: enabledForGitHubApps: true @@ -36442,14 +36689,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: - - *85 - - *270 + - *87 + - *273 responses: '204': description: No content '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 x-github: enabledForGitHubApps: true @@ -36471,15 +36718,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: *67 + default: *69 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36500,7 +36747,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: - - *85 + - *87 responses: '204': description: Success response @@ -36511,9 +36758,9 @@ paths: required: false content: application/json: - schema: *273 + schema: *276 examples: - default: *67 + default: *69 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36533,7 +36780,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: - - *85 + - *87 - *17 - *19 - name: visible_to_repository @@ -36558,7 +36805,7 @@ paths: type: number runner_groups: type: array - items: &274 + items: &277 type: object properties: id: @@ -36675,7 +36922,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: - - *85 + - *87 requestBody: required: true content: @@ -36748,9 +36995,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: - default: &275 + default: &278 value: id: 2 name: octo-runner-group @@ -36785,14 +37032,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: - - *85 - - *70 + - *87 + - *72 responses: '200': description: Response content: application/json: - schema: *274 + schema: *277 examples: default: value: @@ -36828,8 +37075,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: - - *85 - - *70 + - *87 + - *72 requestBody: required: true content: @@ -36885,9 +37132,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: - default: *275 + default: *278 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -36906,8 +37153,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: - - *85 - - *70 + - *87 + - *72 responses: '204': description: Response @@ -36930,8 +37177,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: - - *85 - - *70 + - *87 + - *72 - *17 - *19 responses: @@ -36951,7 +37198,7 @@ paths: type: array items: *46 examples: - default: *255 + default: *257 headers: Link: *45 x-github: @@ -36973,8 +37220,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: - - *85 - - *70 + - *87 + - *72 - *19 - *17 responses: @@ -36992,9 +37239,9 @@ paths: type: number repositories: type: array - items: *276 + items: *279 examples: - default: &784 + default: &787 value: total_count: 1 repositories: @@ -37246,8 +37493,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: - - *85 - - *70 + - *87 + - *72 requestBody: required: true content: @@ -37291,9 +37538,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: - - *85 - - *70 - - *270 + - *87 + - *72 + - *273 responses: '204': description: Response @@ -37315,9 +37562,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: - - *85 - - *70 - - *270 + - *87 + - *72 + - *273 responses: '204': description: Response @@ -37340,8 +37587,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: - - *85 - - *70 + - *87 + - *72 - *17 - *19 responses: @@ -37359,9 +37606,9 @@ paths: type: number runners: type: array - items: *74 + items: *76 examples: - default: *75 + default: *77 headers: Link: *45 x-github: @@ -37382,8 +37629,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: - - *85 - - *70 + - *87 + - *72 requestBody: required: true content: @@ -37427,9 +37674,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: - - *85 - - *70 - - *73 + - *87 + - *72 + - *75 responses: '204': description: Response @@ -37451,9 +37698,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: - - *85 - - *70 - - *73 + - *87 + - *72 + - *75 responses: '204': description: Response @@ -37483,7 +37730,7 @@ paths: in: query schema: type: string - - *85 + - *87 - *17 - *19 responses: @@ -37501,9 +37748,9 @@ paths: type: integer runners: type: array - items: *74 + items: *76 examples: - default: *75 + default: *77 headers: Link: *45 x-github: @@ -37527,7 +37774,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: - - *85 + - *87 responses: '200': description: Response @@ -37535,9 +37782,9 @@ paths: application/json: schema: type: array - items: *277 + items: *280 examples: - default: *278 + default: *281 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37559,7 +37806,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: - - *85 + - *87 requestBody: required: true content: @@ -37602,10 +37849,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *279 + '201': *282 '404': *6 '422': *7 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37633,15 +37880,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: - - *85 + - *87 responses: '201': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *280 + default: *283 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37669,15 +37916,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: - - *85 + - *87 responses: '201': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *281 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37699,16 +37946,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: - - *85 - - *73 + - *87 + - *75 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: *282 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37729,8 +37976,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: - - *85 - - *73 + - *87 + - *75 responses: '204': description: Response @@ -37756,10 +38003,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: - - *85 - - *73 + - *87 + - *75 responses: - '200': *79 + '200': *81 '404': *6 x-github: githubCloudOnly: false @@ -37781,8 +38028,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: - - *85 - - *73 + - *87 + - *75 requestBody: required: true content: @@ -37806,7 +38053,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -37830,8 +38077,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: - - *85 - - *73 + - *87 + - *75 requestBody: required: true content: @@ -37856,7 +38103,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -37880,10 +38127,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: - - *85 - - *73 + - *87 + - *75 responses: - '200': *283 + '200': *286 '404': *6 x-github: githubCloudOnly: false @@ -37910,11 +38157,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: - - *85 - - *73 - - *284 + - *87 + - *75 + - *287 responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -37939,7 +38186,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-organization-secrets parameters: - - *85 + - *87 - *17 - *19 responses: @@ -37957,7 +38204,7 @@ paths: type: integer secrets: type: array - items: &285 + items: &288 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -38032,13 +38279,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-public-key parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &482 + schema: &485 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -38073,7 +38320,7 @@ paths: - key_id - key examples: - default: &483 + default: &486 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38098,8 +38345,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - - *85 - - &286 + - *87 + - &289 name: secret_name description: The name of the secret. in: path @@ -38111,7 +38358,7 @@ paths: description: Response content: application/json: - schema: *285 + schema: *288 examples: default: value: @@ -38141,8 +38388,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -38199,7 +38446,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -38225,8 +38472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 responses: '204': description: Response @@ -38252,8 +38499,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: - - *85 - - *286 + - *87 + - *289 - *19 - *17 responses: @@ -38271,9 +38518,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: &290 + default: &293 value: total_count: 1 repositories: @@ -38365,8 +38612,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: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -38418,8 +38665,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -38452,8 +38699,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -38485,8 +38732,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - - *85 - - &467 + - *87 + - &470 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)." @@ -38510,7 +38757,7 @@ paths: type: integer variables: type: array - items: &288 + items: &291 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -38600,7 +38847,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-organization-variable parameters: - - *85 + - *87 requestBody: required: true content: @@ -38648,7 +38895,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -38673,8 +38920,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - - *85 - - &289 + - *87 + - &292 name: name description: The name of the variable. in: path @@ -38686,7 +38933,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *291 examples: default: value: @@ -38716,8 +38963,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - - *85 - - *289 + - *87 + - *292 requestBody: required: true content: @@ -38779,8 +39026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - - *85 - - *289 + - *87 + - *292 responses: '204': description: Response @@ -38806,8 +39053,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: - - *85 - - *289 + - *87 + - *292 - *19 - *17 responses: @@ -38825,9 +39072,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: *290 + default: *293 '409': description: Response when the visibility of the variable is not set to `selected` @@ -38853,8 +39100,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: - - *85 - - *289 + - *87 + - *292 requestBody: required: true content: @@ -38903,8 +39150,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: - - *85 - - *289 + - *87 + - *292 - name: repository_id in: path required: true @@ -38938,8 +39185,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: - - *85 - - *289 + - *87 + - *292 - name: repository_id in: path required: true @@ -38970,15 +39217,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#get-announcement-banner-for-organization parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *83 + default: *85 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -38997,19 +39244,19 @@ paths: required: true content: application/json: - schema: *291 + schema: *294 examples: - default: *83 + default: *85 parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *84 + schema: *86 examples: - default: *83 + default: *85 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -39025,7 +39272,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/announcement-banners/organizations#remove-announcement-banner-from-organization parameters: - - *85 + - *87 responses: '204': description: Response @@ -39058,7 +39305,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *85 + - *87 requestBody: required: true content: @@ -39177,7 +39424,7 @@ paths: type: integer deployment_records: type: array - items: &292 + items: &295 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -39222,7 +39469,7 @@ paths: description: The ID of the provenance attestation associated with the deployment record. examples: - default: &293 + default: &296 value: total_count: 1 deployment_records: @@ -39257,7 +39504,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *85 + - *87 - name: cluster in: path description: The cluster name. @@ -39395,9 +39642,9 @@ paths: type: integer deployment_records: type: array - items: *292 + items: *295 examples: - default: *293 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39417,7 +39664,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *85 + - *87 requestBody: required: true content: @@ -39581,7 +39828,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *85 + - *87 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -39607,9 +39854,9 @@ paths: - 3 deployment_records: type: array - items: *292 + items: *295 examples: - default: *293 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39629,7 +39876,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *85 + - *87 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -39713,9 +39960,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *106 - - *107 - - *85 + - *108 + - *109 + - *87 requestBody: required: true content: @@ -39739,12 +39986,12 @@ paths: required: - subject_digests examples: - default: &814 + default: &817 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &815 + withPredicateType: &818 value: subject_digests: - sha256:abc123 @@ -39789,7 +40036,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &816 + default: &819 value: attestations_subject_digests: - sha256:abc: @@ -39898,7 +40145,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *85 + - *87 requestBody: required: true content: @@ -39963,7 +40210,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *85 + - *87 - name: subject_digest description: Subject Digest in: path @@ -39996,9 +40243,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *106 - - *107 - - *85 + - *108 + - *109 + - *87 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -40046,7 +40293,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#delete-attestations-by-id parameters: - - *85 + - *87 - name: attestation_id description: Attestation ID in: path @@ -40082,9 +40329,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/attestations#list-attestations parameters: - *17 - - *106 - - *107 - - *85 + - *108 + - *109 + - *87 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -40122,7 +40369,7 @@ paths: initiator: type: string examples: - default: &496 + default: &499 value: attestations: - bundle: @@ -40240,7 +40487,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: - - *85 + - *87 - 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). @@ -40248,10 +40495,10 @@ paths: required: false schema: type: string - - *294 - - *295 - - *296 - *297 + - *298 + - *299 + - *300 - *17 responses: '200': @@ -40260,9 +40507,9 @@ paths: application/json: schema: type: array - items: *298 + items: *301 examples: - default: *299 + default: *302 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -40279,7 +40526,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *85 + - *87 - *17 - *19 responses: @@ -40291,7 +40538,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40310,8 +40557,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: If the user is blocked @@ -40336,8 +40583,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -40357,8 +40604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -40384,17 +40631,17 @@ paths: category: orgs subcategory: bypass-requests parameters: - - *85 - - &302 + - *87 + - &305 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - *101 - - *102 - *103 - *104 + - *105 + - *106 - *17 - *19 responses: @@ -40404,9 +40651,9 @@ paths: application/json: schema: type: array - items: *300 + items: *303 examples: - default: *301 + default: *304 '404': *6 '500': *38 "/orgs/{org}/bypass-requests/secret-scanning": @@ -40429,12 +40676,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *85 - - *302 - - *101 - - *102 + - *87 + - *305 - *103 - *104 + - *105 + - *106 - *17 - *19 responses: @@ -40444,9 +40691,9 @@ paths: application/json: schema: type: array - items: *303 + items: *306 examples: - default: *304 + default: *307 '404': *6 '500': *38 "/orgs/{org}/campaigns": @@ -40465,15 +40712,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *85 + - *87 - *19 - *17 - - *108 + - *110 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &306 + schema: &309 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -40499,7 +40746,7 @@ paths: application/json: schema: type: array - items: &307 + items: &310 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -40530,7 +40777,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *305 + items: *308 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -40549,7 +40796,7 @@ paths: - string - 'null' format: date-time - state: *306 + state: *309 contact_link: description: The contact link of the campaign. type: @@ -40647,7 +40894,7 @@ paths: headers: Link: *45 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40671,7 +40918,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *85 + - *87 requestBody: required: true content: @@ -40772,9 +41019,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *310 examples: - default: &308 + default: &311 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -40823,7 +41070,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40845,7 +41092,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *85 + - *87 - name: campaign_number description: The campaign number. in: path @@ -40857,16 +41104,16 @@ paths: description: Response content: application/json: - schema: *307 + schema: *310 examples: - default: *308 + default: *311 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40887,7 +41134,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#update-a-campaign parameters: - - *85 + - *87 - name: campaign_number description: The campaign number. in: path @@ -40937,7 +41184,7 @@ paths: - string - 'null' format: uri - state: *306 + state: *309 examples: default: value: @@ -40947,9 +41194,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *310 examples: - default: *308 + default: *311 '400': description: Bad Request content: @@ -40961,7 +41208,7 @@ paths: content: application/json: schema: *3 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40982,7 +41229,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *85 + - *87 - name: campaign_number description: The campaign number. in: path @@ -40993,7 +41240,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41015,20 +41262,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: - - *85 - - *309 - - *310 - - *106 - - *107 + - *87 + - *312 + - *313 + - *108 + - *109 - *19 - *17 - - *108 + - *110 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: *311 + schema: *314 - name: sort description: The property by which to sort the results. in: query @@ -41044,7 +41291,7 @@ paths: be returned. in: query required: false - schema: &521 + schema: &524 type: string description: Severity of a code scanning alert. enum: @@ -41070,13 +41317,13 @@ paths: application/json: schema: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 headers: Link: *45 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41098,7 +41345,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: - - *85 + - *87 - name: target_type in: query description: The target type of the code security configuration @@ -41117,8 +41364,8 @@ paths: schema: type: integer default: 30 - - *106 - - *107 + - *108 + - *109 responses: '200': description: Response @@ -41126,7 +41373,7 @@ paths: application/json: schema: type: array - items: *112 + items: *114 examples: default: value: @@ -41209,7 +41456,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#create-a-code-security-configuration parameters: - - *85 + - *87 requestBody: required: true content: @@ -41296,7 +41543,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *116 + code_scanning_options: *118 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -41305,7 +41552,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *115 + code_scanning_default_setup_options: *117 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -41444,9 +41691,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *112 + schema: *114 examples: - default: *314 + default: *317 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41468,15 +41715,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-default-code-security-configurations parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *315 + schema: *318 examples: - default: *316 + default: *319 '304': *35 '403': *27 '404': *6 @@ -41502,7 +41749,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *85 + - *87 requestBody: required: true content: @@ -41528,11 +41775,11 @@ paths: - 32 - 91 responses: - '204': *149 + '204': *151 '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41554,16 +41801,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-a-code-security-configuration parameters: - - *85 - - *114 + - *87 + - *116 responses: '200': description: Response content: application/json: - schema: *112 + schema: *114 examples: - default: *314 + default: *317 '304': *35 '403': *27 '404': *6 @@ -41587,8 +41834,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#update-a-code-security-configuration parameters: - - *85 - - *114 + - *87 + - *116 requestBody: required: true content: @@ -41675,8 +41922,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *115 - code_scanning_options: *116 + code_scanning_default_setup_options: *117 + code_scanning_options: *118 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -41801,7 +42048,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *112 + schema: *114 examples: default: value: @@ -41860,14 +42107,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *85 - - *114 + - *87 + - *116 responses: - '204': *149 + '204': *151 '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41891,8 +42138,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *85 - - *114 + - *87 + - *116 requestBody: required: true content: @@ -41955,8 +42202,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: - - *85 - - *114 + - *87 + - *116 requestBody: required: true content: @@ -41996,12 +42243,12 @@ paths: - none - private_and_internal - public - configuration: *112 + configuration: *114 examples: default: value: default_for_new_repos: all - configuration: *314 + configuration: *317 '403': *27 '404': *6 x-github: @@ -42025,8 +42272,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: - - *85 - - *114 + - *87 + - *116 - 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)." @@ -42035,8 +42282,8 @@ paths: schema: type: integer default: 30 - - *106 - - *107 + - *108 + - *109 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -42054,13 +42301,13 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *318 + repository: *321 '403': *27 '404': *6 x-github: @@ -42084,7 +42331,7 @@ paths: parameters: - *17 - *19 - - *85 + - *87 responses: '200': description: Response @@ -42100,7 +42347,7 @@ paths: type: integer codespaces: type: array - items: &372 + items: &375 type: object title: Codespace description: A codespace. @@ -42131,11 +42378,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *276 + repository: *279 machine: anyOf: - type: 'null' - - &553 + - &556 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -42422,7 +42669,7 @@ paths: - pulls_url - recent_folders examples: - default: &373 + default: &376 value: total_count: 3 codespaces: @@ -42854,7 +43101,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *85 + - *87 deprecated: true requestBody: required: true @@ -42921,7 +43168,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: - - *85 + - *87 deprecated: true requestBody: required: true @@ -42976,7 +43223,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *85 + - *87 requestBody: required: true content: @@ -43028,7 +43275,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *85 + - *87 - *17 - *19 responses: @@ -43046,7 +43293,7 @@ paths: type: integer secrets: type: array - items: &319 + items: &322 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -43087,7 +43334,7 @@ paths: - updated_at - visibility examples: - default: &554 + default: &557 value: total_count: 2 secrets: @@ -43119,13 +43366,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &555 + schema: &558 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -43160,7 +43407,7 @@ paths: - key_id - key examples: - default: &556 + default: &559 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -43183,16 +43430,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 responses: '200': description: Response content: application/json: - schema: *319 + schema: *322 examples: - default: &558 + default: &561 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -43219,8 +43466,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: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -43275,7 +43522,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -43301,8 +43548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 responses: '204': description: Response @@ -43327,8 +43574,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: - - *85 - - *286 + - *87 + - *289 - *19 - *17 responses: @@ -43346,9 +43593,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: *290 + default: *293 '404': *6 x-github: githubCloudOnly: false @@ -43370,8 +43617,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: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -43421,8 +43668,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -43455,8 +43702,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -43495,7 +43742,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: - - *85 + - *87 responses: '200': description: OK @@ -43636,7 +43883,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: - - *85 + - *87 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -43659,9 +43906,9 @@ paths: currently being billed. seats: type: array - items: *140 + items: *142 examples: - default: *141 + default: *143 headers: Link: *45 '500': *38 @@ -43697,7 +43944,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: - - *85 + - *87 requestBody: content: application/json: @@ -43775,7 +44022,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: - - *85 + - *87 requestBody: content: application/json: @@ -43855,7 +44102,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: - - *85 + - *87 requestBody: content: application/json: @@ -43932,7 +44179,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: - - *85 + - *87 requestBody: content: application/json: @@ -44014,7 +44261,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: - - *85 + - *87 responses: '200': description: OK @@ -44067,7 +44314,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: - - *85 + - *87 requestBody: description: The content exclusion rules to set required: true @@ -44123,7 +44370,7 @@ paths: '401': *23 '403': *27 '404': *6 - '413': *320 + '413': *323 '422': *7 x-github: githubCloudOnly: @@ -44154,7 +44401,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: - - *85 + - *87 - 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`). @@ -44186,13 +44433,13 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 '500': *38 '403': *27 '404': *6 - '422': *205 + '422': *207 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44218,16 +44465,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: - - *85 - - *119 + - *87 + - *121 responses: '200': description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '500': *38 '403': *27 '404': *6 @@ -44256,15 +44503,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *122 + schema: *124 examples: - default: *123 + default: *125 '500': *38 '403': *27 '404': *6 @@ -44293,16 +44540,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: - - *85 - - *119 + - *87 + - *121 responses: '200': description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '500': *38 '403': *27 '404': *6 @@ -44331,15 +44578,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *122 + schema: *124 examples: - default: *123 + default: *125 '500': *38 '403': *27 '404': *6 @@ -44364,7 +44611,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: - - *85 + - *87 - *17 - name: page description: Page token @@ -44523,7 +44770,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: - - *85 + - *87 - name: credential_id in: path required: true @@ -44554,7 +44801,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: - - *85 + - *87 responses: '200': description: Response - list of custom role names @@ -44570,7 +44817,7 @@ paths: - 3 custom_roles: type: array - items: &321 + items: &324 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -44704,12 +44951,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#create-a-custom-repository-role parameters: - - *85 + - *87 requestBody: required: true content: application/json: - schema: &323 + schema: &326 type: object properties: name: @@ -44751,9 +44998,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: &322 + default: &325 value: id: 8030 name: Security Engineer @@ -44800,16 +45047,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - - *85 - - *136 + - *87 + - *138 responses: '200': description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '404': *6 x-github: githubCloudOnly: true @@ -44831,13 +45078,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - - *85 - - *136 + - *87 + - *138 requestBody: required: true content: application/json: - schema: &324 + schema: &327 type: object properties: name: @@ -44876,9 +45123,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '422': *15 '404': *6 x-github: @@ -44902,8 +45149,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - - *85 - - *136 + - *87 + - *138 responses: '204': description: Response @@ -44931,12 +45178,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: - - *85 + - *87 requestBody: required: true content: application/json: - schema: *323 + schema: *326 examples: default: value: @@ -44950,9 +45197,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '422': *15 '404': *6 x-github: @@ -44982,16 +45229,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: - - *85 - - *136 + - *87 + - *138 responses: '200': description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '404': *6 x-github: githubCloudOnly: true @@ -45019,13 +45266,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: - - *85 - - *136 + - *87 + - *138 requestBody: required: true content: application/json: - schema: *324 + schema: *327 examples: default: value: @@ -45040,9 +45287,9 @@ paths: description: Response content: application/json: - schema: *321 + schema: *324 examples: - default: *322 + default: *325 '422': *15 '404': *6 x-github: @@ -45072,8 +45319,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: - - *85 - - *136 + - *87 + - *138 responses: '204': description: Response @@ -45101,12 +45348,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *85 - - *325 - - *326 - - *327 + - *87 - *328 - *329 + - *330 + - *331 + - *332 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -45136,7 +45383,7 @@ paths: enum: - patch - deployment - - *330 + - *333 - name: runtime_risk in: query description: |- @@ -45145,11 +45392,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *331 - - *332 + - *334 + - *335 + - *110 - *108 - - *106 - - *107 + - *109 - *17 responses: '200': @@ -45158,9 +45405,9 @@ paths: application/json: schema: type: array - items: *333 + items: *336 examples: - default: *334 + default: *337 '304': *35 '400': *14 '403': *27 @@ -45186,7 +45433,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-organization-secrets parameters: - - *85 + - *87 - *17 - *19 responses: @@ -45204,7 +45451,7 @@ paths: type: integer secrets: type: array - items: &335 + items: &338 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -45277,13 +45524,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-public-key parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: &584 + schema: &587 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -45302,7 +45549,7 @@ paths: - key_id - key examples: - default: &585 + default: &588 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -45325,14 +45572,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 responses: '200': description: Response content: application/json: - schema: *335 + schema: *338 examples: default: value: @@ -45360,8 +45607,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -45416,7 +45663,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -45440,8 +45687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - - *85 - - *286 + - *87 + - *289 responses: '204': description: Response @@ -45465,8 +45712,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: - - *85 - - *286 + - *87 + - *289 - *19 - *17 responses: @@ -45484,9 +45731,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: *290 + default: *293 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45507,8 +45754,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: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -45558,8 +45805,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -45590,8 +45837,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: - - *85 - - *286 + - *87 + - *289 - name: repository_id in: path required: true @@ -45627,8 +45874,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *85 - - &593 + - *87 + - &596 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -45636,7 +45883,7 @@ paths: required: false schema: type: string - - &594 + - &597 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -45644,7 +45891,7 @@ paths: required: false schema: type: string - - &595 + - &598 name: time_period description: |- The time period to filter by. @@ -45660,7 +45907,7 @@ paths: - week - month default: month - - &596 + - &599 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -45675,7 +45922,7 @@ paths: - denied - all default: all - - *302 + - *305 - *17 - *19 responses: @@ -45685,7 +45932,7 @@ paths: application/json: schema: type: array - items: &597 + items: &600 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -45795,7 +46042,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: &336 + items: &339 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -45848,7 +46095,7 @@ paths: examples: - https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &598 + default: &601 value: - id: 21 number: 42 @@ -45935,12 +46182,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *85 - - *302 - - *101 - - *102 + - *87 + - *305 - *103 - - &337 + - *104 + - *105 + - &340 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -45966,7 +46213,7 @@ paths: application/json: schema: type: array - items: &599 + items: &602 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -46076,7 +46323,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: *336 + items: *339 url: type: string format: uri @@ -46089,7 +46336,7 @@ paths: examples: - https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &600 + default: &603 value: - id: 21 number: 42 @@ -46176,12 +46423,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *85 - - *302 - - *101 - - *102 + - *87 + - *305 - *103 - - *337 + - *104 + - *105 + - *340 - *17 - *19 responses: @@ -46191,7 +46438,7 @@ paths: application/json: schema: type: array - items: &601 + items: &604 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -46305,7 +46552,7 @@ paths: - array - 'null' description: The responses to the dismissal request. - items: *105 + items: *107 url: type: string format: uri @@ -46318,7 +46565,7 @@ paths: examples: - https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &602 + default: &605 value: - id: 21 number: 42 @@ -46398,7 +46645,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: - - *85 + - *87 responses: '200': description: Response @@ -46406,7 +46653,7 @@ paths: application/json: schema: type: array - items: &382 + items: &385 title: Package description: A software package type: object @@ -46459,7 +46706,7 @@ paths: repository: anyOf: - type: 'null' - - *276 + - *279 created_at: type: string format: date-time @@ -46477,7 +46724,7 @@ paths: - created_at - updated_at examples: - default: &383 + default: &386 value: - id: 197 name: hello_docker @@ -46555,7 +46802,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-organization-events parameters: - - *85 + - *87 - *17 - *19 responses: @@ -46565,7 +46812,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: 200-response: value: @@ -46638,7 +46885,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#get-an-external-group parameters: - - *85 + - *87 - name: group_id description: The unique identifier of the group. in: path @@ -46664,7 +46911,7 @@ paths: description: Response content: application/json: - schema: &446 + schema: &449 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -46754,7 +47001,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &447 + default: &450 value: group_id: '123' group_name: Octocat admins @@ -46792,7 +47039,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: - - *85 + - *87 - *17 - name: page description: Page token @@ -46809,7 +47056,7 @@ paths: description: Response content: application/json: - schema: &443 + schema: &446 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -46849,7 +47096,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &444 + default: &447 value: groups: - group_id: '123' @@ -46884,7 +47131,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-failed-organization-invitations parameters: - - *85 + - *87 - *17 - *19 responses: @@ -46894,7 +47141,7 @@ paths: application/json: schema: type: array - items: &361 + items: &364 title: Organization Invitation description: Organization Invitation type: object @@ -46948,7 +47195,7 @@ paths: - invitation_teams_url - node_id examples: - default: &362 + default: &365 value: - id: 1 login: monalisa @@ -47007,7 +47254,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: - - *85 + - *87 responses: '200': description: Response @@ -47015,7 +47262,7 @@ paths: application/json: schema: type: array - items: &413 + items: &416 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -47029,7 +47276,7 @@ paths: - name - description examples: - default: &414 + default: &417 value: - name: add_assignee description: Assign or remove a user @@ -47060,7 +47307,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-organization-webhooks parameters: - - *85 + - *87 - *17 - *19 responses: @@ -47070,7 +47317,7 @@ paths: application/json: schema: type: array - items: &338 + items: &341 title: Org Hook description: Org Hook type: object @@ -47191,7 +47438,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#create-an-organization-webhook parameters: - - *85 + - *87 requestBody: required: true content: @@ -47253,9 +47500,9 @@ paths: description: Response content: application/json: - schema: *338 + schema: *341 examples: - default: &339 + default: &342 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -47299,8 +47546,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - - *85 - - &340 + - *87 + - &343 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. @@ -47313,9 +47560,9 @@ paths: description: Response content: application/json: - schema: *338 + schema: *341 examples: - default: *339 + default: *342 '404': *6 x-github: githubCloudOnly: false @@ -47336,8 +47583,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - - *85 - - *340 + - *87 + - *343 requestBody: required: false content: @@ -47383,7 +47630,7 @@ paths: description: Response content: application/json: - schema: *338 + schema: *341 examples: default: value: @@ -47422,8 +47669,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *85 - - *340 + - *87 + - *343 responses: '204': description: Response @@ -47448,8 +47695,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: - - *85 - - *340 + - *87 + - *343 responses: '200': description: Response @@ -47477,8 +47724,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: - - *85 - - *340 + - *87 + - *343 requestBody: required: false content: @@ -47526,10 +47773,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *85 - - *340 + - *87 + - *343 - *17 - - *341 + - *344 responses: '200': description: Response @@ -47537,9 +47784,9 @@ paths: application/json: schema: type: array - items: *342 + items: *345 examples: - default: *343 + default: *346 '400': *14 '422': *15 x-github: @@ -47562,17 +47809,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: - - *85 - - *340 + - *87 + - *343 - *16 responses: '200': description: Response content: application/json: - schema: *344 + schema: *347 examples: - default: *345 + default: *348 '400': *14 '422': *15 x-github: @@ -47595,8 +47842,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: - - *85 - - *340 + - *87 + - *343 - *16 responses: '202': *37 @@ -47622,8 +47869,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *85 - - *340 + - *87 + - *343 responses: '204': description: Response @@ -47645,8 +47892,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *85 - - &350 + - *87 + - &353 name: actor_type in: path description: The type of the actor @@ -47659,14 +47906,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &351 + - &354 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &346 + - &349 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`.' @@ -47674,7 +47921,7 @@ paths: required: true schema: type: string - - &347 + - &350 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) @@ -47685,7 +47932,7 @@ paths: type: string - *19 - *17 - - *108 + - *110 - name: sort description: The property to sort the results by. in: query @@ -47768,13 +48015,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - - *85 - - *346 - - *347 + - *87 + - *349 + - *350 - *19 - *17 - - *108 - - &356 + - *110 + - &359 name: sort description: The property to sort the results by. in: query @@ -47852,15 +48099,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - - *85 - - *346 - - *347 + - *87 + - *349 + - *350 responses: '200': description: Response content: application/json: - schema: &348 + schema: &351 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -47876,7 +48123,7 @@ paths: type: integer format: int64 examples: - default: &349 + default: &352 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -47896,24 +48143,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *85 - - &352 + - *87 + - &355 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *346 - - *347 + - *349 + - *350 responses: '200': description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: enabledForGitHubApps: true category: orgs @@ -47931,19 +48178,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *85 - - *346 - - *347 + - *87 + - *349 - *350 - - *351 + - *353 + - *354 responses: '200': description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: enabledForGitHubApps: true category: orgs @@ -47960,10 +48207,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - - *85 - - *346 - - *347 - - &353 + - *87 + - *349 + - *350 + - &356 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -47976,7 +48223,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &357 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -47992,7 +48239,7 @@ paths: type: integer format: int64 examples: - default: &355 + default: &358 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -48028,19 +48275,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - - *85 - - *352 - - *346 - - *347 - - *353 + - *87 + - *355 + - *349 + - *350 + - *356 responses: '200': description: Response content: application/json: - schema: *354 + schema: *357 examples: - default: *355 + default: *358 x-github: enabledForGitHubApps: true category: orgs @@ -48057,20 +48304,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *85 - - *350 - - *351 - - *346 - - *347 + - *87 - *353 + - *354 + - *349 + - *350 + - *356 responses: '200': description: Response content: application/json: - schema: *354 + schema: *357 examples: - default: *355 + default: *358 x-github: enabledForGitHubApps: true category: orgs @@ -48087,14 +48334,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - - *85 - - *352 - - *346 - - *347 + - *87 + - *355 + - *349 + - *350 - *19 - *17 - - *108 - - *356 + - *110 + - *359 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -48170,7 +48417,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: - - *85 + - *87 responses: '200': description: Response @@ -48178,7 +48425,7 @@ paths: application/json: schema: *20 examples: - default: *357 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -48201,7 +48448,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *85 + - *87 - *17 - *19 responses: @@ -48290,7 +48537,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *85 + - *87 responses: '200': description: Response @@ -48298,12 +48545,12 @@ paths: application/json: schema: anyOf: - - &359 + - &362 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &358 + limit: &361 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -48331,7 +48578,7 @@ paths: properties: {} additionalProperties: false examples: - default: &360 + default: &363 value: limit: collaborators_only origin: organization @@ -48355,18 +48602,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *85 + - *87 requestBody: required: true content: application/json: - schema: &633 + schema: &636 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *358 + limit: *361 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -48391,9 +48638,9 @@ paths: description: Response content: application/json: - schema: *359 + schema: *362 examples: - default: *360 + default: *363 '422': *15 x-github: githubCloudOnly: false @@ -48411,7 +48658,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *85 + - *87 responses: '204': description: Response @@ -48437,7 +48684,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-pending-organization-invitations parameters: - - *85 + - *87 - *17 - *19 - name: role @@ -48471,9 +48718,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *362 + default: *365 headers: Link: *45 '404': *6 @@ -48497,7 +48744,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#create-an-organization-invitation parameters: - - *85 + - *87 requestBody: required: false content: @@ -48551,7 +48798,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: default: value: @@ -48607,8 +48854,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - - *85 - - &363 + - *87 + - &366 name: invitation_id description: The unique identifier of the invitation. in: path @@ -48641,8 +48888,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - - *85 - - *363 + - *87 + - *366 - *17 - *19 responses: @@ -48652,9 +48899,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: &381 + default: &384 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -48689,7 +48936,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: - - *85 + - *87 responses: '200': description: Response @@ -48697,7 +48944,7 @@ paths: application/json: schema: type: array - items: &364 + items: &367 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -48847,7 +49094,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: - - *85 + - *87 requestBody: required: true content: @@ -48940,9 +49187,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: &365 + default: &368 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -48997,8 +49244,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: - - *85 - - &366 + - *87 + - &369 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -49099,9 +49346,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: *365 + default: *368 '404': *6 '422': *7 x-github: @@ -49125,10 +49372,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: - - *85 - - *366 + - *87 + - *369 responses: - '204': *149 + '204': *151 '404': *6 '422': *7 x-github: @@ -49148,7 +49395,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: - - *85 + - *87 responses: '200': description: Response @@ -49156,7 +49403,7 @@ paths: application/json: schema: type: array - items: *367 + items: *370 examples: default: value: @@ -49194,7 +49441,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: - - *85 + - *87 requestBody: required: true content: @@ -49244,9 +49491,9 @@ paths: description: Response content: application/json: - schema: *367 + schema: *370 examples: - default: &368 + default: &371 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -49278,8 +49525,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: - - *85 - - &369 + - *87 + - &372 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -49335,9 +49582,9 @@ paths: description: Response content: application/json: - schema: *367 + schema: *370 examples: - default: *368 + default: *371 '404': *6 '422': *7 x-github: @@ -49361,8 +49608,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: - - *85 - - *369 + - *87 + - *372 responses: '204': description: Response @@ -49395,7 +49642,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: - - *85 + - *87 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -49425,7 +49672,7 @@ paths: - closed - all default: open - - *370 + - *373 - name: type description: Can be the name of an issue type. in: query @@ -49443,8 +49690,8 @@ paths: - updated - comments default: created - - *108 - - *222 + - *110 + - *224 - *17 - *19 responses: @@ -49454,9 +49701,9 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: *371 + default: *374 headers: Link: *45 '404': *6 @@ -49478,7 +49725,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-members parameters: - - *85 + - *87 - 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) @@ -49516,7 +49763,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 '422': *15 @@ -49536,8 +49783,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response if requester is an organization member and user is @@ -49571,8 +49818,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -49599,8 +49846,8 @@ paths: parameters: - *17 - *19 - - *85 - - *137 + - *87 + - *139 responses: '200': description: Response @@ -49616,9 +49863,9 @@ paths: type: integer codespaces: type: array - items: *372 + items: *375 examples: - default: *373 + default: *376 '304': *35 '500': *38 '401': *23 @@ -49643,9 +49890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *85 - - *137 - - &374 + - *87 + - *139 + - &377 name: codespace_name in: path required: true @@ -49678,17 +49925,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: - - *85 - - *137 - - *374 + - *87 + - *139 + - *377 responses: '200': description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: &552 + default: &555 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -49861,14 +50108,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: - - *85 - - *137 + - *87 + - *139 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *140 + schema: *142 examples: default: value: @@ -49937,14 +50184,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - - *85 - - *137 + - *87 + - *139 responses: '200': description: Response content: application/json: - schema: &375 + schema: &378 title: Org Membership description: Org Membership type: object @@ -49993,7 +50240,7 @@ paths: format: uri examples: - https://api.github.com/orgs/octocat - organization: *71 + organization: *73 user: anyOf: - type: 'null' @@ -50013,7 +50260,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &376 + response-if-user-has-an-active-admin-membership-with-organization: &379 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -50085,8 +50332,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - - *85 - - *137 + - *87 + - *139 requestBody: required: false content: @@ -50114,9 +50361,9 @@ paths: description: Response content: application/json: - schema: *375 + schema: *378 examples: - response-if-user-already-had-membership-with-organization: *376 + response-if-user-already-had-membership-with-organization: *379 '422': *15 '403': *27 '451': *15 @@ -50141,8 +50388,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -50167,7 +50414,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-organization-migrations parameters: - - *85 + - *87 - *17 - *19 - name: exclude @@ -50189,7 +50436,7 @@ paths: application/json: schema: type: array - items: &377 + items: &380 title: Migration description: A migration. type: object @@ -50231,7 +50478,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *118 + items: *120 url: type: string format: uri @@ -50446,7 +50693,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#start-an-organization-migration parameters: - - *85 + - *87 requestBody: required: true content: @@ -50527,7 +50774,7 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: default: value: @@ -50705,8 +50952,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - - *85 - - &378 + - *87 + - &381 name: migration_id description: The unique identifier of the migration. in: path @@ -50734,7 +50981,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *377 + schema: *380 examples: default: value: @@ -50903,8 +51150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *85 - - *378 + - *87 + - *381 responses: '302': description: Response @@ -50925,8 +51172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *85 - - *378 + - *87 + - *381 responses: '204': description: Response @@ -50949,9 +51196,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - - *85 - - *378 - - &796 + - *87 + - *381 + - &799 name: repo_name description: repo_name parameter in: path @@ -50978,8 +51225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *85 - - *378 + - *87 + - *381 - *17 - *19 responses: @@ -50989,7 +51236,7 @@ paths: application/json: schema: type: array - items: *118 + items: *120 headers: Link: *45 '404': *6 @@ -51019,7 +51266,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: - - *85 + - *87 responses: '200': description: Response @@ -51073,7 +51320,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: - - *85 + - *87 responses: '200': description: Response - list of organization roles @@ -51089,7 +51336,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &379 + items: &382 title: Organization Role description: Organization roles type: object @@ -51251,7 +51498,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#create-a-custom-organization-role parameters: - - *85 + - *87 requestBody: required: true content: @@ -51298,7 +51545,7 @@ paths: description: Response content: application/json: - schema: *379 + schema: *382 examples: default: value: @@ -51327,7 +51574,7 @@ paths: updated_at: '2022-07-04T22:19:11Z' '422': *15 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -51349,8 +51596,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: - - *85 - - *212 + - *87 + - *214 responses: '204': description: Response @@ -51375,9 +51622,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: - - *85 - - *212 - - *136 + - *87 + - *214 + - *138 responses: '204': description: Response @@ -51406,9 +51653,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: - - *85 - - *212 - - *136 + - *87 + - *214 + - *138 responses: '204': description: Response @@ -51433,8 +51680,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -51459,9 +51706,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: - - *85 - - *137 - - *136 + - *87 + - *139 + - *138 responses: '204': description: Response @@ -51491,9 +51738,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: - - *85 - - *137 - - *136 + - *87 + - *139 + - *138 responses: '204': description: Response @@ -51521,14 +51768,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - - *85 - - *136 + - *87 + - *138 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: default: value: @@ -51585,8 +51832,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - - *85 - - *136 + - *87 + - *138 requestBody: required: true content: @@ -51625,7 +51872,7 @@ paths: description: Response content: application/json: - schema: *379 + schema: *382 examples: default: value: @@ -51653,7 +51900,7 @@ paths: created_at: '2022-07-04T22:19:11Z' updated_at: '2022-07-04T22:19:11Z' '422': *15 - '409': *117 + '409': *119 '404': *6 x-github: githubCloudOnly: true @@ -51678,8 +51925,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - - *85 - - *136 + - *87 + - *138 responses: '204': description: Response @@ -51704,8 +51951,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: - - *85 - - *136 + - *87 + - *138 - *17 - *19 responses: @@ -51784,7 +52031,7 @@ paths: parent: anyOf: - type: 'null' - - *380 + - *383 type: description: The ownership type of the team type: string @@ -51817,7 +52064,7 @@ paths: - type - parent examples: - default: *381 + default: *384 headers: Link: *45 '404': @@ -51846,8 +52093,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: - - *85 - - *136 + - *87 + - *138 - *17 - *19 responses: @@ -51876,7 +52123,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *380 + items: *383 name: type: - string @@ -51993,7 +52240,7 @@ paths: - type - url examples: - default: *208 + default: *210 headers: Link: *45 '404': @@ -52017,7 +52264,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: - - *85 + - *87 - 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) @@ -52044,7 +52291,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -52069,8 +52316,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: - - *85 - - *137 + - *87 + - *139 requestBody: required: false content: @@ -52127,8 +52374,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -52185,8 +52432,8 @@ paths: - docker - nuget - container - - *85 - - &797 + - *87 + - &800 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -52222,12 +52469,12 @@ paths: application/json: schema: type: array - items: *382 + items: *385 examples: - default: *383 + default: *386 '403': *27 '401': *23 - '400': &799 + '400': &802 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -52249,7 +52496,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &384 + - &387 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 @@ -52267,20 +52514,20 @@ paths: - docker - nuget - container - - &385 + - &388 name: package_name description: The name of the package. in: path required: true schema: type: string - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *382 + schema: *385 examples: default: value: @@ -52332,9 +52579,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *384 - - *385 - - *85 + - *387 + - *388 + - *87 responses: '204': description: Response @@ -52366,9 +52613,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *384 - - *385 - - *85 + - *387 + - *388 + - *87 - name: token description: package token schema: @@ -52400,9 +52647,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: - - *384 - - *385 - - *85 + - *387 + - *388 + - *87 - *19 - *17 - name: state @@ -52422,7 +52669,7 @@ paths: application/json: schema: type: array - items: &386 + items: &389 title: Package Version description: A version of a software package type: object @@ -52557,10 +52804,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: - - *384 - - *385 - - *85 - - &387 + - *387 + - *388 + - *87 + - &390 name: package_version_id description: Unique identifier of the package version. in: path @@ -52572,7 +52819,7 @@ paths: description: Response content: application/json: - schema: *386 + schema: *389 examples: default: value: @@ -52608,10 +52855,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *384 - - *385 - - *85 - *387 + - *388 + - *87 + - *390 responses: '204': description: Response @@ -52643,10 +52890,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *384 - - *385 - - *85 - *387 + - *388 + - *87 + - *390 responses: '204': description: Response @@ -52673,10 +52920,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: - - *85 + - *87 - *17 - *19 - - &388 + - &391 name: sort description: The property by which to sort the results. in: query @@ -52686,8 +52933,8 @@ paths: enum: - created_at default: created_at - - *108 - - &389 + - *110 + - &392 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -52699,7 +52946,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &390 + - &393 name: repository description: The name of the repository to use to filter the results. in: query @@ -52708,7 +52955,7 @@ paths: type: string examples: - Hello-World - - &391 + - &394 name: permission description: The permission to use to filter the results. in: query @@ -52717,7 +52964,7 @@ paths: type: string examples: - issues_read - - &392 + - &395 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) @@ -52727,7 +52974,7 @@ paths: schema: type: string format: date-time - - &393 + - &396 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) @@ -52737,7 +52984,7 @@ paths: schema: type: string format: date-time - - &394 + - &397 name: token_id description: The ID of the token in: query @@ -52905,7 +53152,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: - - *85 + - *87 requestBody: required: true content: @@ -52972,7 +53219,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: - - *85 + - *87 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -53013,7 +53260,7 @@ paths: '422': *15 '404': *6 '403': *27 - '204': *149 + '204': *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53034,7 +53281,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: - - *85 + - *87 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -53054,9 +53301,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: &395 + default: &398 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -53190,17 +53437,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: - - *85 + - *87 - *17 - *19 - - *388 - - *108 - - *389 - - *390 - *391 + - *110 - *392 - *393 - *394 + - *395 + - *396 + - *397 responses: '500': *38 '422': *15 @@ -53351,7 +53598,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: - - *85 + - *87 requestBody: required: true content: @@ -53411,7 +53658,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: - - *85 + - *87 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -53441,7 +53688,7 @@ paths: responses: '500': *38 '404': *6 - '204': *149 + '204': *151 '403': *27 '422': *15 x-github: @@ -53463,7 +53710,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: - - *85 + - *87 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -53482,9 +53729,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *395 + default: *398 headers: Link: *45 x-github: @@ -53508,7 +53755,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: - - *85 + - *87 - *17 - *19 responses: @@ -53526,7 +53773,7 @@ paths: type: integer configurations: type: array - items: &396 + items: &399 title: Organization private registry description: Private registry configuration for an organization type: object @@ -53631,7 +53878,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: - - *85 + - *87 requestBody: required: true content: @@ -53822,7 +54069,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &397 + org-private-registry-with-selected-visibility: &400 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -53863,7 +54110,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: - - *85 + - *87 responses: '200': description: Response @@ -53913,16 +54160,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: - - *85 - - *286 + - *87 + - *289 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *396 + schema: *399 examples: - default: *397 + default: *400 '404': *6 x-github: githubCloudOnly: false @@ -53943,8 +54190,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: - - *85 - - *286 + - *87 + - *289 requestBody: required: true content: @@ -54049,8 +54296,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: - - *85 - - *286 + - *87 + - *289 responses: '204': description: Response @@ -54073,15 +54320,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-organization parameters: - - *85 + - *87 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *106 - - *107 + - *108 + - *109 - *17 responses: '200': @@ -54090,7 +54337,7 @@ paths: application/json: schema: type: array - items: &398 + items: &401 title: Projects v2 Project description: A projects v2 project type: object @@ -54164,7 +54411,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &886 + - &889 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -54249,7 +54496,7 @@ paths: - deleted_at - deleted_by examples: - default: &399 + default: &402 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -54352,22 +54599,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-organization parameters: - - &400 + - &403 name: project_number description: The project's number. in: path required: true schema: type: integer - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: - default: *399 + default: *402 headers: Link: *45 '304': *35 @@ -54389,8 +54636,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: - - *85 - - *400 + - *87 + - *403 requestBody: required: true description: Details of the draft item to create in the project. @@ -54424,7 +54671,7 @@ paths: description: Response content: application/json: - schema: &405 + schema: &408 title: Projects v2 Item description: An item belonging to a project type: object @@ -54437,8 +54684,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *217 - - &567 + - *219 + - &570 title: Pull Request Simple description: Pull Request Simple type: object @@ -54558,7 +54805,7 @@ paths: milestone: anyOf: - type: 'null' - - *401 + - *404 active_lock_reason: type: - string @@ -54597,7 +54844,7 @@ paths: items: *4 requested_teams: type: array - items: *305 + items: *308 head: type: object properties: @@ -54605,7 +54852,7 @@ paths: type: string ref: type: string - repo: *76 + repo: *78 sha: type: string user: @@ -54625,7 +54872,7 @@ paths: type: string ref: type: string - repo: *76 + repo: *78 sha: type: string user: @@ -54641,7 +54888,7 @@ paths: _links: type: object properties: - comments: &402 + comments: &405 title: Link description: Hypermedia Link type: object @@ -54650,13 +54897,13 @@ paths: type: string required: - href - commits: *402 - statuses: *402 - html: *402 - issue: *402 - review_comments: *402 - review_comment: *402 - self: *402 + commits: *405 + statuses: *405 + html: *405 + issue: *405 + review_comments: *405 + review_comment: *405 + self: *405 required: - comments - commits @@ -54666,8 +54913,8 @@ paths: - review_comments - review_comment - self - author_association: *214 - auto_merge: &680 + author_association: *216 + auto_merge: &683 title: Auto merge description: The status of auto merging a pull request. type: @@ -54767,7 +55014,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &404 + content_type: &407 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -54811,7 +55058,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &406 + draft_issue: &409 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -54885,11 +55132,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-organization parameters: - - *400 - - *85 + - *403 + - *87 - *17 - - *106 - - *107 + - *108 + - *109 responses: '200': description: Response @@ -54897,7 +55144,7 @@ paths: application/json: schema: type: array - items: &403 + items: &406 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -55050,7 +55297,7 @@ paths: - updated_at - project_url examples: - default: &819 + default: &822 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55180,8 +55427,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: - - *400 - - *85 + - *403 + - *87 requestBody: required: true content: @@ -55227,7 +55474,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &820 + items: &823 type: object properties: name: @@ -55264,7 +55511,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &821 + iteration_configuration: &824 type: object description: The configuration for iteration fields. properties: @@ -55314,7 +55561,7 @@ paths: value: name: Due date data_type: date - single_select_field: &822 + single_select_field: &825 summary: Create a single select field value: name: Priority @@ -55341,7 +55588,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &823 + iteration_field: &826 summary: Create an iteration field value: name: Sprint @@ -55365,9 +55612,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *403 + schema: *406 examples: - text_field: &824 + text_field: &827 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -55376,7 +55623,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: &825 + number_field: &828 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -55385,7 +55632,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: &826 + date_field: &829 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -55394,7 +55641,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: &827 + single_select_field: &830 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55428,7 +55675,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &828 + iteration_field: &831 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -55473,23 +55720,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-organization parameters: - - *400 - - &829 + - *403 + - &832 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: &830 + default: &833 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -55545,8 +55792,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: - - *400 - - *85 + - *403 + - *87 - 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. @@ -55568,8 +55815,8 @@ paths: maxItems: 50 items: type: string - - *106 - - *107 + - *108 + - *109 - *17 responses: '200': @@ -55578,7 +55825,7 @@ paths: application/json: schema: type: array - items: &407 + items: &410 title: Projects v2 Item description: An item belonging to a project type: object @@ -55595,7 +55842,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *404 + content_type: *407 content: type: - object @@ -55645,7 +55892,7 @@ paths: - updated_at - archived_at examples: - default: &408 + default: &411 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -56342,8 +56589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-organization-owned-project parameters: - - *85 - - *400 + - *87 + - *403 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -56413,22 +56660,22 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *406 + value: *409 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *406 + value: *409 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *406 + value: *409 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *406 + value: *409 '304': *35 '403': *27 '401': *23 @@ -56448,9 +56695,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: - - *400 - - *85 - - &409 + - *403 + - *87 + - &412 name: item_id description: The unique identifier of the project item. in: path @@ -56476,9 +56723,9 @@ paths: description: Response content: application/json: - schema: *407 + schema: *410 examples: - default: *408 + default: *411 headers: Link: *45 '304': *35 @@ -56499,9 +56746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-organization parameters: - - *400 - - *85 - - *409 + - *403 + - *87 + - *412 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -56574,13 +56821,13 @@ paths: description: Response content: application/json: - schema: *407 + schema: *410 examples: - text_field: *408 - number_field: *408 - date_field: *408 - single_select_field: *408 - iteration_field: *408 + text_field: *411 + number_field: *411 + date_field: *411 + single_select_field: *411 + iteration_field: *411 '401': *23 '403': *27 '404': *6 @@ -56600,9 +56847,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-organization parameters: - - *400 - - *85 - - *409 + - *403 + - *87 + - *412 responses: '204': description: Response @@ -56625,8 +56872,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: - - *85 - - *400 + - *87 + - *403 requestBody: required: true content: @@ -56700,7 +56947,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &811 + schema: &814 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -56804,7 +57051,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &410 + value: &413 value: id: 1 number: 1 @@ -56850,10 +57097,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *410 + value: *413 roadmap_view: summary: Response for creating a roadmap view - value: *410 + value: *413 '304': *35 '403': *27 '401': *23 @@ -56881,9 +57128,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: - - *400 - - *85 - - &831 + - *403 + - *87 + - &834 name: view_number description: The number that identifies the project view. in: path @@ -56905,8 +57152,8 @@ paths: maxItems: 50 items: type: string - - *106 - - *107 + - *108 + - *109 - *17 responses: '200': @@ -56915,9 +57162,9 @@ paths: application/json: schema: type: array - items: *407 + items: *410 examples: - default: *408 + default: *411 headers: Link: *45 '304': *35 @@ -56942,7 +57189,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: - - *85 + - *87 responses: '200': description: Response @@ -56950,9 +57197,9 @@ paths: application/json: schema: type: array - items: *151 + items: *153 examples: - default: *152 + default: *154 '403': *27 '404': *6 x-github: @@ -56979,7 +57226,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: - - *85 + - *87 requestBody: required: true content: @@ -56990,7 +57237,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *151 + items: *153 minItems: 1 maxItems: 100 required: @@ -57020,9 +57267,9 @@ paths: application/json: schema: type: array - items: *151 + items: *153 examples: - default: *152 + default: *154 '403': *27 '404': *6 x-github: @@ -57043,16 +57290,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: - - *85 - - *147 + - *87 + - *149 responses: '200': description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *153 + default: *155 '403': *27 '404': *6 x-github: @@ -57075,13 +57322,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: - - *85 - - *147 + - *87 + - *149 requestBody: required: true content: application/json: - schema: *411 + schema: *414 examples: default: value: @@ -57097,9 +57344,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *153 examples: - default: *153 + default: *155 '403': *27 '404': *6 x-github: @@ -57122,10 +57369,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: - - *85 - - *147 + - *87 + - *149 responses: - '204': *149 + '204': *151 '403': *27 '404': *6 x-github: @@ -57146,7 +57393,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: - - *85 + - *87 - *17 - *19 - name: repository_query @@ -57187,7 +57434,7 @@ paths: - octocat/Hello-World properties: type: array - items: *150 + items: *152 description: List of custom property names and associated values required: - repository_id @@ -57236,7 +57483,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: - - *85 + - *87 requestBody: required: true content: @@ -57256,7 +57503,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *150 + items: *152 required: - repository_names - properties @@ -57297,7 +57544,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-public-organization-members parameters: - - *85 + - *87 - *17 - *19 responses: @@ -57309,7 +57556,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -57328,8 +57575,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response if user is a public member @@ -57353,8 +57600,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -57375,8 +57622,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: - - *85 - - *137 + - *87 + - *139 responses: '204': description: Response @@ -57400,7 +57647,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-organization-repositories parameters: - - *85 + - *87 - 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 @@ -57447,9 +57694,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *395 + default: *398 headers: Link: *45 x-github: @@ -57470,7 +57717,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-organization-repository parameters: - - *85 + - *87 requestBody: required: true content: @@ -57653,7 +57900,7 @@ paths: description: Response content: application/json: - schema: &454 + schema: &457 title: Full Repository description: Full Repository type: object @@ -58012,7 +58259,7 @@ paths: template_repository: anyOf: - type: 'null' - - *76 + - *78 temp_clone_token: type: - string @@ -58108,13 +58355,13 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 organization: anyOf: - type: 'null' - *4 - parent: *76 - source: *76 + parent: *78 + source: *78 forks: type: integer master_branch: @@ -58127,7 +58374,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &572 + code_of_conduct: &575 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -58157,7 +58404,7 @@ paths: - key - name - html_url - security_and_analysis: *412 + security_and_analysis: *415 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -58241,7 +58488,7 @@ paths: - network_count - subscribers_count examples: - default: &456 + default: &459 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -58760,7 +59007,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: - - *85 + - *87 responses: '200': description: Response @@ -58768,9 +59015,9 @@ paths: application/json: schema: type: array - items: *413 + items: *416 examples: - default: *414 + default: *417 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -58792,10 +59039,10 @@ paths: category: orgs subcategory: rules parameters: - - *85 + - *87 - *17 - *19 - - &702 + - &705 name: targets description: | A comma-separated list of rule targets to filter by. @@ -58814,7 +59061,7 @@ paths: application/json: schema: type: array - items: *185 + items: *187 examples: default: value: @@ -58861,7 +59108,7 @@ paths: category: orgs subcategory: rules parameters: - - *85 + - *87 requestBody: description: Request body required: true @@ -58882,22 +59129,20 @@ paths: - push - repository default: branch - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 - conditions: *415 + items: *165 + conditions: *418 rules: type: array description: An array of rules within the ruleset. - items: &417 + items: &420 title: Repository Rule type: object description: A repository rule. oneOf: - - *164 - - *165 - *166 - *167 - *168 @@ -58917,6 +59162,8 @@ paths: - *182 - *183 - *184 + - *185 + - *186 required: - name - enforcement @@ -58954,9 +59201,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: &416 + default: &419 value: id: 21 name: super cool ruleset @@ -59011,8 +59258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *85 - - &704 + - *87 + - &707 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 @@ -59022,16 +59269,16 @@ paths: schema: type: string x-multi-segment: true - - *302 - - *103 - - &705 + - *305 + - *105 + - &708 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 - - &706 + - &709 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -59051,7 +59298,7 @@ paths: description: Response content: application/json: - schema: &707 + schema: &710 title: Rule Suites description: Response type: array @@ -59107,7 +59354,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &708 + default: &711 value: - id: 21 actor_id: 12 @@ -59150,8 +59397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *85 - - &709 + - *87 + - &712 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -59167,7 +59414,7 @@ paths: description: Response content: application/json: - schema: &710 + schema: &713 title: Rule Suite description: Response type: object @@ -59274,7 +59521,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &711 + default: &714 value: id: 21 actor_id: 12 @@ -59335,7 +59582,7 @@ paths: category: orgs subcategory: rules parameters: - - *85 + - *87 - name: ruleset_id description: The ID of the ruleset. in: path @@ -59347,9 +59594,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *416 + default: *419 '404': *6 '500': *38 put: @@ -59367,7 +59614,7 @@ paths: category: orgs subcategory: rules parameters: - - *85 + - *87 - name: ruleset_id description: The ID of the ruleset. in: path @@ -59393,16 +59640,16 @@ paths: - tag - push - repository - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 - conditions: *415 + items: *165 + conditions: *418 rules: description: An array of rules within the ruleset. type: array - items: *417 + items: *420 examples: default: value: @@ -59437,9 +59684,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *416 + default: *419 '404': *6 '422': *15 '500': *38 @@ -59458,7 +59705,7 @@ paths: category: orgs subcategory: rules parameters: - - *85 + - *87 - name: ruleset_id description: The ID of the ruleset. in: path @@ -59481,7 +59728,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-history parameters: - - *85 + - *87 - *17 - *19 - name: ruleset_id @@ -59497,9 +59744,9 @@ paths: application/json: schema: type: array - items: *189 + items: *191 examples: - default: *418 + default: *421 '404': *6 '500': *38 x-github: @@ -59518,7 +59765,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rules#get-organization-ruleset-version parameters: - - *85 + - *87 - name: ruleset_id description: The ID of the ruleset. in: path @@ -59536,7 +59783,7 @@ paths: description: Response content: application/json: - schema: *419 + schema: *422 examples: default: value: @@ -59598,16 +59845,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: - - *85 - - *420 - - *421 - - *422 + - *87 - *423 - *424 - - *108 + - *425 + - *426 + - *427 + - *110 - *19 - *17 - - &713 + - &716 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 @@ -59617,7 +59864,7 @@ paths: required: false schema: type: string - - &714 + - &717 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 @@ -59627,10 +59874,10 @@ paths: required: false schema: type: string - - *425 - - *426 - - *427 - *428 + - *429 + - *430 + - *431 responses: '200': description: Response @@ -59638,13 +59885,13 @@ paths: application/json: schema: type: array - items: *429 + items: *432 examples: - default: *430 + default: *433 headers: Link: *45 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59669,15 +59916,15 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *431 + schema: *434 examples: - default: *432 + default: *435 '403': *27 '404': *6 patch: @@ -59698,7 +59945,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *85 + - *87 requestBody: required: true content: @@ -59706,7 +59953,7 @@ paths: schema: type: object properties: - pattern_config_version: *192 + pattern_config_version: *194 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -59732,7 +59979,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *192 + custom_pattern_version: *194 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -59768,7 +60015,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *15 "/orgs/{org}/security-advisories": get: @@ -59786,8 +60033,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: - - *85 - - *108 + - *87 + - *110 - name: sort description: The property to sort the results by. in: query @@ -59799,8 +60046,8 @@ paths: - updated - published default: created - - *106 - - *107 + - *108 + - *109 - 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)." @@ -59830,7 +60077,7 @@ paths: application/json: schema: type: array - items: &735 + items: &738 description: A repository security advisory. type: object properties: @@ -60017,7 +60264,7 @@ paths: - patched_versions - vulnerable_functions additionalProperties: false - cvss_severities: *126 + cvss_severities: *128 cwes: type: - array @@ -60053,7 +60300,7 @@ paths: login: type: string description: The username of the user credited. - type: *433 + type: *436 credits_detailed: type: - array @@ -60064,7 +60311,7 @@ paths: type: object properties: user: *4 - type: *433 + type: *436 state: type: string description: The state of the user's acceptance of the @@ -60090,13 +60337,13 @@ paths: - array - 'null' description: A list of teams that collaborate on the advisory. - items: *305 + items: *308 private_fork: readOnly: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *118 + - *120 type: - 'null' required: @@ -60127,7 +60374,7 @@ paths: - private_fork additionalProperties: false examples: - default: &736 + default: &739 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -60506,7 +60753,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#list-security-manager-teams parameters: - - *85 + - *87 responses: '200': description: Response @@ -60514,7 +60761,7 @@ paths: application/json: schema: type: array - items: *380 + items: *383 examples: default: value: @@ -60554,8 +60801,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - - *85 - - *212 + - *87 + - *214 responses: '204': description: Response @@ -60580,8 +60827,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *85 - - *212 + - *87 + - *214 responses: '204': description: Response @@ -60612,8 +60859,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: - - *85 - - *434 + - *87 + - *437 - *17 - *19 responses: @@ -60621,9 +60868,9 @@ paths: description: Success content: application/json: - schema: *435 + schema: *438 examples: - default: *436 + default: *439 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -60643,7 +60890,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: - - *85 + - *87 responses: '200': description: Immutable releases settings response @@ -60693,7 +60940,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: - - *85 + - *87 responses: '204': description: Response @@ -60751,7 +60998,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: - - *85 + - *87 - *19 - *17 responses: @@ -60769,9 +61016,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: *290 + default: *293 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60790,7 +61037,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: - - *85 + - *87 requestBody: required: true content: @@ -60839,8 +61086,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: - - *85 - - *270 + - *87 + - *273 responses: '204': description: Response @@ -60862,8 +61109,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: - - *85 - - *270 + - *87 + - *273 responses: '204': description: Response @@ -60886,7 +61133,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: - - *85 + - *87 - *17 - *19 responses: @@ -60904,9 +61151,9 @@ paths: type: integer network_configurations: type: array - items: *142 + items: *144 examples: - default: *437 + default: *440 headers: Link: *45 x-github: @@ -60927,7 +61174,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: - - *85 + - *87 requestBody: required: true content: @@ -60970,9 +61217,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: *143 + default: *145 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60992,16 +61239,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: - - *85 - - *144 + - *87 + - *146 responses: '200': description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: *143 + default: *145 headers: Link: *45 x-github: @@ -61022,8 +61269,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: - - *85 - - *144 + - *87 + - *146 requestBody: required: true content: @@ -61063,9 +61310,9 @@ paths: description: Response content: application/json: - schema: *142 + schema: *144 examples: - default: *143 + default: *145 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61084,8 +61331,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: - - *85 - - *144 + - *87 + - *146 responses: '204': description: Response @@ -61108,16 +61355,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: - - *85 - - *438 + - *87 + - *441 responses: '200': description: Response content: application/json: - schema: *439 + schema: *442 examples: - default: *440 + default: *443 headers: Link: *45 x-github: @@ -61136,7 +61383,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: - - *85 + - *87 - *17 - name: page description: Page token @@ -61155,7 +61402,7 @@ paths: description: Response content: application/json: - schema: &451 + schema: &454 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -61207,7 +61454,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &452 + default: &455 value: groups: - group_id: '123' @@ -61252,8 +61499,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: - - *85 - - *212 + - *87 + - *214 - 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`). @@ -61285,13 +61532,13 @@ paths: application/json: schema: type: array - items: *203 + items: *205 examples: - default: *204 + default: *206 '500': *38 '403': *27 '404': *6 - '422': *205 + '422': *207 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61309,7 +61556,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-teams parameters: - - *85 + - *87 - *17 - *19 - name: team_type @@ -61331,9 +61578,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 headers: Link: *45 '403': *27 @@ -61355,7 +61602,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#create-a-team parameters: - - *85 + - *87 requestBody: required: true content: @@ -61419,7 +61666,7 @@ paths: description: Response content: application/json: - schema: &441 + schema: &444 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -61493,7 +61740,7 @@ paths: parent: anyOf: - type: 'null' - - *380 + - *383 members_count: type: integer examples: @@ -61818,7 +62065,7 @@ paths: - repos_count - organization examples: - default: &442 + default: &445 value: id: 1 node_id: MDQ6VGVhbTE= @@ -61888,16 +62135,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - - *85 - - *212 + - *87 + - *214 responses: '200': description: Response content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '404': *6 x-github: githubCloudOnly: false @@ -61918,8 +62165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - - *85 - - *212 + - *87 + - *214 requestBody: required: false content: @@ -61982,16 +62229,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '201': description: Response content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '404': *6 '422': *15 '403': *27 @@ -62016,12 +62263,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - - *85 - - *212 + - *87 + - *214 responses: '204': description: Response - '422': &445 + '422': &448 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -62043,17 +62290,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: - - *85 - - *212 + - *87 + - *214 responses: '200': description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: *444 - '422': *445 + default: *447 + '422': *448 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -62072,8 +62319,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: - - *85 - - *212 + - *87 + - *214 requestBody: required: true content: @@ -62097,10 +62344,10 @@ paths: description: Response content: application/json: - schema: *446 + schema: *449 examples: - default: *447 - '422': *445 + default: *450 + '422': *448 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -62119,12 +62366,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: - - *85 - - *212 + - *87 + - *214 responses: '204': description: Response - '422': *445 + '422': *448 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -62145,8 +62392,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - - *85 - - *212 + - *87 + - *214 - *17 - *19 responses: @@ -62156,12 +62403,12 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *362 + default: *365 headers: Link: *45 - '422': *445 + '422': *448 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62181,8 +62428,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - - *85 - - *212 + - *87 + - *214 - name: role description: Filters members returned by their role in the team. in: query @@ -62205,7 +62452,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -62235,15 +62482,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - - *85 - - *212 - - *137 + - *87 + - *214 + - *139 responses: '200': description: Response content: application/json: - schema: &448 + schema: &451 title: Team Membership description: Team Membership type: object @@ -62271,7 +62518,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &778 + response-if-user-is-a-team-maintainer: &781 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -62307,9 +62554,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: - - *85 - - *212 - - *137 + - *87 + - *214 + - *139 requestBody: required: false content: @@ -62334,9 +62581,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *451 examples: - response-if-users-membership-with-team-is-now-pending: &779 + response-if-users-membership-with-team-is-now-pending: &782 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -62371,9 +62618,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - - *85 - - *212 - - *137 + - *87 + - *214 + - *139 responses: '204': description: Response @@ -62399,8 +62646,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - - *85 - - *212 + - *87 + - *214 - *17 - *19 responses: @@ -62410,9 +62657,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *395 + default: *398 headers: Link: *45 x-github: @@ -62441,16 +62688,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *85 - - *212 - - *449 - - *450 + - *87 + - *214 + - *452 + - *453 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &780 + schema: &783 title: Team Repository description: A team's access to a repository. type: object @@ -62476,7 +62723,7 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 forks: type: integer permissions: @@ -63084,10 +63331,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *85 - - *212 - - *449 - - *450 + - *87 + - *214 + - *452 + - *453 requestBody: required: false content: @@ -63132,10 +63379,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - - *85 - - *212 - - *449 - - *450 + - *87 + - *214 + - *452 + - *453 responses: '204': description: Response @@ -63161,17 +63408,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: - - *85 - - *212 + - *87 + - *214 responses: '200': description: Response content: application/json: - schema: *451 + schema: *454 examples: - default: *452 - '422': *445 + default: *455 + '422': *448 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -63193,8 +63440,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: - - *85 - - *212 + - *87 + - *214 requestBody: required: true content: @@ -63237,7 +63484,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *454 examples: default: value: @@ -63249,7 +63496,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *445 + '422': *448 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -63270,8 +63517,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - - *85 - - *212 + - *87 + - *214 - *17 - *19 responses: @@ -63281,9 +63528,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - response-if-child-teams-exist: &781 + response-if-child-teams-exist: &784 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -63336,7 +63583,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: - - *85 + - *87 - name: security_product in: path description: The security feature to enable or disable. @@ -63437,7 +63684,7 @@ paths: resources: type: object properties: - core: &453 + core: &456 title: Rate Limit type: object properties: @@ -63454,17 +63701,17 @@ paths: - remaining - reset - used - graphql: *453 - search: *453 - code_search: *453 - source_import: *453 - integration_manifest: *453 - code_scanning_upload: *453 - actions_runner_registration: *453 - scim: *453 - dependency_snapshots: *453 - dependency_sbom: *453 - code_scanning_autofix: *453 + graphql: *456 + search: *456 + code_search: *456 + source_import: *456 + integration_manifest: *456 + code_scanning_upload: *456 + actions_runner_registration: *456 + scim: *456 + dependency_snapshots: *456 + dependency_sbom: *456 + code_scanning_autofix: *456 required: - core - search @@ -63571,14 +63818,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *454 + schema: *457 examples: default-response: summary: Default response @@ -64087,7 +64334,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *455 + '301': *458 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64105,8 +64352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -64408,10 +64655,10 @@ paths: description: Response content: application/json: - schema: *454 + schema: *457 examples: - default: *456 - '307': &457 + default: *459 + '307': &460 description: Temporary Redirect content: application/json: @@ -64440,8 +64687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -64463,9 +64710,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': *457 + '307': *460 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64487,11 +64734,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 - - &474 + - &477 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -64514,7 +64761,7 @@ paths: type: integer artifacts: type: array - items: &458 + items: &461 title: Artifact description: An artifact type: object @@ -64609,7 +64856,7 @@ paths: - expires_at - updated_at examples: - default: &475 + default: &478 value: total_count: 2 artifacts: @@ -64670,9 +64917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *449 - - *450 - - &459 + - *452 + - *453 + - &462 name: artifact_id description: The unique identifier of the artifact. in: path @@ -64684,7 +64931,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *461 examples: default: value: @@ -64722,9 +64969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *449 - - *450 - - *459 + - *452 + - *453 + - *462 responses: '204': description: Response @@ -64748,9 +64995,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *449 - - *450 - - *459 + - *452 + - *453 + - *462 - name: archive_format in: path required: true @@ -64764,7 +65011,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': &636 + '410': &639 description: Gone content: application/json: @@ -64789,14 +65036,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: &460 + schema: &463 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -64830,13 +65077,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: application/json: - schema: *460 + schema: *463 examples: selected_actions: *42 responses: @@ -64865,14 +65112,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: &461 + schema: &464 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -64906,13 +65153,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: application/json: - schema: *461 + schema: *464 examples: selected_actions: *44 responses: @@ -64943,14 +65190,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *462 + schema: *465 examples: default: value: @@ -64976,11 +65223,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: - - *449 - - *450 + - *452 + - *453 - *17 - *19 - - &463 + - &466 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 @@ -65008,13 +65255,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *108 + - *110 responses: '200': description: Response content: application/json: - schema: &464 + schema: &467 title: Repository actions caches description: Repository actions caches type: object @@ -65064,7 +65311,7 @@ paths: - total_count - actions_caches examples: - default: &465 + default: &468 value: total_count: 1 actions_caches: @@ -65096,23 +65343,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: - - *449 - - *450 + - *452 + - *453 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *463 + - *466 responses: '200': description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65132,8 +65379,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: - - *449 - - *450 + - *452 + - *453 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -65164,9 +65411,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: - - *449 - - *450 - - &466 + - *452 + - *453 + - &469 name: job_id description: The unique identifier of the job. in: path @@ -65178,7 +65425,7 @@ paths: description: Response content: application/json: - schema: &478 + schema: &481 title: Job description: Information of a job execution in a workflow run type: object @@ -65525,9 +65772,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: - - *449 - - *450 - - *466 + - *452 + - *453 + - *469 responses: '302': description: Response @@ -65555,9 +65802,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: - - *449 - - *450 - - *466 + - *452 + - *453 + - *469 requestBody: required: false content: @@ -65579,7 +65826,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -65603,8 +65850,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Status response @@ -65654,8 +65901,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -65689,7 +65936,7 @@ paths: description: Empty response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -65718,8 +65965,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -65737,7 +65984,7 @@ paths: type: integer secrets: type: array - items: &480 + items: &483 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -65758,7 +66005,7 @@ paths: - created_at - updated_at examples: - default: &481 + default: &484 value: total_count: 2 secrets: @@ -65791,9 +66038,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *449 - - *450 - - *467 + - *452 + - *453 + - *470 - *19 responses: '200': @@ -65810,7 +66057,7 @@ paths: type: integer variables: type: array - items: &484 + items: &487 title: Actions Variable type: object properties: @@ -65844,7 +66091,7 @@ paths: - created_at - updated_at examples: - default: &485 + default: &488 value: total_count: 2 variables: @@ -65877,8 +66124,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -65887,12 +66134,12 @@ paths: schema: type: object properties: - enabled: &468 + enabled: &471 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *58 - selected_actions_url: *263 - sha_pinning_required: *59 + allowed_actions: *60 + selected_actions_url: *266 + sha_pinning_required: *61 required: - enabled examples: @@ -65922,8 +66169,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -65934,9 +66181,9 @@ paths: schema: type: object properties: - enabled: *468 - allowed_actions: *58 - sha_pinning_required: *59 + enabled: *471 + allowed_actions: *60 + sha_pinning_required: *61 required: - enabled examples: @@ -65967,14 +66214,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: &469 + schema: &472 type: object properties: access_level: @@ -65992,7 +66239,7 @@ paths: required: - access_level examples: - default: &470 + default: &473 value: access_level: organization x-github: @@ -66017,15 +66264,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: application/json: - schema: *469 + schema: *472 examples: - default: *470 + default: *473 responses: '204': description: Response @@ -66049,14 +66296,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *265 + schema: *268 examples: default: value: @@ -66080,8 +66327,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Empty response for successful settings update @@ -66091,7 +66338,7 @@ paths: required: true content: application/json: - schema: *266 + schema: *269 examples: default: summary: Set retention days @@ -66115,16 +66362,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *267 + default: *270 '404': *6 x-github: enabledForGitHubApps: true @@ -66143,8 +66390,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -66154,7 +66401,7 @@ paths: required: true content: application/json: - schema: *60 + schema: *62 examples: default: summary: Set approval policy to first time contributors @@ -66178,16 +66425,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *61 + default: *63 '403': *27 '404': *6 x-github: @@ -66207,15 +66454,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: application/json: - schema: *269 + schema: *272 examples: - default: *61 + default: *63 responses: '204': description: Empty response for successful settings update @@ -66239,16 +66486,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *63 + schema: *65 examples: - default: *64 + default: *66 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66271,8 +66518,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -66280,9 +66527,9 @@ paths: required: false content: application/json: - schema: *63 + schema: *65 examples: - selected_actions: *64 + selected_actions: *66 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66304,16 +66551,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: *67 + default: *69 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66334,8 +66581,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Success response @@ -66346,9 +66593,9 @@ paths: required: true content: application/json: - schema: *273 + schema: *276 examples: - default: *67 + default: *69 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66375,8 +66622,8 @@ paths: in: query schema: type: string - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -66394,9 +66641,9 @@ paths: type: integer runners: type: array - items: *74 + items: *76 examples: - default: *75 + default: *77 headers: Link: *45 x-github: @@ -66420,8 +66667,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -66429,9 +66676,9 @@ paths: application/json: schema: type: array - items: *277 + items: *280 examples: - default: *278 + default: *281 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66453,8 +66700,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -66497,10 +66744,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *279 + '201': *282 '404': *6 '422': *7 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66528,16 +66775,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: - - *449 - - *450 + - *452 + - *453 responses: '201': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *280 + default: *283 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66565,16 +66812,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: - - *449 - - *450 + - *452 + - *453 responses: '201': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *281 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66596,17 +66843,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 responses: '200': description: Response content: application/json: - schema: *74 + schema: *76 examples: - default: *282 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66627,9 +66874,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 responses: '204': description: Response @@ -66655,11 +66902,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 responses: - '200': *79 + '200': *81 '404': *6 x-github: githubCloudOnly: false @@ -66681,9 +66928,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 requestBody: required: true content: @@ -66707,7 +66954,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -66731,9 +66978,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 requestBody: required: true content: @@ -66758,7 +67005,7 @@ paths: - gpu - accelerated responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -66782,11 +67029,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: - - *449 - - *450 - - *73 + - *452 + - *453 + - *75 responses: - '200': *283 + '200': *286 '404': *6 x-github: githubCloudOnly: false @@ -66813,12 +67060,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: - - *449 - - *450 - - *73 - - *284 + - *452 + - *453 + - *75 + - *287 responses: - '200': *79 + '200': *81 '404': *6 '422': *7 x-github: @@ -66844,9 +67091,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: - - *449 - - *450 - - &488 + - *452 + - *453 + - &491 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. @@ -66854,7 +67101,7 @@ paths: required: false schema: type: string - - &489 + - &492 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -66862,7 +67109,7 @@ paths: required: false schema: type: string - - &490 + - &493 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -66871,7 +67118,7 @@ paths: required: false schema: type: string - - &491 + - &494 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 @@ -66898,7 +67145,7 @@ paths: - pending - *17 - *19 - - &492 + - &495 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)." @@ -66907,7 +67154,7 @@ paths: schema: type: string format: date-time - - &471 + - &474 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -66916,13 +67163,13 @@ paths: schema: type: boolean default: false - - &493 + - &496 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &494 + - &497 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -66945,7 +67192,7 @@ paths: type: integer workflow_runs: type: array - items: &472 + items: &475 title: Workflow Run description: An invocation of a workflow type: object @@ -67062,7 +67309,7 @@ paths: type: - array - 'null' - items: *220 + items: *222 created_at: type: string format: date-time @@ -67123,7 +67370,7 @@ paths: head_commit: anyOf: - type: 'null' - - &516 + - &519 title: Simple Commit description: A commit. type: object @@ -67197,8 +67444,8 @@ paths: - timestamp - author - committer - repository: *276 - head_repository: *276 + repository: *279 + head_repository: *279 head_repository_id: type: integer examples: @@ -67238,7 +67485,7 @@ paths: - workflow_url - pull_requests examples: - default: &495 + default: &498 value: total_count: 1 workflow_runs: @@ -67474,24 +67721,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *449 - - *450 - - &473 + - *452 + - *453 + - &476 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *471 + - *474 responses: '200': description: Response content: application/json: - schema: *472 + schema: *475 examples: - default: &476 + default: &479 value: id: 30433642 name: Build @@ -67732,9 +67979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '204': description: Response @@ -67757,9 +68004,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '200': description: Response @@ -67887,15 +68134,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '201': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -67922,13 +68169,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 - *17 - *19 - - *474 - - *108 + - *477 + - *110 responses: '200': description: Response @@ -67944,9 +68191,9 @@ paths: type: integer artifacts: type: array - items: *458 + items: *461 examples: - default: *475 + default: *478 headers: Link: *45 x-github: @@ -67970,25 +68217,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *449 - - *450 - - *473 - - &477 + - *452 + - *453 + - *476 + - &480 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *471 + - *474 responses: '200': description: Response content: application/json: - schema: *472 + schema: *475 examples: - default: *476 + default: *479 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68011,10 +68258,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: - - *449 - - *450 - - *473 - - *477 + - *452 + - *453 + - *476 + - *480 - *17 - *19 responses: @@ -68032,9 +68279,9 @@ paths: type: integer jobs: type: array - items: *478 + items: *481 examples: - default: &479 + default: &482 value: total_count: 1 jobs: @@ -68147,10 +68394,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *449 - - *450 - - *473 - - *477 + - *452 + - *453 + - *476 + - *480 responses: '302': description: Response @@ -68178,19 +68425,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '202': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68213,9 +68460,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 requestBody: required: true content: @@ -68282,19 +68529,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '202': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68317,9 +68564,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 - 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 @@ -68349,9 +68596,9 @@ paths: type: integer jobs: type: array - items: *478 + items: *481 examples: - default: *479 + default: *482 headers: Link: *45 x-github: @@ -68376,9 +68623,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '302': description: Response @@ -68405,9 +68652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '204': description: Response @@ -68434,9 +68681,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '200': description: Response @@ -68505,7 +68752,7 @@ paths: items: type: object properties: - type: &603 + type: &606 type: string description: The type of reviewer. enum: @@ -68516,7 +68763,7 @@ paths: reviewer: anyOf: - *4 - - *305 + - *308 required: - environment - wait_timer @@ -68591,9 +68838,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 requestBody: required: true content: @@ -68643,7 +68890,7 @@ paths: application/json: schema: type: array - items: &588 + items: &591 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -68755,7 +69002,7 @@ paths: - created_at - updated_at examples: - default: &589 + default: &592 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -68811,9 +69058,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 requestBody: required: false content: @@ -68835,7 +69082,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -68858,9 +69105,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: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 requestBody: required: false content: @@ -68882,7 +69129,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -68915,9 +69162,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *449 - - *450 - - *473 + - *452 + - *453 + - *476 responses: '200': description: Response @@ -69054,8 +69301,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -69073,9 +69320,9 @@ paths: type: integer secrets: type: array - items: *480 + items: *483 examples: - default: *481 + default: *484 headers: Link: *45 x-github: @@ -69100,16 +69347,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69131,17 +69378,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '200': description: Response content: application/json: - schema: *480 + schema: *483 examples: - default: &616 + default: &619 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -69167,9 +69414,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 requestBody: required: true content: @@ -69200,7 +69447,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -69226,9 +69473,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '204': description: Response @@ -69253,9 +69500,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *449 - - *450 - - *467 + - *452 + - *453 + - *470 - *19 responses: '200': @@ -69272,9 +69519,9 @@ paths: type: integer variables: type: array - items: *484 + items: *487 examples: - default: *485 + default: *488 headers: Link: *45 x-github: @@ -69297,8 +69544,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -69325,7 +69572,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -69350,17 +69597,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *449 - - *450 - - *289 + - *452 + - *453 + - *292 responses: '200': description: Response content: application/json: - schema: *484 + schema: *487 examples: - default: &617 + default: &620 value: name: USERNAME value: octocat @@ -69386,9 +69633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *449 - - *450 - - *289 + - *452 + - *453 + - *292 requestBody: required: true content: @@ -69430,9 +69677,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *449 - - *450 - - *289 + - *452 + - *453 + - *292 responses: '204': description: Response @@ -69457,8 +69704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -69476,7 +69723,7 @@ paths: type: integer workflows: type: array - items: &486 + items: &489 title: Workflow description: A GitHub Actions workflow type: object @@ -69594,9 +69841,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *449 - - *450 - - &487 + - *452 + - *453 + - &490 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -69611,7 +69858,7 @@ paths: description: Response content: application/json: - schema: *486 + schema: *489 examples: default: value: @@ -69644,9 +69891,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *449 - - *450 - - *487 + - *452 + - *453 + - *490 responses: '204': description: Response @@ -69671,9 +69918,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *449 - - *450 - - *487 + - *452 + - *453 + - *490 responses: '200': description: Response including the workflow run ID and URLs when `return_run_details` @@ -69754,9 +70001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *449 - - *450 - - *487 + - *452 + - *453 + - *490 responses: '204': description: Response @@ -69783,19 +70030,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: - - *449 - - *450 - - *487 - - *488 - - *489 + - *452 + - *453 - *490 - *491 - - *17 - - *19 - *492 - - *471 - *493 - *494 + - *17 + - *19 + - *495 + - *474 + - *496 + - *497 responses: '200': description: Response @@ -69811,9 +70058,9 @@ paths: type: integer workflow_runs: type: array - items: *472 + items: *475 examples: - default: *495 + default: *498 headers: Link: *45 x-github: @@ -69846,9 +70093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *449 - - *450 - - *487 + - *452 + - *453 + - *490 responses: '200': description: Response @@ -69909,12 +70156,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *449 - - *450 - - *108 + - *452 + - *453 + - *110 - *17 - - *106 - - *107 + - *108 + - *109 - name: ref description: |- The Git reference for the activities you want to list. @@ -70078,8 +70325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -70091,7 +70338,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 '404': *6 @@ -70116,8 +70363,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: - - *449 - - *450 + - *452 + - *453 - name: assignee in: path required: true @@ -70153,8 +70400,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#create-an-attestation parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -70266,11 +70513,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/attestations#list-attestations parameters: - - *449 - - *450 + - *452 + - *453 - *17 - - *106 - - *107 + - *108 + - *109 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -70308,7 +70555,7 @@ paths: initiator: type: string examples: - default: *496 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70328,8 +70575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -70337,7 +70584,7 @@ paths: application/json: schema: type: array - items: &497 + items: &500 title: Autolink reference description: An autolink reference. type: object @@ -70396,8 +70643,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -70436,9 +70683,9 @@ paths: description: response content: application/json: - schema: *497 + schema: *500 examples: - default: &498 + default: &501 value: id: 1 key_prefix: TICKET- @@ -70469,9 +70716,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: - - *449 - - *450 - - &499 + - *452 + - *453 + - &502 name: autolink_id description: The unique identifier of the autolink. in: path @@ -70483,9 +70730,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *500 examples: - default: *498 + default: *501 '404': *6 x-github: githubCloudOnly: false @@ -70505,9 +70752,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: - - *449 - - *450 - - *499 + - *452 + - *453 + - *502 responses: '204': description: Response @@ -70531,8 +70778,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response if Dependabot is enabled @@ -70582,8 +70829,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -70604,8 +70851,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -70625,8 +70872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *449 - - *450 + - *452 + - *453 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -70664,7 +70911,7 @@ paths: - url protected: type: boolean - protection: &501 + protection: &504 title: Branch Protection description: Branch Protection type: object @@ -70707,7 +70954,7 @@ paths: required: - contexts - checks - enforce_admins: &504 + enforce_admins: &507 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -70724,7 +70971,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &506 + required_pull_request_reviews: &509 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -70746,7 +70993,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *305 + items: *308 apps: description: The list of apps with review dismissal access. @@ -70778,7 +71025,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *305 + items: *308 apps: description: The list of apps allowed to bypass pull request requirements. @@ -70808,7 +71055,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &503 + restrictions: &506 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -70871,7 +71118,7 @@ paths: type: string teams: type: array - items: *305 + items: *308 apps: type: array items: @@ -71101,9 +71348,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *449 - - *450 - - &502 + - *452 + - *453 + - &505 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). @@ -71117,14 +71364,14 @@ paths: description: Response content: application/json: - schema: &512 + schema: &515 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &563 + commit: &566 title: Commit description: Commit type: object @@ -71163,7 +71410,7 @@ paths: author: anyOf: - type: 'null' - - &500 + - &503 title: Git User description: Metaproperties for Git author/committer information. @@ -71185,7 +71432,7 @@ paths: committer: anyOf: - type: 'null' - - *500 + - *503 message: type: string examples: @@ -71209,7 +71456,7 @@ paths: required: - sha - url - verification: &623 + verification: &626 title: Verification type: object properties: @@ -71245,14 +71492,14 @@ paths: author: oneOf: - *4 - - *287 + - *290 type: - 'null' - object committer: oneOf: - *4 - - *287 + - *290 type: - 'null' - object @@ -71289,7 +71536,7 @@ paths: type: integer files: type: array - items: &574 + items: &577 title: Diff Entry description: Diff Entry type: object @@ -71385,7 +71632,7 @@ paths: - self protected: type: boolean - protection: *501 + protection: *504 protection_url: type: string format: uri @@ -71494,7 +71741,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *455 + '301': *458 '404': *6 x-github: githubCloudOnly: false @@ -71516,15 +71763,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *501 + schema: *504 examples: default: value: @@ -71718,9 +71965,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -71980,7 +72227,7 @@ paths: url: type: string format: uri - required_status_checks: &509 + required_status_checks: &512 title: Status Check Policy description: Status Check Policy type: object @@ -72061,7 +72308,7 @@ paths: items: *4 teams: type: array - items: *305 + items: *308 apps: type: array items: *5 @@ -72079,7 +72326,7 @@ paths: items: *4 teams: type: array - items: *305 + items: *308 apps: type: array items: *5 @@ -72139,7 +72386,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *503 + restrictions: *506 required_conversation_resolution: type: object properties: @@ -72251,9 +72498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -72278,17 +72525,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: &505 + default: &508 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -72310,17 +72557,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72339,9 +72586,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -72366,17 +72613,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *506 + schema: *509 examples: - default: &507 + default: &510 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -72472,9 +72719,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -72572,9 +72819,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *509 examples: - default: *507 + default: *510 '422': *15 x-github: githubCloudOnly: false @@ -72595,9 +72842,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -72624,17 +72871,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: &508 + default: &511 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -72657,17 +72904,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *508 + default: *511 '404': *6 x-github: githubCloudOnly: false @@ -72687,9 +72934,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -72714,17 +72961,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *509 + schema: *512 examples: - default: &510 + default: &513 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -72750,9 +72997,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -72804,9 +73051,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *512 examples: - default: *510 + default: *513 '404': *6 '422': *15 x-github: @@ -72828,9 +73075,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -72854,9 +73101,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response @@ -72890,9 +73137,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -72959,9 +73206,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -73025,9 +73272,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: content: application/json: @@ -73093,15 +73340,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response content: application/json: - schema: *503 + schema: *506 examples: default: value: @@ -73192,9 +73439,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '204': description: Response @@ -73217,9 +73464,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: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response @@ -73229,7 +73476,7 @@ paths: type: array items: *5 examples: - default: &511 + default: &514 value: - id: 1 slug: octoapp @@ -73286,9 +73533,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -73322,7 +73569,7 @@ paths: type: array items: *5 examples: - default: *511 + default: *514 '422': *15 x-github: githubCloudOnly: false @@ -73343,9 +73590,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -73379,7 +73626,7 @@ paths: type: array items: *5 examples: - default: *511 + default: *514 '422': *15 x-github: githubCloudOnly: false @@ -73400,9 +73647,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -73436,7 +73683,7 @@ paths: type: array items: *5 examples: - default: *511 + default: *514 '422': *15 x-github: githubCloudOnly: false @@ -73458,9 +73705,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: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response @@ -73468,9 +73715,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 '404': *6 x-github: githubCloudOnly: false @@ -73490,9 +73737,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -73528,9 +73775,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 '422': *15 x-github: githubCloudOnly: false @@ -73551,9 +73798,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: false content: @@ -73589,9 +73836,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 '422': *15 x-github: githubCloudOnly: false @@ -73612,9 +73859,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: content: application/json: @@ -73649,9 +73896,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 '422': *15 x-github: githubCloudOnly: false @@ -73673,9 +73920,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: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 responses: '200': description: Response @@ -73685,7 +73932,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 '404': *6 x-github: githubCloudOnly: false @@ -73709,9 +73956,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -73744,7 +73991,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 '422': *15 x-github: githubCloudOnly: false @@ -73769,9 +74016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -73804,7 +74051,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 '422': *15 x-github: githubCloudOnly: false @@ -73829,9 +74076,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -73864,7 +74111,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 '422': *15 x-github: githubCloudOnly: false @@ -73891,9 +74138,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 requestBody: required: true content: @@ -73915,7 +74162,7 @@ paths: description: Response content: application/json: - schema: *512 + schema: *515 examples: default: value: @@ -74029,12 +74276,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *449 - - *450 - - *101 - - *102 + - *452 + - *453 - *103 - *104 + - *105 + - *106 - *17 - *19 responses: @@ -74044,9 +74291,9 @@ paths: application/json: schema: type: array - items: *300 + items: *303 examples: - default: *301 + default: *304 '404': *6 '500': *38 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -74066,8 +74313,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: bypass_request_number in: path required: true @@ -74081,7 +74328,7 @@ paths: description: Response content: application/json: - schema: *300 + schema: *303 examples: default: value: @@ -74140,12 +74387,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *449 - - *450 - - *101 - - *102 + - *452 + - *453 - *103 - *104 + - *105 + - *106 - *17 - *19 responses: @@ -74155,9 +74402,9 @@ paths: application/json: schema: type: array - items: *303 + items: *306 examples: - default: *304 + default: *307 '404': *6 '403': *27 '500': *38 @@ -74181,8 +74428,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *449 - - *450 + - *452 + - *453 - name: bypass_request_number in: path required: true @@ -74194,7 +74441,7 @@ paths: description: A single bypass request. content: application/json: - schema: *303 + schema: *306 examples: default: value: @@ -74252,8 +74499,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *449 - - *450 + - *452 + - *453 - name: bypass_request_number in: path required: true @@ -74324,8 +74571,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *449 - - *450 + - *452 + - *453 - name: bypass_response_id in: path required: true @@ -74358,8 +74605,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -74638,7 +74885,7 @@ paths: description: Response content: application/json: - schema: &513 + schema: &516 title: CheckRun description: A check performed on the code of a given code change type: object @@ -74773,8 +75020,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *220 - deployment: &842 + items: *222 + deployment: &845 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -75061,9 +75308,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *449 - - *450 - - &514 + - *452 + - *453 + - &517 name: check_run_id description: The unique identifier of the check run. in: path @@ -75075,9 +75322,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *516 examples: - default: &515 + default: &518 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -75177,9 +75424,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *449 - - *450 - - *514 + - *452 + - *453 + - *517 requestBody: required: true content: @@ -75419,9 +75666,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *516 examples: - default: *515 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75441,9 +75688,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *449 - - *450 - - *514 + - *452 + - *453 + - *517 - *17 - *19 responses: @@ -75553,15 +75800,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *449 - - *450 - - *514 + - *452 + - *453 + - *517 responses: '201': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -75599,8 +75846,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -75622,7 +75869,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &517 + schema: &520 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -75704,12 +75951,12 @@ paths: type: - array - 'null' - items: *220 + items: *222 app: anyOf: - type: 'null' - *5 - repository: *276 + repository: *279 created_at: type: - string @@ -75720,7 +75967,7 @@ paths: - string - 'null' format: date-time - head_commit: *516 + head_commit: *519 latest_check_runs_count: type: integer check_runs_url: @@ -75748,7 +75995,7 @@ paths: - check_runs_url - pull_requests examples: - default: &518 + default: &521 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -76039,9 +76286,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *517 + schema: *520 examples: - default: *518 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76060,8 +76307,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -76122,7 +76369,7 @@ paths: required: - app_id - setting - repository: *276 + repository: *279 examples: default: value: @@ -76370,9 +76617,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *449 - - *450 - - &519 + - *452 + - *453 + - &522 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -76384,9 +76631,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *520 examples: - default: *518 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76409,17 +76656,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: - - *449 - - *450 - - *519 - - &569 + - *452 + - *453 + - *522 + - &572 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &570 + - &573 name: status description: Returns check runs with the specified `status`. in: query @@ -76458,9 +76705,9 @@ paths: type: integer check_runs: type: array - items: *513 + items: *516 examples: - default: &571 + default: &574 value: total_count: 1 check_runs: @@ -76562,15 +76809,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *449 - - *450 - - *519 + - *452 + - *453 + - *522 responses: '201': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -76597,30 +76844,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: - - *449 - - *450 - - *309 - - *310 + - *452 + - *453 + - *312 + - *313 - *19 - *17 - - &535 + - &538 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: *520 - - &536 + schema: *523 + - &539 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer + - *110 - *108 - - *106 - - *107 + - *109 - name: sort description: The property by which to sort the results. in: query @@ -76636,13 +76883,13 @@ paths: be returned. in: query required: false - schema: *311 + schema: *314 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *521 + schema: *524 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -76661,24 +76908,24 @@ paths: items: type: object properties: - number: *124 - created_at: *131 - updated_at: *132 - url: *129 - html_url: *130 - instances_url: *522 - state: *111 - fixed_at: *134 + number: *126 + created_at: *133 + updated_at: *134 + url: *131 + html_url: *132 + instances_url: *525 + state: *113 + fixed_at: *136 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *133 - dismissed_reason: *523 - dismissed_comment: *524 - rule: *525 - tool: *526 - most_recent_instance: *527 + dismissed_at: *135 + dismissed_reason: *526 + dismissed_comment: *527 + rule: *528 + tool: *529 + most_recent_instance: *530 dismissal_approved_by: anyOf: - type: 'null' @@ -76801,14 +77048,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &528 + '403': &531 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76828,9 +77075,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: - - *449 - - *450 - - &529 + - *452 + - *453 + - &532 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -76838,30 +77085,30 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *124 + schema: *126 responses: '200': description: Response content: application/json: - schema: &530 + schema: &533 type: object properties: - number: *124 - created_at: *131 - updated_at: *132 - url: *129 - html_url: *130 - instances_url: *522 - state: *111 - fixed_at: *134 + number: *126 + created_at: *133 + updated_at: *134 + url: *131 + html_url: *132 + instances_url: *525 + state: *113 + fixed_at: *136 dismissed_by: anyOf: - type: 'null' - *4 - dismissed_at: *133 - dismissed_reason: *523 - dismissed_comment: *524 + dismissed_at: *135 + dismissed_reason: *526 + dismissed_comment: *527 rule: type: object properties: @@ -76923,8 +77170,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *526 - most_recent_instance: *527 + tool: *529 + most_recent_instance: *530 dismissal_approved_by: anyOf: - type: 'null' @@ -77020,9 +77267,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77040,9 +77287,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 requestBody: required: true content: @@ -77057,8 +77304,8 @@ paths: enum: - open - dismissed - dismissed_reason: *523 - dismissed_comment: *524 + dismissed_reason: *526 + dismissed_comment: *527 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -77086,7 +77333,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *533 examples: default: value: @@ -77162,14 +77409,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &534 + '403': &537 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': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77189,15 +77436,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 responses: '200': description: Response content: application/json: - schema: &531 + schema: &534 type: object properties: status: @@ -77224,13 +77471,13 @@ paths: - description - started_at examples: - default: &532 + default: &535 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &533 + '400': &536 description: Bad Request content: application/json: @@ -77241,9 +77488,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': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77266,29 +77513,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 responses: '200': description: OK content: application/json: - schema: *531 + schema: *534 examples: - default: *532 + default: *535 '202': description: Accepted content: application/json: - schema: *531 + schema: *534 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *533 + '400': *536 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -77298,7 +77545,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77320,9 +77567,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 requestBody: required: false content: @@ -77368,12 +77615,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *533 - '403': *534 + '400': *536 + '403': *537 '404': *6 '422': description: Unprocessable Entity - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77393,13 +77640,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 - *19 - *17 - - *535 - - *536 + - *538 + - *539 responses: '200': description: Response @@ -77410,10 +77657,10 @@ paths: items: type: object properties: - ref: *520 - analysis_key: *537 - environment: *538 - category: *539 + ref: *523 + analysis_key: *540 + environment: *541 + category: *542 state: type: - string @@ -77430,7 +77677,7 @@ paths: properties: text: type: string - location: *540 + location: *543 html_url: type: string classifications: @@ -77438,7 +77685,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: *541 + items: *544 examples: default: value: @@ -77475,9 +77722,9 @@ paths: end_column: 50 classifications: - source - '403': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77509,30 +77756,30 @@ 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: - - *449 - - *450 - - *309 - - *310 + - *452 + - *453 + - *312 + - *313 - *19 - *17 - - *536 + - *539 - 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: *520 + schema: *523 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &542 + schema: &545 type: string description: An identifier for the upload. examples: - 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *108 + - *110 - name: sort description: The property by which to sort the results. in: query @@ -77549,23 +77796,23 @@ paths: application/json: schema: type: array - items: &543 + items: &546 type: object properties: - ref: *520 - commit_sha: &551 + ref: *523 + commit_sha: &554 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: *537 + analysis_key: *540 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *539 + category: *542 error: type: string examples: @@ -77590,8 +77837,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *542 - tool: *526 + sarif_id: *545 + tool: *529 deletable: type: boolean warning: @@ -77653,9 +77900,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77689,8 +77936,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: - - *449 - - *450 + - *452 + - *453 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -77703,7 +77950,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *546 examples: response: summary: application/json response @@ -77757,14 +78004,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *528 + '403': *531 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77844,8 +78091,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: - - *449 - - *450 + - *452 + - *453 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -77901,9 +78148,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': *534 + '403': *537 '404': *6 - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -77923,8 +78170,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -77932,7 +78179,7 @@ paths: application/json: schema: type: array - items: &544 + items: &547 title: CodeQL Database description: A CodeQL database. type: object @@ -78044,9 +78291,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': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78073,8 +78320,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: - - *449 - - *450 + - *452 + - *453 - name: language in: path description: The language of the CodeQL database. @@ -78086,7 +78333,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *547 examples: default: value: @@ -78118,11 +78365,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': &576 + '302': &579 description: Found - '403': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78142,8 +78389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *449 - - *450 + - *452 + - *453 - name: language in: path description: The language of the CodeQL database. @@ -78153,9 +78400,9 @@ paths: responses: '204': description: Response - '403': *534 + '403': *537 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78181,8 +78428,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -78191,7 +78438,7 @@ paths: type: object additionalProperties: false properties: - language: &545 + language: &548 type: string description: The language targeted by the CodeQL query enum: @@ -78271,7 +78518,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &549 + schema: &552 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -78279,9 +78526,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *118 + controller_repo: *120 actor: *4 - query_language: *545 + query_language: *548 query_pack_url: type: string description: The download url for the query pack. @@ -78329,7 +78576,7 @@ paths: items: type: object properties: - repository: &546 + repository: &549 title: Repository Identifier description: Repository Identifier type: object @@ -78371,7 +78618,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &550 + analysis_status: &553 type: string description: The new status of the CodeQL variant analysis repository task. @@ -78403,7 +78650,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &547 + access_mismatch_repos: &550 type: object properties: repository_count: @@ -78418,7 +78665,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: *546 + items: *549 required: - repository_count - repositories @@ -78441,8 +78688,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *547 - over_limit_repos: *547 + no_codeql_db_repos: *550 + over_limit_repos: *550 required: - access_mismatch_repos - not_found_repos @@ -78458,7 +78705,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &548 + value: &551 summary: Default response value: id: 1 @@ -78604,17 +78851,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *548 + value: *551 repository_lists: summary: Response for a successful variant analysis submission - value: *548 + value: *551 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78635,8 +78882,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: - - *449 - - *450 + - *452 + - *453 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -78648,11 +78895,11 @@ paths: description: Response content: application/json: - schema: *549 + schema: *552 examples: - default: *548 + default: *551 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78673,7 +78920,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: - - *449 + - *452 - name: repo in: path description: The name of the controller repository. @@ -78707,8 +78954,8 @@ paths: schema: type: object properties: - repository: *118 - analysis_status: *550 + repository: *120 + analysis_status: *553 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -78812,7 +79059,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78833,8 +79080,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -78925,9 +79172,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *528 + '403': *531 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78946,8 +79193,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -79016,7 +79263,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -79041,7 +79288,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *534 + '403': *537 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -79055,7 +79302,7 @@ paths: content: application/json: schema: *3 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79112,8 +79359,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -79121,7 +79368,7 @@ paths: schema: type: object properties: - commit_sha: *551 + commit_sha: *554 ref: type: string description: |- @@ -79181,7 +79428,7 @@ paths: schema: type: object properties: - id: *542 + id: *545 url: type: string description: The REST API URL for checking the status of the upload. @@ -79195,11 +79442,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': *534 + '403': *537 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -79218,8 +79465,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: - - *449 - - *450 + - *452 + - *453 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -79267,10 +79514,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': *528 + '403': *531 '404': description: Not Found if the sarif id does not match any upload - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -79292,8 +79539,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -79317,7 +79564,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *112 + configuration: *114 examples: default: value: @@ -79349,7 +79596,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': *149 + '204': *151 '304': *35 '403': *27 '404': *6 @@ -79374,8 +79621,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *449 - - *450 + - *452 + - *453 - 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 @@ -79503,8 +79750,8 @@ paths: parameters: - *17 - *19 - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -79520,7 +79767,7 @@ paths: type: integer codespaces: type: array - items: *372 + items: *375 examples: default: value: @@ -79818,8 +80065,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -79883,22 +80130,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '400': *14 '401': *23 '403': *27 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -79922,8 +80169,8 @@ paths: parameters: - *17 - *19 - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -79987,8 +80234,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: - - *449 - - *450 + - *452 + - *453 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -80025,9 +80272,9 @@ paths: type: integer machines: type: array - items: *553 + items: *556 examples: - default: &787 + default: &790 value: total_count: 2 machines: @@ -80067,8 +80314,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *449 - - *450 + - *452 + - *453 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -80155,8 +80402,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: - - *449 - - *450 + - *452 + - *453 - 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 @@ -80204,7 +80451,7 @@ paths: '403': *27 '404': *6 '422': *15 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80225,8 +80472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -80244,7 +80491,7 @@ paths: type: integer secrets: type: array - items: &557 + items: &560 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -80265,7 +80512,7 @@ paths: - created_at - updated_at examples: - default: *554 + default: *557 headers: Link: *45 x-github: @@ -80288,16 +80535,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *555 + schema: *558 examples: - default: *556 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -80317,17 +80564,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '200': description: Response content: application/json: - schema: *557 + schema: *560 examples: - default: *558 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80347,9 +80594,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: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 requestBody: required: true content: @@ -80377,7 +80624,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -80401,9 +80648,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '204': description: Response @@ -80431,8 +80678,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *449 - - *450 + - *452 + - *453 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -80470,7 +80717,7 @@ paths: application/json: schema: type: array - items: &559 + items: &562 title: Collaborator description: Collaborator type: object @@ -80663,9 +80910,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: - - *449 - - *450 - - *137 + - *452 + - *453 + - *139 responses: '204': description: Response if user is a collaborator @@ -80711,9 +80958,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *449 - - *450 - - *137 + - *452 + - *453 + - *139 requestBody: required: false content: @@ -80739,7 +80986,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &635 + schema: &638 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -80751,7 +80998,7 @@ paths: format: int64 examples: - 42 - repository: *276 + repository: *279 invitee: anyOf: - type: 'null' @@ -80927,7 +81174,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *251 + schema: *253 '403': *27 x-github: triggersNotification: true @@ -80967,9 +81214,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *449 - - *450 - - *137 + - *452 + - *453 + - *139 responses: '204': description: No Content when collaborator was removed from the repository. @@ -81000,9 +81247,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *449 - - *450 - - *137 + - *452 + - *453 + - *139 responses: '200': description: if user has admin permissions @@ -81022,7 +81269,7 @@ paths: user: anyOf: - type: 'null' - - *559 + - *562 required: - permission - role_name @@ -81076,8 +81323,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -81087,7 +81334,7 @@ paths: application/json: schema: type: array - items: &560 + items: &563 title: Commit Comment description: Commit Comment type: object @@ -81128,8 +81375,8 @@ paths: updated_at: type: string format: date-time - author_association: *214 - reactions: *215 + author_association: *216 + reactions: *217 required: - url - html_url @@ -81145,7 +81392,7 @@ paths: - created_at - updated_at examples: - default: &565 + default: &568 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -81204,17 +81451,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '200': description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: &566 + default: &569 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -81271,9 +81518,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -81295,7 +81542,7 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: default: value: @@ -81346,9 +81593,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '204': description: Response @@ -81369,9 +81616,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 - 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. @@ -81397,7 +81644,7 @@ paths: application/json: schema: type: array - items: &561 + items: &564 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -81441,7 +81688,7 @@ paths: - content - created_at examples: - default: &638 + default: &641 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -81486,9 +81733,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -81520,9 +81767,9 @@ paths: description: Reaction exists content: application/json: - schema: *561 + schema: *564 examples: - default: &562 + default: &565 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -81551,9 +81798,9 @@ paths: description: Reaction created content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -81575,10 +81822,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *449 - - *450 - - *231 - - &639 + - *452 + - *453 + - *233 + - &642 name: reaction_id description: The unique identifier of the reaction. in: path @@ -81633,8 +81880,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *449 - - *450 + - *452 + - *453 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -81690,9 +81937,9 @@ paths: application/json: schema: type: array - items: *563 + items: *566 examples: - default: &687 + default: &690 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -81766,7 +82013,7 @@ paths: '500': *38 '400': *14 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81786,9 +82033,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *449 - - *450 - - &564 + - *452 + - *453 + - &567 name: commit_sha description: The SHA of the commit. in: path @@ -81835,7 +82082,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81860,9 +82107,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *449 - - *450 - - *564 + - *452 + - *453 + - *567 - *17 - *19 responses: @@ -81872,9 +82119,9 @@ paths: application/json: schema: type: array - items: *560 + items: *563 examples: - default: *565 + default: *568 headers: Link: *45 x-github: @@ -81902,9 +82149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *449 - - *450 - - *564 + - *452 + - *453 + - *567 requestBody: required: true content: @@ -81939,9 +82186,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: *566 + default: *569 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -81969,9 +82216,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: - - *449 - - *450 - - *564 + - *452 + - *453 + - *567 - *17 - *19 responses: @@ -81981,9 +82228,9 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: &679 + default: &682 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -82463,7 +82710,7 @@ paths: draft: false headers: Link: *45 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82520,11 +82767,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *449 - - *450 + - *452 + - *453 - *19 - *17 - - &568 + - &571 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)" @@ -82539,9 +82786,9 @@ paths: description: Response content: application/json: - schema: *563 + schema: *566 examples: - default: &665 + default: &668 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -82628,8 +82875,8 @@ paths: '422': *15 '404': *6 '500': *38 - '503': *190 - '409': *117 + '503': *192 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82654,11 +82901,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: - - *449 - - *450 - - *568 - - *569 - - *570 + - *452 + - *453 + - *571 + - *572 + - *573 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -82692,9 +82939,9 @@ paths: type: integer check_runs: type: array - items: *513 + items: *516 examples: - default: *571 + default: *574 headers: Link: *45 x-github: @@ -82719,9 +82966,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: - - *449 - - *450 - - *568 + - *452 + - *453 + - *571 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -82729,7 +82976,7 @@ paths: schema: type: integer example: 1 - - *569 + - *572 - *17 - *19 responses: @@ -82747,7 +82994,7 @@ paths: type: integer check_suites: type: array - items: *517 + items: *520 examples: default: value: @@ -82947,9 +83194,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: - - *449 - - *450 - - *568 + - *452 + - *453 + - *571 - *17 - *19 responses: @@ -83020,7 +83267,7 @@ paths: type: string total_count: type: integer - repository: *276 + repository: *279 commit_url: type: string format: uri @@ -83151,9 +83398,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *449 - - *450 - - *568 + - *452 + - *453 + - *571 - *17 - *19 responses: @@ -83163,7 +83410,7 @@ paths: application/json: schema: type: array - items: &740 + items: &743 title: Status description: The status of a commit. type: object @@ -83244,7 +83491,7 @@ paths: site_admin: false headers: Link: *45 - '301': *455 + '301': *458 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83272,8 +83519,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -83306,11 +83553,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *572 + - *575 code_of_conduct_file: anyOf: - type: 'null' - - &573 + - &576 title: Community Health File type: object properties: @@ -83326,23 +83573,23 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 contributing: anyOf: - type: 'null' - - *573 + - *576 readme: anyOf: - type: 'null' - - *573 + - *576 issue_template: anyOf: - type: 'null' - - *573 + - *576 pull_request_template: anyOf: - type: 'null' - - *573 + - *576 required: - code_of_conduct - code_of_conduct_file @@ -83471,8 +83718,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *449 - - *450 + - *452 + - *453 - *19 - *17 - name: basehead @@ -83520,8 +83767,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *563 - merge_base_commit: *563 + base_commit: *566 + merge_base_commit: *566 status: type: string enum: @@ -83545,10 +83792,10 @@ paths: - 6 commits: type: array - items: *563 + items: *566 files: type: array - items: *574 + items: *577 required: - url - html_url @@ -83792,7 +84039,7 @@ paths: module Test" '404': *6 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83834,8 +84081,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *449 - - *450 + - *452 + - *453 - name: path description: path parameter in: path @@ -84005,7 +84252,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &575 + response-if-content-is-a-file-github-object: &578 summary: Response if content is a file value: type: file @@ -84142,7 +84389,7 @@ paths: - size - type - url - - &692 + - &695 title: Content File description: Content File type: object @@ -84360,7 +84607,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *575 + response-if-content-is-a-file: *578 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -84429,7 +84676,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *576 + '302': *579 '304': *35 x-github: githubCloudOnly: false @@ -84452,8 +84699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *449 - - *450 + - *452 + - *453 - name: path description: path parameter in: path @@ -84548,7 +84795,7 @@ paths: description: Response content: application/json: - schema: &577 + schema: &580 title: File Commit description: File Commit type: object @@ -84704,7 +84951,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *580 examples: example-for-creating-a-file: value: @@ -84758,7 +85005,7 @@ paths: schema: oneOf: - *3 - - &618 + - &621 description: Repository rule violation was detected type: object properties: @@ -84779,7 +85026,7 @@ paths: items: type: object properties: - placeholder_id: &732 + placeholder_id: &735 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -84811,8 +85058,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *449 - - *450 + - *452 + - *453 - name: path description: path parameter in: path @@ -84873,7 +85120,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *580 examples: default: value: @@ -84907,8 +85154,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *117 - '503': *190 + '409': *119 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84928,8 +85175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *449 - - *450 + - *452 + - *453 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -85053,26 +85300,26 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *449 - - *450 - - *325 - - *326 - - *327 + - *452 + - *453 - *328 + - *329 + - *330 + - *331 - 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 - - *329 - - *578 - - *330 - - *331 - *332 + - *581 + - *333 + - *334 + - *335 + - *110 - *108 - - *106 - - *107 + - *109 - *17 responses: '200': @@ -85081,11 +85328,11 @@ paths: application/json: schema: type: array - items: &582 + items: &585 type: object description: A Dependabot alert. properties: - number: *124 + number: *126 state: type: string description: The state of the Dependabot alert. @@ -85100,7 +85347,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *125 + package: *127 manifest_path: type: string description: The full path to the dependency manifest file, @@ -85131,13 +85378,13 @@ paths: - direct - transitive - - security_advisory: *579 - security_vulnerability: *128 - url: *129 - html_url: *130 - created_at: *131 - updated_at: *132 - dismissed_at: *133 + security_advisory: *582 + security_vulnerability: *130 + url: *131 + html_url: *132 + created_at: *133 + updated_at: *134 + dismissed_at: *135 dismissed_by: anyOf: - type: 'null' @@ -85161,9 +85408,9 @@ paths: description: An optional comment associated with the alert's dismissal. maxLength: 280 - fixed_at: *134 - auto_dismissed_at: *580 - dismissal_request: *581 + fixed_at: *136 + auto_dismissed_at: *583 + dismissal_request: *584 assignees: type: array description: The users assigned to this alert. @@ -85418,9 +85665,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *449 - - *450 - - &583 + - *452 + - *453 + - &586 name: alert_number in: path description: |- @@ -85429,13 +85676,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *124 + schema: *126 responses: '200': description: Response content: application/json: - schema: *582 + schema: *585 examples: default: value: @@ -85567,9 +85814,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *449 - - *450 - - *583 + - *452 + - *453 + - *586 requestBody: required: true content: @@ -85625,7 +85872,7 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: default: value: @@ -85732,7 +85979,7 @@ paths: '400': *14 '403': *27 '404': *6 - '409': *117 + '409': *119 '422': *7 x-github: githubCloudOnly: false @@ -85755,8 +86002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -85774,7 +86021,7 @@ paths: type: integer secrets: type: array - items: &586 + items: &589 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -85828,16 +86075,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *584 + schema: *587 examples: - default: *585 + default: *588 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85857,15 +86104,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '200': description: Response content: application/json: - schema: *586 + schema: *589 examples: default: value: @@ -85891,9 +86138,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 requestBody: required: true content: @@ -85921,7 +86168,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -85945,9 +86192,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *449 - - *450 - - *286 + - *452 + - *453 + - *289 responses: '204': description: Response @@ -85969,8 +86216,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: - - *449 - - *450 + - *452 + - *453 - 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 @@ -86144,8 +86391,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -86405,8 +86652,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -86489,7 +86736,7 @@ paths: - version - url additionalProperties: false - metadata: &587 + metadata: &590 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -86528,7 +86775,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *587 + metadata: *590 resolved: type: object description: A collection of resolved package dependencies. @@ -86542,7 +86789,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *587 + metadata: *590 relationship: type: string description: A notation of whether a dependency is requested @@ -86675,8 +86922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *449 - - *450 + - *452 + - *453 - name: sha description: The SHA recorded at creation time. in: query @@ -86717,9 +86964,9 @@ paths: application/json: schema: type: array - items: *588 + items: *591 examples: - default: *589 + default: *592 headers: Link: *45 x-github: @@ -86785,8 +87032,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -86868,7 +87115,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: simple-example: summary: Simple example @@ -86941,9 +87188,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *449 - - *450 - - &590 + - *452 + - *453 + - &593 name: deployment_id description: deployment_id parameter in: path @@ -86955,7 +87202,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: default: value: @@ -87020,9 +87267,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *449 - - *450 - - *590 + - *452 + - *453 + - *593 responses: '204': description: Response @@ -87044,9 +87291,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *449 - - *450 - - *590 + - *452 + - *453 + - *593 - *17 - *19 responses: @@ -87056,7 +87303,7 @@ paths: application/json: schema: type: array - items: &591 + items: &594 title: Deployment Status description: The status of a deployment. type: object @@ -87220,9 +87467,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *449 - - *450 - - *590 + - *452 + - *453 + - *593 requestBody: required: true content: @@ -87297,9 +87544,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: &592 + default: &595 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -87355,9 +87602,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *449 - - *450 - - *590 + - *452 + - *453 + - *593 - name: status_id in: path required: true @@ -87368,9 +87615,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: *592 + default: *595 '404': *6 x-github: githubCloudOnly: false @@ -87397,12 +87644,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 - - *593 - - *594 - - *595 + - *452 + - *453 - *596 + - *597 + - *598 + - *599 - *17 - *19 responses: @@ -87412,9 +87659,9 @@ paths: application/json: schema: type: array - items: *597 + items: *600 examples: - default: *598 + default: *601 '404': *6 '403': *27 '500': *38 @@ -87438,8 +87685,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -87451,7 +87698,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *597 + schema: *600 examples: default: value: @@ -87507,8 +87754,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -87567,12 +87814,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *449 - - *450 - - *593 - - *594 - - *595 + - *452 + - *453 - *596 + - *597 + - *598 + - *599 - *17 - *19 responses: @@ -87582,9 +87829,9 @@ paths: application/json: schema: type: array - items: *599 + items: *602 examples: - default: *600 + default: *603 '404': *6 '403': *27 '500': *38 @@ -87608,8 +87855,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -87621,7 +87868,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *599 + schema: *602 examples: default: value: @@ -87672,8 +87919,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -87711,7 +87958,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *599 + schema: *602 examples: default: value: @@ -87762,8 +88009,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -87834,8 +88081,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -87868,12 +88115,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 - - *101 - - *102 + - *452 + - *453 - *103 - - *337 + - *104 + - *105 + - *340 - *17 - *19 responses: @@ -87883,9 +88130,9 @@ paths: application/json: schema: type: array - items: *601 + items: *604 examples: - default: *602 + default: *605 '404': *6 '403': *27 '500': *38 @@ -87910,8 +88157,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -87923,7 +88170,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *601 + schema: *604 examples: default: value: @@ -87981,8 +88228,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: alert_number in: path required: true @@ -88051,8 +88298,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -88109,8 +88356,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -88128,7 +88375,7 @@ paths: - 5 environments: type: array - items: &604 + items: &607 title: Environment description: Details of a deployment environment type: object @@ -88190,7 +88437,7 @@ paths: type: string examples: - wait_timer - wait_timer: &606 + wait_timer: &609 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -88232,11 +88479,11 @@ paths: items: type: object properties: - type: *603 + type: *606 reviewer: anyOf: - *4 - - *305 + - *308 required: - id - node_id @@ -88259,7 +88506,7 @@ paths: - id - node_id - type - deployment_branch_policy: &607 + deployment_branch_policy: &610 type: - object - 'null' @@ -88376,9 +88623,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *449 - - *450 - - &605 + - *452 + - *453 + - &608 name: environment_name in: path required: true @@ -88391,9 +88638,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *607 examples: - default: &608 + default: &611 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -88477,9 +88724,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 requestBody: required: false content: @@ -88489,7 +88736,7 @@ paths: - object - 'null' properties: - wait_timer: *606 + wait_timer: *609 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -88508,14 +88755,14 @@ paths: items: type: object properties: - type: *603 + type: *606 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *607 + deployment_branch_policy: *610 additionalProperties: false examples: default: @@ -88535,9 +88782,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *607 examples: - default: *608 + default: *611 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -88561,9 +88808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 responses: '204': description: Default response @@ -88588,9 +88835,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 - *17 - *19 responses: @@ -88609,7 +88856,7 @@ paths: - 2 branch_policies: type: array - items: &609 + items: &612 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -88670,9 +88917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 requestBody: required: true content: @@ -88720,9 +88967,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *612 examples: - example-wildcard: &610 + example-wildcard: &613 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -88764,10 +89011,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *449 - - *450 - - *605 - - &611 + - *452 + - *453 + - *608 + - &614 name: branch_policy_id in: path required: true @@ -88779,9 +89026,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *612 examples: - default: *610 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88800,10 +89047,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *449 - - *450 - - *605 - - *611 + - *452 + - *453 + - *608 + - *614 requestBody: required: true content: @@ -88832,9 +89079,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *612 examples: - default: *610 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88853,10 +89100,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *449 - - *450 - - *605 - - *611 + - *452 + - *453 + - *608 + - *614 responses: '204': description: Response @@ -88881,9 +89128,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: - - *605 - - *450 - - *449 + - *608 + - *453 + - *452 responses: '200': description: List of deployment protection rules @@ -88900,7 +89147,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &612 + items: &615 title: Deployment protection rule description: Deployment protection rule type: object @@ -88922,7 +89169,7 @@ paths: for the environment. examples: - true - app: &613 + app: &616 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -89025,9 +89272,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: - - *605 - - *450 - - *449 + - *608 + - *453 + - *452 requestBody: content: application/json: @@ -89048,9 +89295,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *612 + schema: *615 examples: - default: &614 + default: &617 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -89085,9 +89332,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: - - *605 - - *450 - - *449 + - *608 + - *453 + - *452 - *19 - *17 responses: @@ -89107,7 +89354,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *613 + items: *616 examples: default: value: @@ -89142,10 +89389,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: - - *449 - - *450 - - *605 - - &615 + - *452 + - *453 + - *608 + - &618 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -89157,9 +89404,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *615 examples: - default: *614 + default: *617 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89180,10 +89427,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: - - *605 - - *450 - - *449 - - *615 + - *608 + - *453 + - *452 + - *618 responses: '204': description: Response @@ -89209,9 +89456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 - *17 - *19 responses: @@ -89229,9 +89476,9 @@ paths: type: integer secrets: type: array - items: *480 + items: *483 examples: - default: *481 + default: *484 headers: Link: *45 x-github: @@ -89256,17 +89503,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 responses: '200': description: Response content: application/json: - schema: *482 + schema: *485 examples: - default: *483 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89288,18 +89535,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *449 - - *450 - - *605 - - *286 + - *452 + - *453 + - *608 + - *289 responses: '200': description: Response content: application/json: - schema: *480 + schema: *483 examples: - default: *616 + default: *619 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89321,10 +89568,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *449 - - *450 - - *605 - - *286 + - *452 + - *453 + - *608 + - *289 requestBody: required: true content: @@ -89355,7 +89602,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -89381,10 +89628,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *449 - - *450 - - *605 - - *286 + - *452 + - *453 + - *608 + - *289 responses: '204': description: Default response @@ -89409,10 +89656,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *449 - - *450 - - *605 - - *467 + - *452 + - *453 + - *608 + - *470 - *19 responses: '200': @@ -89429,9 +89676,9 @@ paths: type: integer variables: type: array - items: *484 + items: *487 examples: - default: *485 + default: *488 headers: Link: *45 x-github: @@ -89454,9 +89701,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *449 - - *450 - - *605 + - *452 + - *453 + - *608 requestBody: required: true content: @@ -89483,7 +89730,7 @@ paths: description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -89508,18 +89755,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *449 - - *450 - - *605 - - *289 + - *452 + - *453 + - *608 + - *292 responses: '200': description: Response content: application/json: - schema: *484 + schema: *487 examples: - default: *617 + default: *620 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89540,10 +89787,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *449 - - *450 - - *289 - - *605 + - *452 + - *453 + - *292 + - *608 requestBody: required: true content: @@ -89585,10 +89832,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *449 - - *450 - - *289 - - *605 + - *452 + - *453 + - *292 + - *608 responses: '204': description: Response @@ -89610,8 +89857,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -89621,7 +89868,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: 200-response: value: @@ -89679,8 +89926,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *449 - - *450 + - *452 + - *453 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -89702,7 +89949,7 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: default: value: @@ -89839,8 +90086,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -89873,9 +90120,9 @@ paths: description: Response content: application/json: - schema: *454 + schema: *457 examples: - default: *456 + default: *459 '400': *14 '422': *15 '403': *27 @@ -89896,8 +90143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -89948,7 +90195,7 @@ paths: schema: type: string '404': *6 - '409': *117 + '409': *119 '403': *27 '422': description: Validation failed @@ -89956,8 +90203,8 @@ paths: application/json: schema: oneOf: - - *251 - - *618 + - *253 + - *621 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89982,8 +90229,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *449 - - *450 + - *452 + - *453 - name: file_sha in: path required: true @@ -90035,7 +90282,7 @@ paths: '404': *6 '422': *15 '403': *27 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90083,8 +90330,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -90193,7 +90440,7 @@ paths: description: Response content: application/json: - schema: &619 + schema: &622 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -90370,7 +90617,7 @@ paths: type: string '422': *15 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90420,15 +90667,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *449 - - *450 - - *564 + - *452 + - *453 + - *567 responses: '200': description: Response content: application/json: - schema: *619 + schema: *622 examples: default: value: @@ -90459,7 +90706,7 @@ paths: payload: verified_at: '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90484,9 +90731,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *449 - - *450 - - &620 + - *452 + - *453 + - &623 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. @@ -90503,7 +90750,7 @@ paths: application/json: schema: type: array - items: &621 + items: &624 title: Git Reference description: Git references within a repository type: object @@ -90558,7 +90805,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: Link: *45 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90579,17 +90826,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *449 - - *450 - - *620 + - *452 + - *453 + - *623 responses: '200': description: Response content: application/json: - schema: *621 + schema: *624 examples: - default: &622 + default: &625 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -90599,7 +90846,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90618,8 +90865,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -90648,16 +90895,16 @@ paths: description: Response content: application/json: - schema: *621 + schema: *624 examples: - default: *622 + default: *625 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90676,9 +90923,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *449 - - *450 - - *620 + - *452 + - *453 + - *623 requestBody: required: true content: @@ -90707,11 +90954,11 @@ paths: description: Response content: application/json: - schema: *621 + schema: *624 examples: - default: *622 + default: *625 '422': *15 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90727,16 +90974,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *449 - - *450 - - *620 + - *452 + - *453 + - *623 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90784,8 +91031,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -90852,7 +91099,7 @@ paths: description: Response content: application/json: - schema: &624 + schema: &627 title: Git Tag description: Metadata for a Git tag type: object @@ -90908,7 +91155,7 @@ paths: - sha - type - url - verification: *623 + verification: *626 required: - sha - url @@ -90918,7 +91165,7 @@ paths: - tag - message examples: - default: &625 + default: &628 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -90945,7 +91192,7 @@ paths: schema: type: string '422': *15 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90991,8 +91238,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *449 - - *450 + - *452 + - *453 - name: tag_sha in: path required: true @@ -91003,11 +91250,11 @@ paths: description: Response content: application/json: - schema: *624 + schema: *627 examples: - default: *625 + default: *628 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91029,8 +91276,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -91104,7 +91351,7 @@ paths: description: Response content: application/json: - schema: &626 + schema: &629 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -91183,7 +91430,7 @@ paths: '422': *15 '404': *6 '403': *27 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91206,8 +91453,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *449 - - *450 + - *452 + - *453 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -91230,7 +91477,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *629 examples: default-response: summary: Default response @@ -91271,7 +91518,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91289,8 +91536,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -91300,7 +91547,7 @@ paths: application/json: schema: type: array - items: &627 + items: &630 title: Webhook description: Webhooks for repositories. type: object @@ -91363,7 +91610,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &878 + last_response: &881 title: Hook Response type: object properties: @@ -91440,8 +91687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -91494,9 +91741,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *630 examples: - default: &628 + default: &631 value: type: Repository id: 12345678 @@ -91544,17 +91791,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 responses: '200': description: Response content: application/json: - schema: *627 + schema: *630 examples: - default: *628 + default: *631 '404': *6 x-github: githubCloudOnly: false @@ -91574,9 +91821,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 requestBody: required: true content: @@ -91621,9 +91868,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *630 examples: - default: *628 + default: *631 '422': *15 '404': *6 x-github: @@ -91644,9 +91891,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 responses: '204': description: Response @@ -91670,9 +91917,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: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 responses: '200': description: Response @@ -91699,9 +91946,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: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 requestBody: required: false content: @@ -91745,11 +91992,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 - *17 - - *341 + - *344 responses: '200': description: Response @@ -91757,9 +92004,9 @@ paths: application/json: schema: type: array - items: *342 + items: *345 examples: - default: *343 + default: *346 '400': *14 '422': *15 x-github: @@ -91778,18 +92025,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: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 - *16 responses: '200': description: Response content: application/json: - schema: *344 + schema: *347 examples: - default: *345 + default: *348 '400': *14 '422': *15 x-github: @@ -91808,9 +92055,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: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 - *16 responses: '202': *37 @@ -91833,9 +92080,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 responses: '204': description: Response @@ -91860,9 +92107,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *449 - - *450 - - *340 + - *452 + - *453 + - *343 responses: '204': description: Response @@ -91885,8 +92132,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response if immutable releases are enabled @@ -91934,11 +92181,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-immutable-releases parameters: - - *449 - - *450 + - *452 + - *453 responses: - '204': *149 - '409': *117 + '204': *151 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91955,11 +92202,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-immutable-releases parameters: - - *449 - - *450 + - *452 + - *453 responses: - '204': *149 - '409': *117 + '204': *151 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92013,14 +92260,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: &629 + schema: &632 title: Import description: A repository import from an external source. type: object @@ -92127,7 +92374,7 @@ paths: - html_url - authors_url examples: - default: &632 + default: &635 value: vcs: subversion use_lfs: true @@ -92143,7 +92390,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': &630 + '503': &633 description: Unavailable due to service under maintenance. content: application/json: @@ -92172,8 +92419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -92221,7 +92468,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *632 examples: default: value: @@ -92246,7 +92493,7 @@ paths: type: string '422': *15 '404': *6 - '503': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92274,8 +92521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -92327,7 +92574,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *632 examples: example-1: summary: Example 1 @@ -92375,7 +92622,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': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92398,12 +92645,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response - '503': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92429,9 +92676,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *449 - - *450 - - &809 + - *452 + - *453 + - &812 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -92445,7 +92692,7 @@ paths: application/json: schema: type: array - items: &631 + items: &634 title: Porter Author description: Porter Author type: object @@ -92499,7 +92746,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': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92524,8 +92771,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *449 - - *450 + - *452 + - *453 - name: author_id in: path required: true @@ -92555,7 +92802,7 @@ paths: description: Response content: application/json: - schema: *631 + schema: *634 examples: default: value: @@ -92568,7 +92815,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92592,8 +92839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -92634,7 +92881,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92662,8 +92909,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -92690,11 +92937,11 @@ paths: description: Response content: application/json: - schema: *629 + schema: *632 examples: - default: *632 + default: *635 '422': *15 - '503': *630 + '503': *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92717,8 +92964,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -92726,8 +92973,8 @@ paths: application/json: schema: *20 examples: - default: *357 - '301': *455 + default: *360 + '301': *458 '404': *6 x-github: githubCloudOnly: false @@ -92747,8 +92994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -92756,12 +93003,12 @@ paths: application/json: schema: anyOf: - - *359 + - *362 - type: object properties: {} additionalProperties: false examples: - default: &634 + default: &637 value: limit: collaborators_only origin: repository @@ -92786,13 +93033,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: application/json: - schema: *633 + schema: *636 examples: default: summary: Example request body @@ -92804,9 +93051,9 @@ paths: description: Response content: application/json: - schema: *359 + schema: *362 examples: - default: *634 + default: *637 '409': description: Response x-github: @@ -92828,8 +93075,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -92852,8 +93099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -92863,9 +93110,9 @@ paths: application/json: schema: type: array - items: *635 + items: *638 examples: - default: &801 + default: &804 value: - id: 1 repository: @@ -92996,9 +93243,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *449 - - *450 - - *363 + - *452 + - *453 + - *366 requestBody: required: false content: @@ -93027,7 +93274,7 @@ paths: description: Response content: application/json: - schema: *635 + schema: *638 examples: default: value: @@ -93158,9 +93405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *449 - - *450 - - *363 + - *452 + - *453 + - *366 responses: '204': description: Response @@ -93191,8 +93438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *449 - - *450 + - *452 + - *453 - 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 @@ -93240,7 +93487,7 @@ paths: required: false schema: type: string - - *370 + - *373 - name: sort description: What to sort results by. in: query @@ -93252,8 +93499,8 @@ paths: - updated - comments default: created - - *108 - - *222 + - *110 + - *224 - *17 - *19 responses: @@ -93263,9 +93510,9 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: &644 + default: &647 value: - id: 1 node_id: MDU6SXNzdWUx @@ -93414,7 +93661,7 @@ paths: state_reason: completed headers: Link: *45 - '301': *455 + '301': *458 '422': *15 '404': *6 x-github: @@ -93443,8 +93690,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -93526,9 +93773,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: &641 + default: &644 value: id: 1 node_id: MDU6SXNzdWUx @@ -93683,9 +93930,9 @@ paths: '400': *14 '403': *27 '422': *15 - '503': *190 + '503': *192 '404': *6 - '410': *636 + '410': *639 x-github: triggersNotification: true githubCloudOnly: false @@ -93713,9 +93960,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *449 - - *450 - - *239 + - *452 + - *453 + - *241 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -93725,7 +93972,7 @@ paths: enum: - asc - desc - - *222 + - *224 - *17 - *19 responses: @@ -93735,9 +93982,9 @@ paths: application/json: schema: type: array - items: *218 + items: *220 examples: - default: &643 + default: &646 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -93795,17 +94042,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '200': description: Response content: application/json: - schema: *218 + schema: *220 examples: - default: &637 + default: &640 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -93860,9 +94107,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -93884,9 +94131,9 @@ paths: description: Response content: application/json: - schema: *218 + schema: *220 examples: - default: *637 + default: *640 '422': *15 x-github: githubCloudOnly: false @@ -93904,9 +94151,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '204': description: Response @@ -93934,15 +94181,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#pin-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '200': description: Response content: application/json: - schema: *218 + schema: *220 examples: default: value: @@ -93998,7 +94245,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *636 + '410': *639 '422': *15 x-github: githubCloudOnly: false @@ -94015,17 +94262,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#unpin-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '204': description: Response '401': *23 '403': *27 '404': *6 - '410': *636 - '503': *190 + '410': *639 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94042,9 +94289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 - 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. @@ -94070,9 +94317,9 @@ paths: application/json: schema: type: array - items: *561 + items: *564 examples: - default: *638 + default: *641 headers: Link: *45 '404': *6 @@ -94093,9 +94340,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -94127,16 +94374,16 @@ paths: description: Reaction exists content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '201': description: Reaction created content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -94158,10 +94405,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *449 - - *450 - - *231 - - *639 + - *452 + - *453 + - *233 + - *642 responses: '204': description: Response @@ -94181,8 +94428,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -94192,7 +94439,7 @@ paths: application/json: schema: type: array - items: &640 + items: &643 title: Issue Event description: Issue Event type: object @@ -94239,7 +94486,7 @@ paths: issue: anyOf: - type: 'null' - - *217 + - *219 label: title: Issue Event Label description: Issue Event Label @@ -94272,7 +94519,7 @@ paths: anyOf: - type: 'null' - *4 - requested_team: *305 + requested_team: *308 dismissed_review: title: Issue Event Dismissed Review type: object @@ -94339,7 +94586,7 @@ paths: required: - from - to - author_association: *214 + author_association: *216 lock_reason: type: - string @@ -94532,8 +94779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *449 - - *450 + - *452 + - *453 - name: event_id in: path required: true @@ -94544,7 +94791,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *643 examples: default: value: @@ -94737,7 +94984,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *636 + '410': *639 '403': *27 x-github: githubCloudOnly: false @@ -94771,9 +95018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *449 - - *450 - - &642 + - *452 + - *453 + - &645 name: issue_number description: The number that identifies the issue. in: path @@ -94785,11 +95032,11 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: default: summary: Issue - value: *641 + value: *644 pinned_comment: summary: Issue with pinned comment value: @@ -94988,9 +95235,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 '304': *35 x-github: githubCloudOnly: false @@ -95015,9 +95262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: false content: @@ -95150,15 +95397,15 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 '422': *15 - '503': *190 + '503': *192 '403': *27 - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95176,9 +95423,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: false content: @@ -95204,9 +95451,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95222,9 +95469,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: content: application/json: @@ -95249,9 +95496,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95273,9 +95520,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - name: assignee in: path required: true @@ -95315,10 +95562,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *449 - - *450 - - *642 - - *222 + - *452 + - *453 + - *645 + - *224 - *17 - *19 responses: @@ -95328,13 +95575,13 @@ paths: application/json: schema: type: array - items: *218 + items: *220 examples: - default: *643 + default: *646 headers: Link: *45 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95363,9 +95610,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -95387,16 +95634,16 @@ paths: description: Response content: application/json: - schema: *218 + schema: *220 examples: - default: *637 + default: *640 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *636 + '410': *639 '422': *15 '404': *6 x-github: @@ -95424,9 +95671,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -95436,14 +95683,14 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: *644 + default: *647 headers: Link: *45 - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95471,9 +95718,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -95495,17 +95742,17 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *455 + '301': *458 '403': *27 - '410': *636 + '410': *639 '422': *15 '404': *6 x-github: @@ -95536,9 +95783,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -95550,15 +95797,15 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 - '301': *455 + default: *644 + '301': *458 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *636 + '410': *639 x-github: triggersNotification: true githubCloudOnly: false @@ -95584,9 +95831,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -95596,14 +95843,14 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: *644 + default: *647 headers: Link: *45 - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95620,9 +95867,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -95636,7 +95883,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &647 + - &650 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -95685,7 +95932,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &648 + - &651 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -95813,7 +96060,7 @@ paths: - performed_via_github_app - assignee - assigner - - &649 + - &652 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -95859,7 +96106,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &650 + - &653 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -95905,7 +96152,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &651 + - &654 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -95954,7 +96201,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &652 + - &655 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -95983,7 +96230,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *305 + requested_team: *308 requested_reviewer: *4 required: - review_requester @@ -95996,7 +96243,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &653 + - &656 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -96025,7 +96272,7 @@ paths: - type: 'null' - *5 review_requester: *4 - requested_team: *305 + requested_team: *308 requested_reviewer: *4 required: - review_requester @@ -96038,7 +96285,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &654 + - &657 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -96094,7 +96341,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &655 + - &658 title: Locked Issue Event description: Locked Issue Event type: object @@ -96139,7 +96386,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &656 + - &659 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -96200,7 +96447,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &657 + - &660 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -96261,7 +96508,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &658 + - &661 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -96322,7 +96569,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &659 + - &662 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -96415,7 +96662,7 @@ paths: color: red headers: Link: *45 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96432,9 +96679,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: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -96444,9 +96691,9 @@ paths: application/json: schema: type: array - items: *645 + items: *648 examples: - default: &746 + default: &749 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -96470,9 +96717,9 @@ paths: value: '2025-12-25' headers: Link: *45 - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96489,9 +96736,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -96501,9 +96748,9 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: - default: &646 + default: &649 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96521,9 +96768,9 @@ paths: default: false headers: Link: *45 - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96539,9 +96786,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: false content: @@ -96584,12 +96831,12 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: - default: *646 - '301': *455 + default: *649 + '301': *458 '404': *6 - '410': *636 + '410': *639 '422': *15 x-github: githubCloudOnly: false @@ -96606,9 +96853,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: false content: @@ -96668,12 +96915,12 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: - default: *646 - '301': *455 + default: *649 + '301': *458 '404': *6 - '410': *636 + '410': *639 '422': *15 x-github: githubCloudOnly: false @@ -96690,15 +96937,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 responses: '204': description: Response - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96717,9 +96964,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - name: name in: path required: true @@ -96732,7 +96979,7 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: default: value: @@ -96743,9 +96990,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *455 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96765,9 +97012,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: false content: @@ -96796,7 +97043,7 @@ paths: '204': description: Response '403': *27 - '410': *636 + '410': *639 '404': *6 '422': *15 x-github: @@ -96814,9 +97061,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 responses: '204': description: Response @@ -96846,20 +97093,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#get-parent-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 responses: '200': description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 - '301': *455 + default: *644 + '301': *458 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96876,9 +97123,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - 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. @@ -96904,13 +97151,13 @@ paths: application/json: schema: type: array - items: *561 + items: *564 examples: - default: *638 + default: *641 headers: Link: *45 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96928,9 +97175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -96962,16 +97209,16 @@ paths: description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '201': description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -96993,10 +97240,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *449 - - *450 + - *452 + - *453 + - *645 - *642 - - *639 responses: '204': description: Response @@ -97025,9 +97272,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -97049,9 +97296,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -97084,9 +97331,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -97096,13 +97343,13 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: *644 + default: *647 headers: Link: *45 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97130,9 +97377,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -97159,16 +97406,16 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *636 + '410': *639 '422': *15 '404': *6 x-github: @@ -97188,9 +97435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 requestBody: required: true content: @@ -97221,13 +97468,13 @@ paths: description: Response content: application/json: - schema: *217 + schema: *219 examples: - default: *641 + default: *644 '403': *27 '404': *6 '422': *7 - '503': *190 + '503': *192 x-github: triggersNotification: true githubCloudOnly: false @@ -97245,9 +97492,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *449 - - *450 - - *642 + - *452 + - *453 + - *645 - *17 - *19 responses: @@ -97262,9 +97509,6 @@ paths: description: Timeline Event type: object anyOf: - - *647 - - *648 - - *649 - *650 - *651 - *652 @@ -97275,6 +97519,9 @@ paths: - *657 - *658 - *659 + - *660 + - *661 + - *662 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -97322,16 +97569,16 @@ paths: issue_url: type: string format: uri - author_association: *214 + author_association: *216 performed_via_github_app: anyOf: - type: 'null' - *5 - reactions: *215 + reactions: *217 pin: anyOf: - type: 'null' - - *660 + - *663 required: - event - actor @@ -97362,7 +97609,7 @@ paths: properties: type: type: string - issue: *217 + issue: *219 required: - event - created_at @@ -97584,7 +97831,7 @@ paths: type: string body_text: type: string - author_association: *214 + author_association: *216 required: - event - id @@ -97607,7 +97854,7 @@ paths: type: string comments: type: array - items: &681 + items: &684 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -97715,7 +97962,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *214 + author_association: *216 _links: type: object properties: @@ -97810,7 +98057,7 @@ paths: enum: - line - file - reactions: *215 + reactions: *217 body_html: type: string examples: @@ -97848,7 +98095,7 @@ paths: type: string comments: type: array - items: *560 + items: *563 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -98123,7 +98370,7 @@ paths: headers: Link: *45 '404': *6 - '410': *636 + '410': *639 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98140,8 +98387,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -98151,7 +98398,7 @@ paths: application/json: schema: type: array - items: &661 + items: &664 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -98219,8 +98466,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -98256,9 +98503,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *664 examples: - default: &662 + default: &665 value: id: 1 key: ssh-rsa AAA... @@ -98292,9 +98539,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *449 - - *450 - - &663 + - *452 + - *453 + - &666 name: key_id description: The unique identifier of the key. in: path @@ -98306,9 +98553,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *664 examples: - default: *662 + default: *665 '404': *6 x-github: githubCloudOnly: false @@ -98326,9 +98573,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *449 - - *450 - - *663 + - *452 + - *453 + - *666 responses: '204': description: Response @@ -98348,8 +98595,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -98359,9 +98606,9 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: - default: *646 + default: *649 headers: Link: *45 '404': *6 @@ -98382,8 +98629,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -98419,9 +98666,9 @@ paths: description: Response content: application/json: - schema: *216 + schema: *218 examples: - default: &664 + default: &667 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -98453,8 +98700,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *449 - - *450 + - *452 + - *453 - name: name in: path required: true @@ -98465,9 +98712,9 @@ paths: description: Response content: application/json: - schema: *216 + schema: *218 examples: - default: *664 + default: *667 '404': *6 x-github: githubCloudOnly: false @@ -98484,8 +98731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *449 - - *450 + - *452 + - *453 - name: name in: path required: true @@ -98524,7 +98771,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *218 examples: default: value: @@ -98550,8 +98797,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *449 - - *450 + - *452 + - *453 - name: name in: path required: true @@ -98577,8 +98824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -98614,8 +98861,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '202': *37 '403': @@ -98643,8 +98890,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -98670,9 +98917,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *449 - - *450 - - *535 + - *452 + - *453 + - *538 responses: '200': description: Response @@ -98738,7 +98985,7 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 required: - _links - git_url @@ -98819,8 +99066,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -98885,8 +99132,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -98920,9 +99167,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *563 + schema: *566 examples: - default: *665 + default: *668 '204': description: Response when already merged '404': @@ -98947,8 +99194,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *449 - - *450 + - *452 + - *453 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -98989,7 +99236,7 @@ paths: application/json: schema: type: array - items: *401 + items: *404 examples: default: value: @@ -99045,8 +99292,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -99086,9 +99333,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &666 + default: &669 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -99147,9 +99394,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *449 - - *450 - - &667 + - *452 + - *453 + - &670 name: milestone_number description: The number that identifies the milestone. in: path @@ -99161,9 +99408,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *666 + default: *669 '404': *6 x-github: githubCloudOnly: false @@ -99180,9 +99427,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *449 - - *450 - - *667 + - *452 + - *453 + - *670 requestBody: required: false content: @@ -99220,9 +99467,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *666 + default: *669 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99238,9 +99485,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *449 - - *450 - - *667 + - *452 + - *453 + - *670 responses: '204': description: Response @@ -99261,9 +99508,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: - - *449 - - *450 - - *667 + - *452 + - *453 + - *670 - *17 - *19 responses: @@ -99273,9 +99520,9 @@ paths: application/json: schema: type: array - items: *216 + items: *218 examples: - default: *646 + default: *649 headers: Link: *45 x-github: @@ -99294,12 +99541,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: - - *449 - - *450 - - *668 - - *669 - - *222 - - *670 + - *452 + - *453 + - *671 + - *672 + - *224 + - *673 - *17 - *19 responses: @@ -99309,9 +99556,9 @@ paths: application/json: schema: type: array - items: *242 + items: *244 examples: - default: *671 + default: *674 headers: Link: *45 x-github: @@ -99335,8 +99582,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -99394,14 +99641,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: &672 + schema: &675 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -99545,7 +99792,7 @@ paths: - custom_404 - public examples: - default: &673 + default: &676 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -99586,8 +99833,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -99642,11 +99889,11 @@ paths: description: Response content: application/json: - schema: *672 + schema: *675 examples: - default: *673 + default: *676 '422': *15 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99667,8 +99914,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -99755,7 +100002,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99776,14 +100023,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response '422': *15 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99803,8 +100050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -99814,7 +100061,7 @@ paths: application/json: schema: type: array - items: &674 + items: &677 title: Page Build description: Page Build type: object @@ -99906,8 +100153,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *449 - - *450 + - *452 + - *453 responses: '201': description: Response @@ -99954,16 +100201,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *674 + schema: *677 examples: - default: &675 + default: &678 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -100011,8 +100258,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *449 - - *450 + - *452 + - *453 - name: build_id in: path required: true @@ -100023,9 +100270,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *677 examples: - default: *675 + default: *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100045,8 +100292,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -100154,9 +100401,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: - - *449 - - *450 - - &676 + - *452 + - *453 + - &679 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -100214,11 +100461,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *449 - - *450 - - *676 + - *452 + - *453 + - *679 responses: - '204': *149 + '204': *151 '404': *6 x-github: githubCloudOnly: false @@ -100243,8 +100490,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -100512,7 +100759,7 @@ paths: description: Empty response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -100539,8 +100786,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Private vulnerability reporting status @@ -100577,10 +100824,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: - - *449 - - *450 + - *452 + - *453 responses: - '204': *149 + '204': *151 '422': *14 x-github: githubCloudOnly: false @@ -100599,10 +100846,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: - - *449 - - *450 + - *452 + - *453 responses: - '204': *149 + '204': *151 '422': *14 x-github: githubCloudOnly: false @@ -100622,8 +100869,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -100631,9 +100878,9 @@ paths: application/json: schema: type: array - items: *150 + items: *152 examples: - default: *677 + default: *680 '403': *27 '404': *6 x-github: @@ -100655,8 +100902,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -100668,11 +100915,11 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *150 + items: *152 required: - properties examples: - default: *678 + default: *681 responses: '204': description: No Content when custom property values are successfully created @@ -100710,8 +100957,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *449 - - *450 + - *452 + - *453 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -100771,9 +101018,9 @@ paths: application/json: schema: type: array - items: *567 + items: *570 examples: - default: *679 + default: *682 headers: Link: *45 '304': *35 @@ -100805,8 +101052,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -100873,7 +101120,7 @@ paths: description: Response content: application/json: - schema: &683 + schema: &686 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -101002,7 +101249,7 @@ paths: milestone: anyOf: - type: 'null' - - *401 + - *404 active_lock_reason: type: - string @@ -101041,7 +101288,7 @@ paths: items: *4 requested_teams: type: array - items: *380 + items: *383 head: type: object properties: @@ -101049,7 +101296,7 @@ paths: type: string ref: type: string - repo: *76 + repo: *78 sha: type: string user: *4 @@ -101066,7 +101313,7 @@ paths: type: string ref: type: string - repo: *76 + repo: *78 sha: type: string user: *4 @@ -101079,14 +101326,14 @@ paths: _links: type: object properties: - comments: *402 - commits: *402 - statuses: *402 - html: *402 - issue: *402 - review_comments: *402 - review_comment: *402 - self: *402 + comments: *405 + commits: *405 + statuses: *405 + html: *405 + issue: *405 + review_comments: *405 + review_comment: *405 + self: *405 required: - comments - commits @@ -101096,8 +101343,8 @@ paths: - review_comments - review_comment - self - author_association: *214 - auto_merge: *680 + author_association: *216 + auto_merge: *683 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -101197,7 +101444,7 @@ paths: - merged_by - review_comments examples: - default: &684 + default: &687 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -101724,8 +101971,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *449 - - *450 + - *452 + - *453 - name: sort in: query required: false @@ -101744,7 +101991,7 @@ paths: enum: - asc - desc - - *222 + - *224 - *17 - *19 responses: @@ -101754,9 +102001,9 @@ paths: application/json: schema: type: array - items: *681 + items: *684 examples: - default: &686 + default: &689 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -101833,17 +102080,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: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '200': description: Response content: application/json: - schema: *681 + schema: *684 examples: - default: &682 + default: &685 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -101918,9 +102165,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: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -101942,9 +102189,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *684 examples: - default: *682 + default: *685 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101960,9 +102207,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: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 responses: '204': description: Response @@ -101983,9 +102230,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: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 - 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. @@ -102011,9 +102258,9 @@ paths: application/json: schema: type: array - items: *561 + items: *564 examples: - default: *638 + default: *641 headers: Link: *45 '404': *6 @@ -102034,9 +102281,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: - - *449 - - *450 - - *231 + - *452 + - *453 + - *233 requestBody: required: true content: @@ -102068,16 +102315,16 @@ paths: description: Reaction exists content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '201': description: Reaction created content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -102099,10 +102346,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *449 - - *450 - - *231 - - *639 + - *452 + - *453 + - *233 + - *642 responses: '204': description: Response @@ -102145,9 +102392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *449 - - *450 - - &685 + - *452 + - *453 + - &688 name: pull_number description: The number that identifies the pull request. in: path @@ -102160,9 +102407,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *683 + schema: *686 examples: - default: *684 + default: *687 '304': *35 '404': *6 '406': @@ -102171,7 +102418,7 @@ paths: application/json: schema: *3 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102197,9 +102444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: false content: @@ -102241,9 +102488,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *686 examples: - default: *684 + default: *687 '422': *15 '403': *27 x-github: @@ -102265,9 +102512,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: true content: @@ -102328,21 +102575,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '401': *23 '403': *27 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102368,10 +102615,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: - - *449 - - *450 - - *685 - - *239 + - *452 + - *453 + - *688 + - *241 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -102381,7 +102628,7 @@ paths: enum: - asc - desc - - *222 + - *224 - *17 - *19 responses: @@ -102391,9 +102638,9 @@ paths: application/json: schema: type: array - items: *681 + items: *684 examples: - default: *686 + default: *689 headers: Link: *45 x-github: @@ -102426,9 +102673,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: true content: @@ -102534,7 +102781,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *684 examples: example-for-a-multi-line-comment: value: @@ -102622,10 +102869,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: - - *449 - - *450 - - *685 - - *231 + - *452 + - *453 + - *688 + - *233 requestBody: required: true content: @@ -102647,7 +102894,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *684 examples: default: value: @@ -102733,9 +102980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 - *17 - *19 responses: @@ -102745,9 +102992,9 @@ paths: application/json: schema: type: array - items: *563 + items: *566 examples: - default: *687 + default: *690 headers: Link: *45 x-github: @@ -102777,9 +103024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 - *17 - *19 responses: @@ -102789,7 +103036,7 @@ paths: application/json: schema: type: array - items: *574 + items: *577 examples: default: value: @@ -102808,7 +103055,7 @@ paths: Link: *45 '422': *15 '500': *38 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102827,9 +103074,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 responses: '204': description: Response if pull request has been merged @@ -102852,9 +103099,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: false content: @@ -102966,9 +103213,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 responses: '200': description: Response @@ -102984,7 +103231,7 @@ paths: items: *4 teams: type: array - items: *305 + items: *308 required: - users - teams @@ -103043,9 +103290,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: false content: @@ -103082,7 +103329,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: default: value: @@ -103618,9 +103865,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: true content: @@ -103654,7 +103901,7 @@ paths: description: Response content: application/json: - schema: *567 + schema: *570 examples: default: value: @@ -104159,9 +104406,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 - *17 - *19 responses: @@ -104171,7 +104418,7 @@ paths: application/json: schema: type: array - items: &688 + items: &691 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -104245,7 +104492,7 @@ paths: type: string body_text: type: string - author_association: *214 + author_association: *216 required: - id - node_id @@ -104327,9 +104574,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: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: false content: @@ -104419,9 +104666,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: - default: &690 + default: &693 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -104484,10 +104731,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: - - *449 - - *450 - - *685 - - &689 + - *452 + - *453 + - *688 + - &692 name: review_id description: The unique identifier of the review. in: path @@ -104499,9 +104746,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: - default: &691 + default: &694 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -104560,10 +104807,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: - - *449 - - *450 - - *685 - - *689 + - *452 + - *453 + - *688 + - *692 requestBody: required: true content: @@ -104586,7 +104833,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: default: value: @@ -104648,18 +104895,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: - - *449 - - *450 - - *685 - - *689 + - *452 + - *453 + - *688 + - *692 responses: '200': description: Response content: application/json: - schema: *688 + schema: *691 examples: - default: *690 + default: *693 '422': *7 '404': *6 x-github: @@ -104686,10 +104933,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: - - *449 - - *450 - - *685 - - *689 + - *452 + - *453 + - *688 + - *692 - *17 - *19 responses: @@ -104783,13 +105030,13 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *214 + author_association: *216 _links: type: object properties: - self: *402 - html: *402 - pull_request: *402 + self: *405 + html: *405 + pull_request: *405 required: - self - html @@ -104798,7 +105045,7 @@ paths: type: string body_html: type: string - reactions: *215 + reactions: *217 side: description: The side of the first line of the range for a multi-line comment. @@ -104947,10 +105194,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: - - *449 - - *450 - - *685 - - *689 + - *452 + - *453 + - *688 + - *692 requestBody: required: true content: @@ -104979,7 +105226,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: default: value: @@ -105042,10 +105289,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: - - *449 - - *450 - - *685 - - *689 + - *452 + - *453 + - *688 + - *692 requestBody: required: true content: @@ -105080,9 +105327,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: - default: *691 + default: *694 '404': *6 '422': *7 '403': *27 @@ -105104,9 +105351,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *449 - - *450 - - *685 + - *452 + - *453 + - *688 requestBody: required: false content: @@ -105170,8 +105417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *449 - - *450 + - *452 + - *453 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -105184,9 +105431,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *695 examples: - default: &693 + default: &696 value: type: file encoding: base64 @@ -105228,8 +105475,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: - - *449 - - *450 + - *452 + - *453 - name: dir description: The alternate path to look for a README file in: path @@ -105249,9 +105496,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *695 examples: - default: *693 + default: *696 '404': *6 '422': *15 x-github: @@ -105273,8 +105520,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -105284,7 +105531,7 @@ paths: application/json: schema: type: array - items: *694 + items: *697 examples: default: value: @@ -105378,8 +105625,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -105455,9 +105702,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: &698 + default: &701 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -105562,9 +105809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *449 - - *450 - - &696 + - *452 + - *453 + - &699 name: asset_id description: The unique identifier of the asset. in: path @@ -105576,9 +105823,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *698 examples: - default: &697 + default: &700 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 @@ -105613,7 +105860,7 @@ paths: type: User site_admin: false '404': *6 - '302': *576 + '302': *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105629,9 +105876,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *449 - - *450 - - *696 + - *452 + - *453 + - *699 requestBody: required: false content: @@ -105660,9 +105907,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *698 examples: - default: *697 + default: *700 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105678,9 +105925,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *449 - - *450 - - *696 + - *452 + - *453 + - *699 responses: '204': description: Response @@ -105704,8 +105951,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -105791,16 +106038,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *698 + default: *701 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105817,8 +106064,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *449 - - *450 + - *452 + - *453 - name: tag description: tag parameter in: path @@ -105831,9 +106078,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *698 + default: *701 '404': *6 x-github: githubCloudOnly: false @@ -105855,9 +106102,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *449 - - *450 - - &699 + - *452 + - *453 + - &702 name: release_id description: The unique identifier of the release. in: path @@ -105871,9 +106118,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: *694 + schema: *697 examples: - default: *698 + default: *701 '401': description: Unauthorized x-github: @@ -105891,9 +106138,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 requestBody: required: false content: @@ -105957,9 +106204,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *697 examples: - default: *698 + default: *701 '404': description: Not Found if the discussion category name is invalid content: @@ -105980,9 +106227,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 responses: '204': description: Response @@ -106002,9 +106249,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 - *17 - *19 responses: @@ -106014,7 +106261,7 @@ paths: application/json: schema: type: array - items: *695 + items: *698 examples: default: value: @@ -106096,9 +106343,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: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 - name: name in: query required: true @@ -106124,7 +106371,7 @@ paths: description: Response for successful upload content: application/json: - schema: *695 + schema: *698 examples: response-for-successful-upload: value: @@ -106179,9 +106426,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 - 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. @@ -106205,9 +106452,9 @@ paths: application/json: schema: type: array - items: *561 + items: *564 examples: - default: *638 + default: *641 headers: Link: *45 '404': *6 @@ -106228,9 +106475,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *449 - - *450 - - *699 + - *452 + - *453 + - *702 requestBody: required: true content: @@ -106260,16 +106507,16 @@ paths: description: Reaction exists content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '201': description: Reaction created content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -106291,10 +106538,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *449 - - *450 - - *699 - - *639 + - *452 + - *453 + - *702 + - *642 responses: '204': description: Response @@ -106318,9 +106565,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *449 - - *450 - - *502 + - *452 + - *453 + - *505 - *17 - *19 responses: @@ -106336,8 +106583,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *164 - - &700 + - *166 + - &703 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -106356,69 +106603,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *165 - - *700 - - allOf: - - *166 - - *700 - allOf: - *167 - - *700 - - allOf: - - *701 - - *700 + - *703 - allOf: - *168 - - *700 + - *703 - allOf: - *169 - - *700 + - *703 + - allOf: + - *704 + - *703 - allOf: - *170 - - *700 + - *703 - allOf: - *171 - - *700 + - *703 - allOf: - *172 - - *700 + - *703 - allOf: - *173 - - *700 + - *703 - allOf: - *174 - - *700 + - *703 - allOf: - *175 - - *700 + - *703 - allOf: - *176 - - *700 + - *703 - allOf: - *177 - - *700 + - *703 - allOf: - *178 - - *700 + - *703 - allOf: - *179 - - *700 + - *703 - allOf: - *180 - - *700 + - *703 - allOf: - *181 - - *700 + - *703 - allOf: - *182 - - *700 + - *703 - allOf: - *183 - - *700 + - *703 - allOf: - *184 - - *700 + - *703 + - allOf: + - *185 + - *703 + - allOf: + - *186 + - *703 examples: default: value: @@ -106457,8 +106704,8 @@ paths: category: repos subcategory: rules parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 - name: includes_parents @@ -106469,7 +106716,7 @@ paths: schema: type: boolean default: true - - *702 + - *705 responses: '200': description: Response @@ -106477,7 +106724,7 @@ paths: application/json: schema: type: array - items: *185 + items: *187 examples: default: value: @@ -106524,8 +106771,8 @@ paths: category: repos subcategory: rules parameters: - - *449 - - *450 + - *452 + - *453 requestBody: description: Request body required: true @@ -106545,16 +106792,16 @@ paths: - tag - push default: branch - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 - conditions: *156 + items: *165 + conditions: *158 rules: type: array description: An array of rules within the ruleset. - items: *703 + items: *706 required: - name - enforcement @@ -106585,9 +106832,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: &712 + default: &715 value: id: 42 name: super cool ruleset @@ -106635,12 +106882,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *449 - - *450 - - *704 - - *103 - - *705 - - *706 + - *452 + - *453 + - *707 + - *105 + - *708 + - *709 - *17 - *19 responses: @@ -106648,9 +106895,9 @@ paths: description: Response content: application/json: - schema: *707 + schema: *710 examples: - default: *708 + default: *711 '404': *6 '500': *38 x-github: @@ -106671,17 +106918,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *449 - - *450 - - *709 + - *452 + - *453 + - *712 responses: '200': description: Response content: application/json: - schema: *710 + schema: *713 examples: - default: *711 + default: *714 '404': *6 '500': *38 x-github: @@ -106709,8 +106956,8 @@ paths: category: repos subcategory: rules parameters: - - *449 - - *450 + - *452 + - *453 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106730,9 +106977,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *712 + default: *715 '404': *6 '500': *38 put: @@ -106750,8 +106997,8 @@ paths: category: repos subcategory: rules parameters: - - *449 - - *450 + - *452 + - *453 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106776,16 +107023,16 @@ paths: - branch - tag - push - enforcement: *162 + enforcement: *164 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *163 - conditions: *156 + items: *165 + conditions: *158 rules: description: An array of rules within the ruleset. type: array - items: *703 + items: *706 examples: default: value: @@ -106813,9 +107060,9 @@ paths: description: Response content: application/json: - schema: *185 + schema: *187 examples: - default: *712 + default: *715 '404': *6 '422': *15 '500': *38 @@ -106834,8 +107081,8 @@ paths: category: repos subcategory: rules parameters: - - *449 - - *450 + - *452 + - *453 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106858,8 +107105,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 - name: ruleset_id @@ -106875,9 +107122,9 @@ paths: application/json: schema: type: array - items: *189 + items: *191 examples: - default: *418 + default: *421 '404': *6 '500': *38 x-github: @@ -106896,8 +107143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *449 - - *450 + - *452 + - *453 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106915,7 +107162,7 @@ paths: description: Response content: application/json: - schema: *419 + schema: *422 examples: default: value: @@ -106970,22 +107217,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: - - *449 - - *450 - - *420 - - *421 - - *422 + - *452 + - *453 - *423 - *424 - - *108 - - *19 - - *17 - - *713 - - *714 - *425 - *426 - *427 + - *110 + - *19 + - *17 + - *716 + - *717 - *428 + - *429 + - *430 + - *431 responses: '200': description: Response @@ -106993,24 +107240,24 @@ paths: application/json: schema: type: array - items: &718 + items: &721 type: object properties: - number: *124 - created_at: *131 + number: *126 + created_at: *133 updated_at: anyOf: - type: 'null' - - *132 - url: *129 - html_url: *130 + - *134 + url: *131 + html_url: *132 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *715 - resolution: *716 + state: *718 + resolution: *719 resolved_at: type: - string @@ -107104,7 +107351,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *717 + - *720 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -107227,7 +107474,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107249,16 +107496,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: - - *449 - - *450 - - *529 - - *428 + - *452 + - *453 + - *532 + - *431 responses: '200': description: Response content: application/json: - schema: *718 + schema: *721 examples: default: value: @@ -107289,7 +107536,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107312,9 +107559,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 requestBody: required: true content: @@ -107322,8 +107569,8 @@ paths: schema: type: object properties: - state: *715 - resolution: *716 + state: *718 + resolution: *719 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -107359,7 +107606,7 @@ paths: description: Response content: application/json: - schema: *718 + schema: *721 examples: default: value: @@ -107432,7 +107679,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -107454,9 +107701,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: - - *449 - - *450 - - *529 + - *452 + - *453 + - *532 - *19 - *17 responses: @@ -107467,7 +107714,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &898 + items: &901 type: object properties: type: @@ -107494,9 +107741,6 @@ paths: - commit details: oneOf: - - *719 - - *720 - - *721 - *722 - *723 - *724 @@ -107507,6 +107751,9 @@ paths: - *729 - *730 - *731 + - *732 + - *733 + - *734 examples: default: value: @@ -107570,7 +107817,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107592,8 +107839,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -107601,14 +107848,14 @@ paths: schema: type: object properties: - reason: &733 + reason: &736 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *732 + placeholder_id: *735 required: - reason - placeholder_id @@ -107625,7 +107872,7 @@ paths: schema: type: object properties: - reason: *733 + reason: *736 expire_at: type: - string @@ -107649,7 +107896,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *190 + '503': *192 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -107672,13 +107919,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: - - *449 - - *450 + - *452 + - *453 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *190 + '503': *192 '200': description: Response content: @@ -107688,7 +107935,7 @@ paths: properties: incremental_scans: type: array - items: &734 + items: &737 description: Information on a single scan performed by secret scanning on the repository type: object @@ -107716,15 +107963,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *734 + items: *737 backfill_scans: type: array - items: *734 + items: *737 custom_pattern_backfill_scans: type: array items: allOf: - - *734 + - *737 - type: object properties: pattern_name: @@ -107794,9 +108041,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *449 - - *450 - - *108 + - *452 + - *453 + - *110 - name: sort description: The property to sort the results by. in: query @@ -107808,8 +108055,8 @@ paths: - updated - published default: created - - *106 - - *107 + - *108 + - *109 - 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)." @@ -107839,9 +108086,9 @@ paths: application/json: schema: type: array - items: *735 + items: *738 examples: - default: *736 + default: *739 '400': *14 '404': *6 x-github: @@ -107864,8 +108111,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -107945,7 +108192,7 @@ paths: login: type: string description: The username of the user credited. - type: *433 + type: *436 required: - login - type @@ -108035,9 +108282,9 @@ paths: description: Response content: application/json: - schema: *735 + schema: *738 examples: - default: &738 + default: &741 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -108270,8 +108517,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: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -108384,7 +108631,7 @@ paths: description: Response content: application/json: - schema: *735 + schema: *738 examples: default: value: @@ -108531,17 +108778,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: - - *449 - - *450 - - *737 + - *452 + - *453 + - *740 responses: '200': description: Response content: application/json: - schema: *735 + schema: *738 examples: - default: *738 + default: *741 '403': *27 '404': *6 x-github: @@ -108565,9 +108812,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: - - *449 - - *450 - - *737 + - *452 + - *453 + - *740 requestBody: required: true content: @@ -108647,7 +108894,7 @@ paths: login: type: string description: The username of the user credited. - type: *433 + type: *436 required: - login - type @@ -108738,17 +108985,17 @@ paths: description: Response content: application/json: - schema: *735 + schema: *738 examples: - default: *738 - add_credit: *738 + default: *741 + add_credit: *741 '403': *27 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *251 + schema: *253 examples: invalid_state_transition: value: @@ -108779,9 +109026,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: - - *449 - - *450 - - *737 + - *452 + - *453 + - *740 responses: '202': *37 '400': *14 @@ -108808,17 +109055,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: - - *449 - - *450 - - *737 + - *452 + - *453 + - *740 responses: '202': description: Response content: application/json: - schema: *454 + schema: *457 examples: - default: *456 + default: *459 '400': *14 '422': *15 '403': *27 @@ -108844,8 +109091,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -108941,8 +109188,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -108951,7 +109198,7 @@ paths: application/json: schema: type: array - items: &739 + items: &742 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -108964,7 +109211,7 @@ paths: - 1124 - -435 '202': *37 - '204': *149 + '204': *151 '422': description: Repository contains more than 10,000 commits x-github: @@ -108984,8 +109231,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -109036,7 +109283,7 @@ paths: total: 89 week: 1336280400 '202': *37 - '204': *149 + '204': *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109063,8 +109310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -109136,7 +109383,7 @@ paths: d: 77 c: 10 '202': *37 - '204': *149 + '204': *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109158,8 +109405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -109313,8 +109560,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: - - *449 - - *450 + - *452 + - *453 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -109324,7 +109571,7 @@ paths: application/json: schema: type: array - items: *739 + items: *742 examples: default: value: @@ -109337,7 +109584,7 @@ paths: - - 0 - 2 - 21 - '204': *149 + '204': *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109357,8 +109604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *449 - - *450 + - *452 + - *453 - name: sha in: path required: true @@ -109414,7 +109661,7 @@ paths: description: Response content: application/json: - schema: *740 + schema: *743 examples: default: value: @@ -109468,8 +109715,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -109481,7 +109728,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -109501,14 +109748,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &741 + schema: &744 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -109581,8 +109828,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: false content: @@ -109608,7 +109855,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *744 examples: default: value: @@ -109635,8 +109882,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -109656,8 +109903,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -109739,8 +109986,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *449 - - *450 + - *452 + - *453 - name: ref in: path required: true @@ -109776,8 +110023,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *449 - - *450 + - *452 + - *453 - *17 - *19 responses: @@ -109787,9 +110034,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - default: *381 + default: *384 headers: Link: *45 '404': *6 @@ -109809,8 +110056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *449 - - *450 + - *452 + - *453 - *19 - *17 responses: @@ -109818,7 +110065,7 @@ paths: description: Response content: application/json: - schema: &742 + schema: &745 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -109830,7 +110077,7 @@ paths: required: - names examples: - default: &743 + default: &746 value: names: - octocat @@ -109853,8 +110100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -109885,9 +110132,9 @@ paths: description: Response content: application/json: - schema: *742 + schema: *745 examples: - default: *743 + default: *746 '404': *6 '422': *7 x-github: @@ -109908,9 +110155,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *449 - - *450 - - &744 + - *452 + - *453 + - &747 name: per description: The time frame to display results for. in: query @@ -109941,7 +110188,7 @@ paths: - 128 clones: type: array - items: &745 + items: &748 title: Traffic type: object properties: @@ -110028,8 +110275,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -110123,8 +110370,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *449 - - *450 + - *452 + - *453 responses: '200': description: Response @@ -110187,9 +110434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *449 - - *450 - - *744 + - *452 + - *453 + - *747 responses: '200': description: Response @@ -110210,7 +110457,7 @@ paths: - 3782 views: type: array - items: *745 + items: *748 required: - uniques - count @@ -110287,8 +110534,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *449 - - *450 + - *452 + - *453 requestBody: required: true content: @@ -110324,7 +110571,7 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: default: value: @@ -110562,8 +110809,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -110586,8 +110833,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -110609,8 +110856,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -110636,8 +110883,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *449 - - *450 + - *452 + - *453 - name: ref in: path required: true @@ -110729,9 +110976,9 @@ paths: description: Response content: application/json: - schema: *454 + schema: *457 examples: - default: *456 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -110772,7 +111019,7 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: default: value: @@ -110878,8 +111125,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: - - *270 - - *642 + - *273 + - *645 requestBody: required: true content: @@ -110945,14 +111192,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *645 + items: *648 examples: - default: *746 + default: *749 '400': *14 '403': *27 '404': *6 '422': *15 - '503': *190 + '503': *192 x-github: triggersNotification: true githubCloudOnly: false @@ -110983,8 +111230,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: - - *270 - - *642 + - *273 + - *645 requestBody: required: true content: @@ -111051,14 +111298,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *645 + items: *648 examples: - default: *746 + default: *749 '400': *14 '403': *27 '404': *6 '422': *15 - '503': *190 + '503': *192 x-github: triggersNotification: true githubCloudOnly: false @@ -111084,16 +111331,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: - - *270 - - *642 - - *366 + - *273 + - *645 + - *369 responses: '204': description: Issue field value deleted successfully '403': *27 '404': *6 '422': *15 - '503': *190 + '503': *192 x-github: triggersNotification: true githubCloudOnly: false @@ -111128,7 +111375,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &754 + - &757 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -111138,7 +111385,7 @@ paths: type: string examples: - members - - &759 + - &762 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -111150,7 +111397,7 @@ paths: format: int32 examples: - 1 - - &760 + - &763 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -111194,7 +111441,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &749 + items: &752 allOf: - type: object required: @@ -111276,7 +111523,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: &761 + meta: &764 type: object description: The metadata associated with the creation/updates to the user. @@ -111341,30 +111588,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &750 + '400': &753 description: Bad request content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 - '401': *748 - '403': &751 + schema: *750 + '401': *751 + '403': &754 description: Permission denied - '429': &752 + '429': &755 description: Too many requests content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 - '500': &753 + schema: *750 + '500': &756 description: Internal server error content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 + schema: *750 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111388,7 +111635,7 @@ paths: required: true content: application/json: - schema: &757 + schema: &760 type: object required: - schemas @@ -111452,9 +111699,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *749 + schema: *752 examples: - group: &755 + group: &758 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -111473,13 +111720,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': *750 - '401': *748 - '403': *751 - '409': &758 + '400': *753 + '401': *751 + '403': *754 + '409': &761 description: Duplicate record detected - '429': *752 - '500': *753 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111496,7 +111743,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: - - &756 + - &759 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -111505,22 +111752,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *754 + - *757 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *749 + schema: *752 examples: - default: *755 - '400': *750 - '401': *748 - '403': *751 + default: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *752 - '500': *753 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111539,13 +111786,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: - - *756 + - *759 - *39 requestBody: required: true content: application/json: - schema: *757 + schema: *760 examples: group: summary: Group @@ -111571,17 +111818,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *749 + schema: *752 examples: - group: *755 - groupWithMembers: *755 - '400': *750 - '401': *748 - '403': *751 + group: *758 + groupWithMembers: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *758 - '429': *752 - '500': *753 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111605,13 +111852,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: - - *756 + - *759 - *39 requestBody: required: true content: application/json: - schema: &768 + schema: &771 type: object required: - Operations @@ -111671,17 +111918,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *749 + schema: *752 examples: - updateGroup: *755 - addMembers: *755 - '400': *750 - '401': *748 - '403': *751 + updateGroup: *758 + addMembers: *758 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *758 - '429': *752 - '500': *753 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111697,17 +111944,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: - - *756 + - *759 - *39 responses: '204': description: Group was deleted, no content - '400': *750 - '401': *748 - '403': *751 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *752 - '500': *753 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111741,8 +111988,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *759 - - *760 + - *762 + - *763 - *39 responses: '200': @@ -111776,7 +112023,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &763 + items: &766 allOf: - type: object required: @@ -111868,7 +112115,7 @@ paths: address. examples: - true - roles: &762 + roles: &765 type: array description: The roles assigned to the user. items: @@ -111927,7 +112174,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *761 + meta: *764 startIndex: type: integer description: A starting index for the returned page @@ -111966,11 +112213,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *750 - '401': *748 - '403': *751 - '429': *752 - '500': *753 + '400': *753 + '401': *751 + '403': *754 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -111994,7 +112241,7 @@ paths: required: true content: application/json: - schema: &766 + schema: &769 type: object required: - schemas @@ -112087,9 +112334,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *762 + roles: *765 examples: - user: &767 + user: &770 summary: User value: schemas: @@ -112136,9 +112383,9 @@ paths: description: User has been created content: application/scim+json: - schema: *763 + schema: *766 examples: - user: &764 + user: &767 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -112164,13 +112411,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: *764 - '400': *750 - '401': *748 - '403': *751 - '409': *758 - '429': *752 - '500': *753 + enterpriseOwner: *767 + '400': *753 + '401': *751 + '403': *754 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112187,7 +112434,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: - - &765 + - &768 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -112200,15 +112447,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *763 + schema: *766 examples: - default: *764 - '400': *750 - '401': *748 - '403': *751 + default: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *752 - '500': *753 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112259,30 +112506,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: - - *765 + - *768 - *39 requestBody: required: true content: application/json: - schema: *766 + schema: *769 examples: - user: *767 + user: *770 responses: '200': description: User was updated content: application/scim+json: - schema: *763 + schema: *766 examples: - user: *764 - '400': *750 - '401': *748 - '403': *751 + user: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *758 - '429': *752 - '500': *753 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112323,13 +112570,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: - - *765 + - *768 - *39 requestBody: required: true content: application/json: - schema: *768 + schema: *771 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -112369,18 +112616,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *763 + schema: *766 examples: - userMultiValuedProperties: *764 - userSingleValuedProperties: *764 - disableUser: *764 - '400': *750 - '401': *748 - '403': *751 + userMultiValuedProperties: *767 + userSingleValuedProperties: *767 + disableUser: *767 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '409': *758 - '429': *752 - '500': *753 + '409': *761 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112400,17 +112647,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: - - *765 + - *768 - *39 responses: '204': description: User was deleted, no content - '400': *750 - '401': *748 - '403': *751 + '400': *753 + '401': *751 + '403': *754 '404': *6 - '429': *752 - '500': *753 + '429': *755 + '500': *756 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -112443,7 +112690,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#list-scim-provisioned-identities parameters: - - *85 + - *87 - name: startIndex description: 'Used for pagination: the index of the first result to return.' in: query @@ -112501,7 +112748,7 @@ paths: - 1 Resources: type: array - items: &769 + items: &772 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -112748,22 +112995,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': *35 - '404': &770 + '404': &773 description: Resource not found content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 - '403': &771 + schema: *750 + '403': &774 description: Forbidden content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 - '400': *750 - '429': *752 + schema: *750 + '400': *753 + '429': *755 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -112783,15 +113030,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#provision-and-invite-a-scim-user parameters: - - *85 + - *87 responses: '201': description: Response content: application/scim+json: - schema: *769 + schema: *772 examples: - default: &772 + default: &775 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -112814,17 +113061,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': *35 - '404': *770 - '403': *771 - '500': *753 + '404': *773 + '403': *774 + '500': *756 '409': description: Conflict content: application/json: - schema: *747 + schema: *750 application/scim+json: - schema: *747 - '400': *750 + schema: *750 + '400': *753 requestBody: required: true content: @@ -112923,18 +113170,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: - - *85 - - *765 + - *87 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *769 + schema: *772 examples: - default: *772 - '404': *770 - '403': *771 + default: *775 + '404': *773 + '403': *774 '304': *35 x-github: githubCloudOnly: true @@ -112957,19 +113204,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - - *85 - - *765 + - *87 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *769 + schema: *772 examples: - default: *772 + default: *775 '304': *35 - '404': *770 - '403': *771 + '404': *773 + '403': *774 requestBody: required: true content: @@ -113083,20 +113330,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: - - *85 - - *765 + - *87 + - *768 responses: '200': description: Response content: application/scim+json: - schema: *769 + schema: *772 examples: - default: *772 + default: *775 '304': *35 - '404': *770 - '403': *771 - '400': *750 + '404': *773 + '403': *774 + '400': *753 '429': description: Response content: @@ -113191,13 +113438,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: - - *85 - - *765 + - *87 + - *768 responses: '204': description: Response - '404': *770 - '403': *771 + '404': *773 + '403': *774 '304': *35 x-github: githubCloudOnly: true @@ -113312,7 +113559,7 @@ paths: html_url: type: string format: uri - repository: *276 + repository: *279 score: type: number file_size: @@ -113331,7 +113578,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &773 + text_matches: &776 title: Search Result Text Matches type: array items: @@ -113446,7 +113693,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *35 - '503': *190 + '503': *192 '422': *15 '403': *27 x-github: @@ -113495,7 +113742,7 @@ paths: enum: - author-date - committer-date - - &774 + - &777 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 @@ -113564,7 +113811,7 @@ paths: committer: anyOf: - type: 'null' - - *500 + - *503 comment_count: type: integer message: @@ -113583,7 +113830,7 @@ paths: url: type: string format: uri - verification: *623 + verification: *626 required: - author - committer @@ -113598,7 +113845,7 @@ paths: committer: anyOf: - type: 'null' - - *500 + - *503 parents: type: array items: @@ -113610,12 +113857,12 @@ paths: type: string sha: type: string - repository: *276 + repository: *279 score: type: number node_id: type: string - text_matches: *773 + text_matches: *776 required: - sha - node_id @@ -113808,7 +114055,7 @@ paths: - interactions - created - updated - - *774 + - *777 - *17 - *19 - name: advanced_search @@ -113905,11 +114152,11 @@ paths: type: - string - 'null' - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: type: string state_reason: @@ -113919,7 +114166,7 @@ paths: milestone: anyOf: - type: 'null' - - *401 + - *404 comments: type: integer created_at: @@ -113933,7 +114180,7 @@ paths: - string - 'null' format: date-time - text_matches: *773 + text_matches: *776 pull_request: type: object properties: @@ -113971,10 +114218,10 @@ paths: type: string score: type: number - author_association: *214 + author_association: *216 draft: type: boolean - repository: *76 + repository: *78 body_html: type: string body_text: @@ -113982,7 +114229,7 @@ paths: timeline_url: type: string format: uri - type: *367 + type: *370 performed_via_github_app: anyOf: - type: 'null' @@ -113990,8 +114237,8 @@ paths: pinned_comment: anyOf: - type: 'null' - - *218 - reactions: *215 + - *220 + reactions: *217 required: - closed_at - comments @@ -114106,7 +114353,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *190 + '503': *192 '422': *15 '304': *35 '403': *27 @@ -114159,7 +114406,7 @@ paths: enum: - created - updated - - *774 + - *777 - *17 - *19 responses: @@ -114204,7 +114451,7 @@ paths: - 'null' score: type: number - text_matches: *773 + text_matches: *776 required: - id - node_id @@ -114290,7 +114537,7 @@ paths: - forks - help-wanted-issues - updated - - *774 + - *777 - *17 - *19 responses: @@ -114520,7 +114767,7 @@ paths: license: anyOf: - type: 'null' - - *219 + - *221 permissions: type: object properties: @@ -114538,7 +114785,7 @@ paths: - admin - pull - push - text_matches: *773 + text_matches: *776 temp_clone_token: type: string allow_merge_commit: @@ -114741,7 +114988,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *190 + '503': *192 '422': *15 '304': *35 x-github: @@ -114847,7 +115094,7 @@ paths: - string - 'null' format: uri - text_matches: *773 + text_matches: *776 related: type: - array @@ -115042,7 +115289,7 @@ paths: - followers - repositories - joined - - *774 + - *777 - *17 - *19 responses: @@ -115152,7 +115399,7 @@ paths: type: - boolean - 'null' - text_matches: *773 + text_matches: *776 blog: type: - string @@ -115214,7 +115461,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *35 - '503': *190 + '503': *192 '422': *15 x-github: githubCloudOnly: false @@ -115234,7 +115481,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &777 + - &780 name: team_id description: The unique identifier of the team. in: path @@ -115246,9 +115493,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '404': *6 x-github: githubCloudOnly: false @@ -115275,7 +115522,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *777 + - *780 requestBody: required: true content: @@ -115339,16 +115586,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '201': description: Response content: application/json: - schema: *441 + schema: *444 examples: - default: *442 + default: *445 '404': *6 '422': *15 '403': *27 @@ -115376,7 +115623,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *777 + - *780 responses: '204': description: Response @@ -115405,7 +115652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *777 + - *780 - *17 - *19 responses: @@ -115415,9 +115662,9 @@ paths: application/json: schema: type: array - items: *361 + items: *364 examples: - default: *362 + default: *365 headers: Link: *45 x-github: @@ -115443,7 +115690,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *777 + - *780 - name: role description: Filters members returned by their role in the team. in: query @@ -115466,7 +115713,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 '404': *6 @@ -115494,8 +115741,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *777 - - *137 + - *780 + - *139 responses: '204': description: if user is a member @@ -115531,8 +115778,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *777 - - *137 + - *780 + - *139 responses: '204': description: Response @@ -115571,8 +115818,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *777 - - *137 + - *780 + - *139 responses: '204': description: Response @@ -115608,16 +115855,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: - - *777 - - *137 + - *780 + - *139 responses: '200': description: Response content: application/json: - schema: *448 + schema: *451 examples: - response-if-user-is-a-team-maintainer: *778 + response-if-user-is-a-team-maintainer: *781 '404': *6 x-github: githubCloudOnly: false @@ -115650,8 +115897,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: - - *777 - - *137 + - *780 + - *139 requestBody: required: false content: @@ -115676,9 +115923,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *451 examples: - response-if-users-membership-with-team-is-now-pending: *779 + response-if-users-membership-with-team-is-now-pending: *782 '403': description: Forbidden if team synchronization is set up '422': @@ -115712,8 +115959,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: - - *777 - - *137 + - *780 + - *139 responses: '204': description: Response @@ -115740,7 +115987,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *777 + - *780 - *17 - *19 responses: @@ -115750,9 +115997,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *395 + default: *398 headers: Link: *45 '404': *6 @@ -115782,15 +116029,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: - - *777 - - *449 - - *450 + - *780 + - *452 + - *453 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *780 + schema: *783 examples: alternative-response-with-extra-repository-information: value: @@ -115941,9 +116188,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: - - *777 - - *449 - - *450 + - *780 + - *452 + - *453 requestBody: required: false content: @@ -115993,9 +116240,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: - - *777 - - *449 - - *450 + - *780 + - *452 + - *453 responses: '204': description: Response @@ -116024,15 +116271,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: - - *777 + - *780 responses: '200': description: Response content: application/json: - schema: *451 + schema: *454 examples: - default: *452 + default: *455 '403': *27 '404': *6 x-github: @@ -116059,7 +116306,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: - - *777 + - *780 requestBody: required: true content: @@ -116120,7 +116367,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *454 examples: default: value: @@ -116151,7 +116398,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *777 + - *780 - *17 - *19 responses: @@ -116161,9 +116408,9 @@ paths: application/json: schema: type: array - items: *305 + items: *308 examples: - response-if-child-teams-exist: *781 + response-if-child-teams-exist: *784 headers: Link: *45 '404': *6 @@ -116196,7 +116443,7 @@ paths: application/json: schema: oneOf: - - &782 + - &785 title: Private User description: Private User type: object @@ -116446,7 +116693,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &808 + - &811 title: Public User description: Public User type: object @@ -116780,7 +117027,7 @@ paths: description: Response content: application/json: - schema: *782 + schema: *785 examples: default: value: @@ -116859,7 +117106,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 '304': *35 '404': *6 '403': *27 @@ -116882,7 +117129,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: - - *137 + - *139 responses: '204': description: If the user is blocked @@ -116910,7 +117157,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *137 + - *139 responses: '204': description: Response @@ -116934,7 +117181,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *137 + - *139 responses: '204': description: Response @@ -116983,9 +117230,9 @@ paths: type: integer codespaces: type: array - items: *372 + items: *375 examples: - default: *373 + default: *376 '304': *35 '500': *38 '401': *23 @@ -117124,21 +117371,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '401': *23 '403': *27 '404': *6 - '503': *190 + '503': *192 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117178,7 +117425,7 @@ paths: type: integer secrets: type: array - items: &783 + items: &786 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -117220,7 +117467,7 @@ paths: - visibility - selected_repositories_url examples: - default: *554 + default: *557 headers: Link: *45 x-github: @@ -117292,13 +117539,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: - - *286 + - *289 responses: '200': description: Response content: application/json: - schema: *783 + schema: *786 examples: default: value: @@ -117328,7 +117575,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: - - *286 + - *289 requestBody: required: true content: @@ -117373,7 +117620,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -117401,7 +117648,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: - - *286 + - *289 responses: '204': description: Response @@ -117426,7 +117673,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: - - *286 + - *289 responses: '200': description: Response @@ -117442,9 +117689,9 @@ paths: type: integer repositories: type: array - items: *276 + items: *279 examples: - default: *784 + default: *787 '401': *23 '403': *27 '404': *6 @@ -117469,7 +117716,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: - - *286 + - *289 requestBody: required: true content: @@ -117523,7 +117770,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: - - *286 + - *289 - name: repository_id in: path required: true @@ -117556,7 +117803,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: - - *286 + - *289 - name: repository_id in: path required: true @@ -117588,15 +117835,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: - - *374 + - *377 responses: '200': description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '304': *35 '500': *38 '401': *23 @@ -117622,7 +117869,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: - - *374 + - *377 requestBody: required: false content: @@ -117652,9 +117899,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '401': *23 '403': *27 '404': *6 @@ -117676,7 +117923,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: - - *374 + - *377 responses: '202': *37 '304': *35 @@ -117705,13 +117952,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: - - *374 + - *377 responses: '202': description: Response content: application/json: - schema: &785 + schema: &788 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -117764,7 +118011,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &786 + default: &789 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -117796,7 +118043,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *374 + - *377 - name: export_id in: path required: true @@ -117809,9 +118056,9 @@ paths: description: Response content: application/json: - schema: *785 + schema: *788 examples: - default: *786 + default: *789 '404': *6 x-github: githubCloudOnly: false @@ -117832,7 +118079,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *374 + - *377 responses: '200': description: Response @@ -117848,9 +118095,9 @@ paths: type: integer machines: type: array - items: *553 + items: *556 examples: - default: *787 + default: *790 '304': *35 '500': *38 '401': *23 @@ -117879,7 +118126,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: - - *374 + - *377 requestBody: required: true content: @@ -117935,11 +118182,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *454 + repository: *457 machine: anyOf: - type: 'null' - - *553 + - *556 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -118736,15 +118983,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: - - *374 + - *377 responses: '200': description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '304': *35 '500': *38 '400': *14 @@ -118756,7 +119003,7 @@ paths: schema: *3 '403': *27 '404': *6 - '409': *117 + '409': *119 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118776,15 +119023,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: - - *374 + - *377 responses: '200': description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *552 + default: *555 '500': *38 '401': *23 '403': *27 @@ -118814,9 +119061,9 @@ paths: application/json: schema: type: array - items: *382 + items: *385 examples: - default: &798 + default: &801 value: - id: 197 name: hello_docker @@ -118917,7 +119164,7 @@ paths: application/json: schema: type: array - items: &788 + items: &791 title: Email description: Email type: object @@ -118987,9 +119234,9 @@ paths: application/json: schema: type: array - items: *788 + items: *791 examples: - default: &800 + default: &803 value: - email: octocat@github.com verified: true @@ -119066,7 +119313,7 @@ paths: application/json: schema: type: array - items: *788 + items: *791 examples: default: value: @@ -119178,7 +119425,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 '304': *35 @@ -119211,7 +119458,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 '304': *35 @@ -119233,7 +119480,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: - - *137 + - *139 responses: '204': description: if the person is followed by the authenticated user @@ -119263,7 +119510,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *137 + - *139 responses: '204': description: Response @@ -119288,7 +119535,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *137 + - *139 responses: '204': description: Response @@ -119324,7 +119571,7 @@ paths: application/json: schema: type: array - items: &789 + items: &792 title: GPG Key description: A unique encryption key type: object @@ -119469,7 +119716,7 @@ paths: - subkeys - revoked examples: - default: &817 + default: &820 value: - id: 3 name: Octocat's GPG Key @@ -119554,9 +119801,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *792 examples: - default: &790 + default: &793 value: id: 3 name: Octocat's GPG Key @@ -119613,7 +119860,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: - - &791 + - &794 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -119625,9 +119872,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *792 examples: - default: *790 + default: *793 '404': *6 '304': *35 '403': *27 @@ -119650,7 +119897,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: - - *791 + - *794 responses: '204': description: Response @@ -119841,9 +120088,9 @@ paths: type: array items: allOf: - - *76 + - *78 examples: - default: *271 + default: *274 headers: Link: *45 '404': *6 @@ -119868,7 +120115,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *21 - - *270 + - *273 responses: '204': description: Response @@ -119894,7 +120141,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *21 - - *270 + - *273 responses: '204': description: Response @@ -119928,12 +120175,12 @@ paths: application/json: schema: anyOf: - - *359 + - *362 - type: object properties: {} additionalProperties: false examples: - default: *360 + default: *363 '204': description: Response when there are no restrictions x-github: @@ -119957,7 +120204,7 @@ paths: required: true content: application/json: - schema: *633 + schema: *636 examples: default: value: @@ -119968,7 +120215,7 @@ paths: description: Response content: application/json: - schema: *359 + schema: *362 examples: default: value: @@ -120049,7 +120296,7 @@ paths: - closed - all default: open - - *370 + - *373 - name: sort description: What to sort results by. in: query @@ -120061,8 +120308,8 @@ paths: - updated - comments default: created - - *108 - - *222 + - *110 + - *224 - *17 - *19 responses: @@ -120072,9 +120319,9 @@ paths: application/json: schema: type: array - items: *217 + items: *219 examples: - default: *371 + default: *374 headers: Link: *45 '404': *6 @@ -120107,7 +120354,7 @@ paths: application/json: schema: type: array - items: &792 + items: &795 title: Key description: Key type: object @@ -120210,9 +120457,9 @@ paths: description: Response content: application/json: - schema: *792 + schema: *795 examples: - default: &793 + default: &796 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -120245,15 +120492,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: - - *663 + - *666 responses: '200': description: Response content: application/json: - schema: *792 + schema: *795 examples: - default: *793 + default: *796 '404': *6 '304': *35 '403': *27 @@ -120276,7 +120523,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: - - *663 + - *666 responses: '204': description: Response @@ -120309,7 +120556,7 @@ paths: application/json: schema: type: array - items: &794 + items: &797 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -120377,7 +120624,7 @@ paths: - id - type - login - plan: *233 + plan: *235 required: - billing_cycle - next_billing_date @@ -120388,7 +120635,7 @@ paths: - account - plan examples: - default: &795 + default: &798 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -120450,9 +120697,9 @@ paths: application/json: schema: type: array - items: *794 + items: *797 examples: - default: *795 + default: *798 headers: Link: *45 '304': *35 @@ -120492,7 +120739,7 @@ paths: application/json: schema: type: array - items: *375 + items: *378 examples: default: value: @@ -120600,13 +120847,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: - - *85 + - *87 responses: '200': description: Response content: application/json: - schema: *375 + schema: *378 examples: default: value: @@ -120668,7 +120915,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: - - *85 + - *87 requestBody: required: true content: @@ -120693,7 +120940,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *378 examples: default: value: @@ -120765,7 +121012,7 @@ paths: application/json: schema: type: array - items: *377 + items: *380 examples: default: value: @@ -121027,7 +121274,7 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: default: value: @@ -121207,7 +121454,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *378 + - *381 - name: exclude in: query required: false @@ -121220,7 +121467,7 @@ paths: description: Response content: application/json: - schema: *377 + schema: *380 examples: default: value: @@ -121414,7 +121661,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *378 + - *381 responses: '302': description: Response @@ -121440,7 +121687,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *378 + - *381 responses: '204': description: Response @@ -121469,8 +121716,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *378 - - *796 + - *381 + - *799 responses: '204': description: Response @@ -121494,7 +121741,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *378 + - *381 - *17 - *19 responses: @@ -121504,7 +121751,7 @@ paths: application/json: schema: type: array - items: *118 + items: *120 headers: Link: *45 '404': *6 @@ -121539,9 +121786,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: *246 + default: *248 headers: Link: *45 '304': *35 @@ -121583,7 +121830,7 @@ paths: - docker - nuget - container - - *797 + - *800 - *19 - *17 responses: @@ -121593,10 +121840,10 @@ paths: application/json: schema: type: array - items: *382 + items: *385 examples: - default: *798 - '400': *799 + default: *801 + '400': *802 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121616,16 +121863,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: - - *384 - - *385 + - *387 + - *388 responses: '200': description: Response content: application/json: - schema: *382 + schema: *385 examples: - default: &818 + default: &821 value: id: 40201 name: octo-name @@ -121738,8 +121985,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: - - *384 - - *385 + - *387 + - *388 responses: '204': description: Response @@ -121769,8 +122016,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: - - *384 - - *385 + - *387 + - *388 - name: token description: package token schema: @@ -121802,8 +122049,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: - - *384 - - *385 + - *387 + - *388 - *19 - *17 - name: state @@ -121823,7 +122070,7 @@ paths: application/json: schema: type: array - items: *386 + items: *389 examples: default: value: @@ -121872,15 +122119,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: - - *384 - - *385 - *387 + - *388 + - *390 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: default: value: @@ -121916,9 +122163,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: - - *384 - - *385 - *387 + - *388 + - *390 responses: '204': description: Response @@ -121948,9 +122195,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: - - *384 - - *385 - *387 + - *388 + - *390 responses: '204': description: Response @@ -121987,9 +122234,9 @@ paths: application/json: schema: type: array - items: *788 + items: *791 examples: - default: *800 + default: *803 headers: Link: *45 '304': *35 @@ -122100,9 +122347,9 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: &807 + default: &810 summary: Default response value: - id: 1296269 @@ -122420,9 +122667,9 @@ paths: description: Response content: application/json: - schema: *454 + schema: *457 examples: - default: *456 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -122461,9 +122708,9 @@ paths: application/json: schema: type: array - items: *635 + items: *638 examples: - default: *801 + default: *804 headers: Link: *45 '304': *35 @@ -122486,12 +122733,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *363 + - *366 responses: '204': description: Response '403': *27 - '409': *117 + '409': *119 '404': *6 '304': *35 '451': *15 @@ -122510,11 +122757,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *363 + - *366 responses: '204': description: Response - '409': *117 + '409': *119 '304': *35 '404': *6 '403': *27 @@ -122543,7 +122790,7 @@ paths: application/json: schema: type: array - items: &802 + items: &805 title: Social account description: Social media account type: object @@ -122560,7 +122807,7 @@ paths: - provider - url examples: - default: &803 + default: &806 value: - provider: twitter url: https://twitter.com/github @@ -122623,9 +122870,9 @@ paths: application/json: schema: type: array - items: *802 + items: *805 examples: - default: *803 + default: *806 '422': *15 '304': *35 '404': *6 @@ -122713,7 +122960,7 @@ paths: application/json: schema: type: array - items: &804 + items: &807 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -122733,7 +122980,7 @@ paths: - title - created_at examples: - default: &832 + default: &835 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -122798,9 +123045,9 @@ paths: description: Response content: application/json: - schema: *804 + schema: *807 examples: - default: &805 + default: &808 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -122830,7 +123077,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: - - &806 + - &809 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -122842,9 +123089,9 @@ paths: description: Response content: application/json: - schema: *804 + schema: *807 examples: - default: *805 + default: *808 '404': *6 '304': *35 '403': *27 @@ -122867,7 +123114,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: - - *806 + - *809 responses: '204': description: Response @@ -122896,7 +123143,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: - - &833 + - &836 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 @@ -122909,7 +123156,7 @@ paths: - created - updated default: created - - *108 + - *110 - *17 - *19 responses: @@ -122919,13 +123166,13 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default-response: *807 + default-response: *810 application/vnd.github.v3.star+json: schema: type: array - items: &834 + items: &837 title: Starred Repository description: Starred Repository type: object @@ -122933,7 +123180,7 @@ paths: starred_at: type: string format: date-time - repo: *76 + repo: *78 required: - starred_at - repo @@ -123081,8 +123328,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response if this repository is starred by you @@ -123110,8 +123357,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -123135,8 +123382,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: - - *449 - - *450 + - *452 + - *453 responses: '204': description: Response @@ -123169,9 +123416,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *395 + default: *398 headers: Link: *45 '304': *35 @@ -123208,7 +123455,7 @@ paths: application/json: schema: type: array - items: *441 + items: *444 examples: default: value: @@ -123286,7 +123533,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *235 + - *237 responses: '200': description: Response @@ -123294,10 +123541,10 @@ paths: application/json: schema: oneOf: - - *782 - - *808 + - *785 + - *811 examples: - default-response: &812 + default-response: &815 summary: Default response value: login: octocat @@ -123332,7 +123579,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &813 + response-with-git-hub-plan-information: &816 summary: Response with GitHub plan information value: login: octocat @@ -123389,14 +123636,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: - - &810 + - &813 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *400 + - *403 requestBody: required: true description: Details of the draft item to create in the project. @@ -123430,9 +123677,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: - draft_issue: *406 + draft_issue: *409 '304': *35 '403': *27 '401': *23 @@ -123455,7 +123702,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *809 + - *812 - *17 responses: '200': @@ -123466,7 +123713,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: example: ; rel="next" @@ -123490,8 +123737,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: - - *810 - - *400 + - *813 + - *403 requestBody: required: true content: @@ -123565,17 +123812,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *811 + schema: *814 examples: table_view: summary: Response for creating a table view - value: *410 + value: *413 board_view: summary: Response for creating a board view with filter - value: *410 + value: *413 roadmap_view: summary: Response for creating a roadmap view - value: *410 + value: *413 '304': *35 '403': *27 '401': *23 @@ -123609,7 +123856,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *137 + - *139 responses: '200': description: Response @@ -123617,11 +123864,11 @@ paths: application/json: schema: oneOf: - - *782 - - *808 + - *785 + - *811 examples: - default-response: *812 - response-with-git-hub-plan-information: *813 + default-response: *815 + response-with-git-hub-plan-information: *816 '404': *6 x-github: githubCloudOnly: false @@ -123645,9 +123892,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *106 - - *107 - - *137 + - *108 + - *109 + - *139 requestBody: required: true content: @@ -123671,8 +123918,8 @@ paths: required: - subject_digests examples: - default: *814 - withPredicateType: *815 + default: *817 + withPredicateType: *818 responses: '200': description: Response @@ -123712,7 +123959,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *816 + default: *819 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -123730,7 +123977,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *137 + - *139 requestBody: required: true content: @@ -123795,7 +124042,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *137 + - *139 - name: subject_digest description: Subject Digest in: path @@ -123826,7 +124073,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *137 + - *139 - name: attestation_id description: Attestation ID in: path @@ -123862,9 +124109,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#list-attestations parameters: - *17 - - *106 - - *107 - - *137 + - *108 + - *109 + - *139 - name: subject_digest description: Subject Digest in: path @@ -123901,12 +124148,12 @@ paths: initiator: type: string examples: - default: *496 + default: *499 '201': description: Response content: application/json: - schema: *287 + schema: *290 examples: default: value: @@ -123932,7 +124179,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: - - *137 + - *139 responses: '200': description: Response @@ -123940,9 +124187,9 @@ paths: application/json: schema: type: array - items: *382 + items: *385 examples: - default: *798 + default: *801 '403': *27 '401': *23 x-github: @@ -123965,7 +124212,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -123975,7 +124222,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -124037,8 +124284,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: - - *137 - - *85 + - *139 + - *87 - *17 - *19 responses: @@ -124048,7 +124295,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -124125,7 +124372,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124135,7 +124382,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -124193,7 +124440,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124205,7 +124452,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -124224,7 +124471,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124236,7 +124483,7 @@ paths: type: array items: *4 examples: - default: *208 + default: *210 headers: Link: *45 x-github: @@ -124255,7 +124502,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: - - *137 + - *139 - name: target_user in: path required: true @@ -124282,8 +124529,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *137 - - *222 + - *139 + - *224 - *17 - *19 responses: @@ -124293,9 +124540,9 @@ paths: application/json: schema: type: array - items: *223 + items: *225 examples: - default: *224 + default: *226 headers: Link: *45 '422': *15 @@ -124316,7 +124563,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: - - *137 + - *139 - *17 - *19 responses: @@ -124326,9 +124573,9 @@ paths: application/json: schema: type: array - items: *789 + items: *792 examples: - default: *817 + default: *820 headers: Link: *45 x-github: @@ -124352,7 +124599,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *137 + - *139 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -124424,7 +124671,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: - - *137 + - *139 responses: '200': description: Response @@ -124432,7 +124679,7 @@ paths: application/json: schema: *20 examples: - default: *357 + default: *360 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124450,7 +124697,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124506,7 +124753,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -124516,9 +124763,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: *246 + default: *248 headers: Link: *45 x-github: @@ -124557,8 +124804,8 @@ paths: - docker - nuget - container - - *797 - - *137 + - *800 + - *139 - *19 - *17 responses: @@ -124568,12 +124815,12 @@ paths: application/json: schema: type: array - items: *382 + items: *385 examples: - default: *798 + default: *801 '403': *27 '401': *23 - '400': *799 + '400': *802 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124593,17 +124840,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *384 - - *385 - - *137 + - *387 + - *388 + - *139 responses: '200': description: Response content: application/json: - schema: *382 + schema: *385 examples: - default: *818 + default: *821 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124624,9 +124871,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *384 - - *385 - - *137 + - *387 + - *388 + - *139 responses: '204': description: Response @@ -124658,9 +124905,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *384 - - *385 - - *137 + - *387 + - *388 + - *139 - name: token description: package token schema: @@ -124692,9 +124939,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: - - *384 - - *385 - - *137 + - *387 + - *388 + - *139 responses: '200': description: Response @@ -124702,7 +124949,7 @@ paths: application/json: schema: type: array - items: *386 + items: *389 examples: default: value: @@ -124760,16 +125007,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: - - *384 - - *385 - *387 - - *137 + - *388 + - *390 + - *139 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: default: value: @@ -124804,10 +125051,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *384 - - *385 - - *137 - *387 + - *388 + - *139 + - *390 responses: '204': description: Response @@ -124839,10 +125086,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *384 - - *385 - - *137 - *387 + - *388 + - *139 + - *390 responses: '204': description: Response @@ -124866,15 +125113,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-projects-for-user parameters: - - *137 + - *139 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *106 - - *107 + - *108 + - *109 - *17 responses: '200': @@ -124883,9 +125130,9 @@ paths: application/json: schema: type: array - items: *398 + items: *401 examples: - default: *399 + default: *402 headers: Link: *45 '304': *35 @@ -124907,16 +125154,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-project-for-user parameters: - - *400 - - *137 + - *403 + - *139 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: - default: *399 + default: *402 headers: Link: *45 '304': *35 @@ -124938,11 +125185,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#list-project-fields-for-user parameters: - - *400 - - *137 + - *403 + - *139 - *17 - - *106 - - *107 + - *108 + - *109 responses: '200': description: Response @@ -124950,9 +125197,9 @@ paths: application/json: schema: type: array - items: *403 + items: *406 examples: - default: *819 + default: *822 headers: Link: *45 '304': *35 @@ -124973,8 +125220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#add-field-to-user-owned-project parameters: - - *137 - - *400 + - *139 + - *403 requestBody: required: true content: @@ -125012,7 +125259,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *820 + items: *823 required: - name - data_type @@ -125028,7 +125275,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *821 + iteration_configuration: *824 required: - name - data_type @@ -125050,20 +125297,20 @@ paths: value: name: Due date data_type: date - single_select_field: *822 - iteration_field: *823 + single_select_field: *825 + iteration_field: *826 responses: '201': description: Response content: application/json: - schema: *403 + schema: *406 examples: - text_field: *824 - number_field: *825 - date_field: *826 - single_select_field: *827 - iteration_field: *828 + text_field: *827 + number_field: *828 + date_field: *829 + single_select_field: *830 + iteration_field: *831 '304': *35 '403': *27 '401': *23 @@ -125084,17 +125331,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/fields#get-project-field-for-user parameters: - - *400 - - *829 - - *137 + - *403 + - *832 + - *139 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: *830 + default: *833 headers: Link: *45 '304': *35 @@ -125117,10 +125364,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: - - *400 - - *137 - - *106 - - *107 + - *403 + - *139 + - *108 + - *109 - *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) @@ -125150,9 +125397,9 @@ paths: application/json: schema: type: array - items: *407 + items: *410 examples: - default: *408 + default: *411 headers: Link: *45 '304': *35 @@ -125173,8 +125420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#add-item-to-user-owned-project parameters: - - *137 - - *400 + - *139 + - *403 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -125244,22 +125491,22 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *406 + value: *409 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *406 + value: *409 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *406 + value: *409 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *406 + value: *409 '304': *35 '403': *27 '401': *23 @@ -125279,9 +125526,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: - - *400 - - *137 - - *409 + - *403 + - *139 + - *412 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -125301,9 +125548,9 @@ paths: description: Response content: application/json: - schema: *407 + schema: *410 examples: - default: *408 + default: *411 headers: Link: *45 '304': *35 @@ -125324,9 +125571,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#update-project-item-for-user parameters: - - *400 - - *137 - - *409 + - *403 + - *139 + - *412 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -125399,13 +125646,13 @@ paths: description: Response content: application/json: - schema: *407 + schema: *410 examples: - text_field: *408 - number_field: *408 - date_field: *408 - single_select_field: *408 - iteration_field: *408 + text_field: *411 + number_field: *411 + date_field: *411 + single_select_field: *411 + iteration_field: *411 '401': *23 '403': *27 '404': *6 @@ -125425,9 +125672,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/items#delete-project-item-for-user parameters: - - *400 - - *137 - - *409 + - *403 + - *139 + - *412 responses: '204': description: Response @@ -125449,9 +125696,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: - - *400 - - *137 - - *831 + - *403 + - *139 + - *834 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -125467,8 +125714,8 @@ paths: maxItems: 50 items: type: string - - *106 - - *107 + - *108 + - *109 - *17 responses: '200': @@ -125477,9 +125724,9 @@ paths: application/json: schema: type: array - items: *407 + items: *410 examples: - default: *408 + default: *411 headers: Link: *45 '304': *35 @@ -125507,7 +125754,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: - - *137 + - *139 - *17 - *19 responses: @@ -125517,7 +125764,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -125582,7 +125829,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: - - *137 + - *139 - *17 - *19 responses: @@ -125592,7 +125839,7 @@ paths: application/json: schema: type: array - items: *241 + items: *243 examples: default: value: @@ -125655,7 +125902,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *137 + - *139 - name: type description: Limit results to repositories of the specified type. in: query @@ -125698,9 +125945,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *395 + default: *398 headers: Link: *45 x-github: @@ -125720,7 +125967,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: - - *137 + - *139 - *17 - *19 responses: @@ -125730,9 +125977,9 @@ paths: application/json: schema: type: array - items: *802 + items: *805 examples: - default: *803 + default: *806 headers: Link: *45 x-github: @@ -125752,7 +125999,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: - - *137 + - *139 - *17 - *19 responses: @@ -125762,9 +126009,9 @@ paths: application/json: schema: type: array - items: *804 + items: *807 examples: - default: *832 + default: *835 headers: Link: *45 x-github: @@ -125788,9 +126035,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *137 - - *833 - - *108 + - *139 + - *836 + - *110 - *17 - *19 responses: @@ -125801,11 +126048,11 @@ paths: schema: anyOf: - type: array - items: *834 + items: *837 - type: array - items: *76 + items: *78 examples: - default-response: *807 + default-response: *810 headers: Link: *45 x-github: @@ -125824,7 +126071,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *137 + - *139 - *17 - *19 responses: @@ -125834,9 +126081,9 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *395 + default: *398 headers: Link: *45 x-github: @@ -125965,7 +126212,7 @@ webhooks: type: string enum: - disabled - enterprise: &835 + enterprise: &838 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -126034,7 +126281,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &836 + installation: &839 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -126055,7 +126302,7 @@ webhooks: required: - id - node_id - organization: &837 + organization: &840 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -126128,7 +126375,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &838 + repository: &841 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -126157,7 +126404,7 @@ webhooks: license: anyOf: - type: 'null' - - *219 + - *221 organization: anyOf: - type: 'null' @@ -127049,10 +127296,10 @@ webhooks: type: string enum: - enabled - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -127128,11 +127375,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - rule: &839 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + rule: &842 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) @@ -127355,11 +127602,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - rule: *839 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + rule: *842 sender: *4 required: - action @@ -127547,11 +127794,11 @@ webhooks: - everyone required: - from - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - rule: *839 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + rule: *842 sender: *4 required: - action @@ -127624,7 +127871,7 @@ webhooks: required: true content: application/json: - schema: &859 + schema: &862 title: Exemption request cancellation event type: object properties: @@ -127632,11 +127879,11 @@ webhooks: type: string enum: - cancelled - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - exemption_request: &840 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + exemption_request: &843 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -127910,7 +128157,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &841 + items: &844 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -128022,7 +128269,7 @@ webhooks: required: true content: application/json: - schema: &860 + schema: &863 title: Exemption request completed event type: object properties: @@ -128030,11 +128277,11 @@ webhooks: type: string enum: - completed - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - exemption_request: *840 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + exemption_request: *843 sender: *4 required: - action @@ -128106,7 +128353,7 @@ webhooks: required: true content: application/json: - schema: &857 + schema: &860 title: Exemption request created event type: object properties: @@ -128114,11 +128361,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - exemption_request: *840 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + exemption_request: *843 sender: *4 required: - action @@ -128190,7 +128437,7 @@ webhooks: required: true content: application/json: - schema: &861 + schema: &864 title: Exemption response dismissed event type: object properties: @@ -128198,12 +128445,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - exemption_request: *840 - exemption_response: *841 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + exemption_request: *843 + exemption_response: *844 sender: *4 required: - action @@ -128277,7 +128524,7 @@ webhooks: required: true content: application/json: - schema: &858 + schema: &861 title: Exemption response submitted event type: object properties: @@ -128285,12 +128532,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - exemption_request: *840 - exemption_response: *841 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + exemption_request: *843 + exemption_response: *844 sender: *4 required: - action @@ -128374,7 +128621,7 @@ webhooks: type: string enum: - completed - check_run: &843 + check_run: &846 title: CheckRun description: A check performed on the code of a given code change type: object @@ -128439,8 +128686,8 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *220 - repository: *276 + items: *222 + repository: *279 status: type: string enum: @@ -128484,7 +128731,7 @@ webhooks: - examples: - neutral - deployment: *842 + deployment: *845 details_url: type: string examples: @@ -128544,7 +128791,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *220 + items: *222 started_at: type: string format: date-time @@ -128582,10 +128829,10 @@ webhooks: - output - app - pull_requests - installation: *836 - enterprise: *835 - organization: *837 - repository: *838 + installation: *839 + enterprise: *838 + organization: *840 + repository: *841 sender: *4 required: - check_run @@ -128976,11 +129223,11 @@ webhooks: type: string enum: - created - check_run: *843 - installation: *836 - enterprise: *835 - organization: *837 - repository: *838 + check_run: *846 + installation: *839 + enterprise: *838 + organization: *840 + repository: *841 sender: *4 required: - check_run @@ -129374,11 +129621,11 @@ webhooks: type: string enum: - requested_action - check_run: *843 - installation: *836 - enterprise: *835 - organization: *837 - repository: *838 + check_run: *846 + installation: *839 + enterprise: *838 + organization: *840 + repository: *841 requested_action: description: The action requested by the user. type: object @@ -129781,11 +130028,11 @@ webhooks: type: string enum: - rerequested - check_run: *843 - installation: *836 - enterprise: *835 - organization: *837 - repository: *838 + check_run: *846 + installation: *839 + enterprise: *838 + organization: *840 + repository: *841 sender: *4 required: - check_run @@ -130770,10 +131017,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -131477,10 +131724,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -132178,10 +132425,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -132350,7 +132597,7 @@ webhooks: required: - login - id - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132502,20 +132749,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &844 + commit_oid: &847 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: *835 - installation: *836 - organization: *837 - ref: &845 + enterprise: *838 + installation: *839 + organization: *840 + ref: &848 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: *838 + repository: *841 sender: *4 required: - action @@ -132682,7 +132929,7 @@ webhooks: required: - login - id - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132923,12 +133170,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *844 - enterprise: *835 - installation: *836 - organization: *837 - ref: *845 - repository: *838 + commit_oid: *847 + enterprise: *838 + installation: *839 + organization: *840 + ref: *848 + repository: *841 sender: *4 required: - action @@ -133026,7 +133273,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -133211,12 +133458,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *844 - enterprise: *835 - installation: *836 - organization: *837 - ref: *845 - repository: *838 + commit_oid: *847 + enterprise: *838 + installation: *839 + organization: *840 + ref: *848 + repository: *841 sender: *4 required: - action @@ -133385,7 +133632,7 @@ webhooks: required: - login - id - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -133562,12 +133809,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *844 - enterprise: *835 - installation: *836 - organization: *837 - ref: *845 - repository: *838 + commit_oid: *847 + enterprise: *838 + installation: *839 + organization: *840 + ref: *848 + repository: *841 sender: *4 required: - action @@ -133668,7 +133915,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -133857,9 +134104,9 @@ webhooks: type: - string - 'null' - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -133867,7 +134114,7 @@ webhooks: type: - string - 'null' - repository: *838 + repository: *841 sender: *4 required: - action @@ -133966,7 +134213,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -134113,12 +134360,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *844 - enterprise: *835 - installation: *836 - organization: *837 - ref: *845 - repository: *838 + commit_oid: *847 + enterprise: *838 + installation: *839 + organization: *840 + ref: *848 + repository: *841 sender: *4 required: - action @@ -134287,7 +134534,7 @@ webhooks: required: - login - id - dismissed_comment: *524 + dismissed_comment: *527 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -134439,10 +134686,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -134702,10 +134949,10 @@ webhooks: - updated_at - author_association - body - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -134786,18 +135033,18 @@ webhooks: type: - string - 'null' - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *837 - pusher_type: &846 + organization: *840 + pusher_type: &849 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &847 + ref: &850 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -134807,7 +135054,7 @@ webhooks: enum: - tag - branch - repository: *838 + repository: *841 sender: *4 required: - ref @@ -134889,10 +135136,10 @@ webhooks: type: string enum: - created - definition: *151 - enterprise: *835 - installation: *836 - organization: *837 + definition: *153 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 required: - action @@ -134977,9 +135224,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 required: - action @@ -135056,10 +135303,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *151 - enterprise: *835 - installation: *836 - organization: *837 + definition: *153 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 required: - action @@ -135136,10 +135383,10 @@ webhooks: type: string enum: - updated - definition: *151 - enterprise: *835 - installation: *836 - organization: *837 + definition: *153 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 required: - action @@ -135216,19 +135463,19 @@ webhooks: type: string enum: - updated - enterprise: *835 - installation: *836 - repository: *838 - organization: *837 + enterprise: *838 + installation: *839 + repository: *841 + organization: *840 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *150 + items: *152 old_property_values: type: array description: The old custom property values for the repository. - items: *150 + items: *152 required: - action - repository @@ -135304,18 +135551,18 @@ webhooks: title: delete event type: object properties: - enterprise: *835 - installation: *836 - organization: *837 - pusher_type: *846 - ref: *847 + enterprise: *838 + installation: *839 + organization: *840 + pusher_type: *849 + ref: *850 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *838 + repository: *841 sender: *4 required: - ref @@ -135395,11 +135642,11 @@ webhooks: type: string enum: - assignees_changed - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -135479,11 +135726,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -135564,11 +135811,11 @@ webhooks: type: string enum: - auto_reopened - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -135649,11 +135896,11 @@ webhooks: type: string enum: - created - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -135732,11 +135979,11 @@ webhooks: type: string enum: - dismissed - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -135815,11 +136062,11 @@ webhooks: type: string enum: - fixed - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -135899,11 +136146,11 @@ webhooks: type: string enum: - reintroduced - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -135982,11 +136229,11 @@ webhooks: type: string enum: - reopened - alert: *582 - installation: *836 - organization: *837 - enterprise: *835 - repository: *838 + alert: *585 + installation: *839 + organization: *840 + enterprise: *838 + repository: *841 sender: *4 required: - action @@ -136063,9 +136310,9 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - key: &848 + enterprise: *838 + installation: *839 + key: &851 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -136103,8 +136350,8 @@ webhooks: - verified - created_at - read_only - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -136181,11 +136428,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - key: *848 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + key: *851 + organization: *840 + repository: *841 sender: *4 required: - action @@ -136752,12 +136999,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - workflow: &852 + workflow: &855 title: Workflow type: - object @@ -137508,13 +137755,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *588 + - *591 pull_requests: type: array - items: *683 - repository: *838 - organization: *837 - installation: *836 + items: *686 + repository: *841 + organization: *840 + installation: *839 sender: *4 responses: '200': @@ -137585,7 +137832,7 @@ webhooks: type: string enum: - approved - approver: &849 + approver: &852 type: object properties: avatar_url: @@ -137628,11 +137875,11 @@ webhooks: type: string comment: type: string - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - reviewers: &850 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + reviewers: &853 type: array items: type: object @@ -137713,7 +137960,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &851 + workflow_job_run: &854 type: object properties: conclusion: @@ -138459,18 +138706,18 @@ webhooks: type: string enum: - rejected - approver: *849 + approver: *852 comment: type: string - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - reviewers: *850 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + reviewers: *853 sender: *4 since: type: string - workflow_job_run: *851 + workflow_job_run: *854 workflow_job_runs: type: array items: @@ -139187,13 +139434,13 @@ webhooks: type: string enum: - requested - enterprise: *835 + enterprise: *838 environment: type: string - installation: *836 - organization: *837 - repository: *838 - requestor: &862 + installation: *839 + organization: *840 + repository: *841 + requestor: &865 title: User type: - object @@ -141126,12 +141373,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - workflow: *852 + workflow: *855 workflow_run: title: Deployment Workflow Run type: @@ -141822,7 +142069,7 @@ webhooks: type: string enum: - answered - answer: &855 + answer: &858 type: object properties: author_association: @@ -141982,11 +142229,11 @@ webhooks: - created_at - updated_at - body - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142113,11 +142360,11 @@ webhooks: - from required: - category - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142200,11 +142447,11 @@ webhooks: type: string enum: - closed - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142286,7 +142533,7 @@ webhooks: type: string enum: - created - comment: &854 + comment: &857 type: object properties: author_association: @@ -142446,11 +142693,11 @@ webhooks: - updated_at - body - reactions - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142533,12 +142780,12 @@ webhooks: type: string enum: - deleted - comment: *854 - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + comment: *857 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142633,12 +142880,12 @@ webhooks: - from required: - body - comment: *854 - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + comment: *857 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142722,11 +142969,11 @@ webhooks: type: string enum: - created - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142808,11 +143055,11 @@ webhooks: type: string enum: - deleted - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142912,11 +143159,11 @@ webhooks: type: string required: - from - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -142998,10 +143245,10 @@ webhooks: type: string enum: - labeled - discussion: *853 - enterprise: *835 - installation: *836 - label: &856 + discussion: *856 + enterprise: *838 + installation: *839 + label: &859 title: Label type: object properties: @@ -143034,8 +143281,8 @@ webhooks: - color - default - description - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143118,11 +143365,11 @@ webhooks: type: string enum: - locked - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143204,11 +143451,11 @@ webhooks: type: string enum: - pinned - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143290,11 +143537,11 @@ webhooks: type: string enum: - reopened - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143379,16 +143626,16 @@ webhooks: changes: type: object properties: - new_discussion: *853 - new_repository: *838 + new_discussion: *856 + new_repository: *841 required: - new_discussion - new_repository - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143471,10 +143718,10 @@ webhooks: type: string enum: - unanswered - discussion: *853 - old_answer: *855 - organization: *837 - repository: *838 + discussion: *856 + old_answer: *858 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143556,12 +143803,12 @@ webhooks: type: string enum: - unlabeled - discussion: *853 - enterprise: *835 - installation: *836 - label: *856 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143644,11 +143891,11 @@ webhooks: type: string enum: - unlocked - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143730,11 +143977,11 @@ webhooks: type: string enum: - unpinned - discussion: *853 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + discussion: *856 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -143803,7 +144050,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *860 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143866,7 +144113,7 @@ webhooks: required: true content: application/json: - schema: *858 + schema: *861 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143929,7 +144176,7 @@ webhooks: required: true content: application/json: - schema: *859 + schema: *862 responses: '200': description: Return a 200 status to indicate that the data was received @@ -143992,7 +144239,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *860 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144055,7 +144302,7 @@ webhooks: required: true content: application/json: - schema: *858 + schema: *861 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144121,7 +144368,7 @@ webhooks: required: true content: application/json: - schema: *859 + schema: *862 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144187,7 +144434,7 @@ webhooks: required: true content: application/json: - schema: *860 + schema: *863 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144253,7 +144500,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *860 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144319,7 +144566,7 @@ webhooks: required: true content: application/json: - schema: *861 + schema: *864 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144385,7 +144632,7 @@ webhooks: required: true content: application/json: - schema: *858 + schema: *861 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144450,7 +144697,7 @@ webhooks: required: true content: application/json: - schema: *859 + schema: *862 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144515,7 +144762,7 @@ webhooks: required: true content: application/json: - schema: *860 + schema: *863 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144580,7 +144827,7 @@ webhooks: required: true content: application/json: - schema: *857 + schema: *860 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144645,7 +144892,7 @@ webhooks: required: true content: application/json: - schema: *861 + schema: *864 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144711,7 +144958,7 @@ webhooks: required: true content: application/json: - schema: *858 + schema: *861 responses: '200': description: Return a 200 status to indicate that the data was received @@ -144778,7 +145025,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *835 + enterprise: *838 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -145456,9 +145703,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *836 - organization: *837 - repository: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - forkee @@ -145604,9 +145851,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pages: description: The pages that were updated. type: array @@ -145644,7 +145891,7 @@ webhooks: - action - sha - html_url - repository: *838 + repository: *841 sender: *4 required: - pages @@ -145720,10 +145967,10 @@ webhooks: type: string enum: - created - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories: &863 + organization: *840 + repositories: &866 description: An array of repository objects that the installation can access. type: array @@ -145749,8 +145996,8 @@ webhooks: - name - full_name - private - repository: *838 - requester: *862 + repository: *841 + requester: *865 sender: *4 required: - action @@ -145825,11 +146072,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories: *863 - repository: *838 + organization: *840 + repositories: *866 + repository: *841 requester: type: - 'null' @@ -145906,11 +146153,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories: *863 - repository: *838 + organization: *840 + repositories: *866 + repository: *841 requester: type: - 'null' @@ -145987,10 +146234,10 @@ webhooks: type: string enum: - added - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories_added: &864 + organization: *840 + repositories_added: &867 description: An array of repository objects, which were added to the installation. type: array @@ -146036,15 +146283,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *838 - repository_selection: &865 + repository: *841 + repository_selection: &868 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *862 + requester: *865 sender: *4 required: - action @@ -146123,10 +146370,10 @@ webhooks: type: string enum: - removed - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories_added: *864 + organization: *840 + repositories_added: *867 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -146153,9 +146400,9 @@ webhooks: - name - full_name - private - repository: *838 - repository_selection: *865 - requester: *862 + repository: *841 + repository_selection: *868 + requester: *865 sender: *4 required: - action @@ -146234,11 +146481,11 @@ webhooks: type: string enum: - suspend - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories: *863 - repository: *838 + organization: *840 + repositories: *866 + repository: *841 requester: type: - 'null' @@ -146421,10 +146668,10 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 target_type: type: string @@ -146503,11 +146750,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *835 + enterprise: *838 installation: *20 - organization: *837 - repositories: *863 - repository: *838 + organization: *840 + repositories: *866 + repository: *841 requester: type: - 'null' @@ -146673,7 +146920,7 @@ webhooks: pin: anyOf: - type: 'null' - - *660 + - *663 user: title: User type: @@ -146759,8 +147006,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -147572,8 +147819,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147590,7 +147837,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -147934,8 +148181,8 @@ webhooks: - state - locked - assignee - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -148015,7 +148262,7 @@ webhooks: type: string enum: - deleted - comment: &866 + comment: &869 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -148172,7 +148419,7 @@ webhooks: pin: anyOf: - type: 'null' - - *660 + - *663 required: - url - html_url @@ -148186,8 +148433,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -148995,8 +149242,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149013,7 +149260,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -149359,8 +149606,8 @@ webhooks: - state - locked - assignee - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -149440,7 +149687,7 @@ webhooks: type: string enum: - edited - changes: &890 + changes: &893 description: The changes to the comment. type: object properties: @@ -149452,9 +149699,9 @@ webhooks: type: string required: - from - comment: *866 - enterprise: *835 - installation: *836 + comment: *869 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -150265,8 +150512,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150283,7 +150530,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -150627,8 +150874,8 @@ webhooks: - state - locked - assignee - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -150709,9 +150956,9 @@ webhooks: type: string enum: - pinned - comment: *866 - enterprise: *835 - installation: *836 + comment: *869 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -151524,8 +151771,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151542,7 +151789,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -151888,8 +152135,8 @@ webhooks: - state - locked - assignee - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -151969,9 +152216,9 @@ webhooks: type: string enum: - unpinned - comment: *866 - enterprise: *835 - installation: *836 + comment: *869 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -152784,8 +153031,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152802,7 +153049,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -153148,8 +153395,8 @@ webhooks: - state - locked - assignee - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -153232,15 +153479,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *217 + blocked_issue: *219 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *217 - blocking_issue_repo: *76 - installation: *836 - organization: *837 - repository: *838 + blocking_issue: *219 + blocking_issue_repo: *78 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -153323,15 +153570,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *217 + blocked_issue: *219 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *217 - blocking_issue_repo: *76 - installation: *836 - organization: *837 - repository: *838 + blocking_issue: *219 + blocking_issue_repo: *78 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -153413,15 +153660,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *217 - blocked_issue_repo: *76 + blocked_issue: *219 + blocked_issue_repo: *78 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *217 - installation: *836 - organization: *837 - repository: *838 + blocking_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -153504,15 +153751,15 @@ webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *217 - blocked_issue_repo: *76 + blocked_issue: *219 + blocked_issue_repo: *78 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *217 - installation: *836 - organization: *837 - repository: *838 + blocking_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -153592,10 +153839,10 @@ webhooks: type: string enum: - assigned - assignee: *862 - enterprise: *835 - installation: *836 - issue: &869 + assignee: *865 + enterprise: *838 + installation: *839 + issue: &872 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -154405,12 +154652,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154427,7 +154674,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -154530,8 +154777,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -154611,8 +154858,8 @@ webhooks: type: string enum: - closed - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -155427,12 +155674,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155449,7 +155696,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -155695,8 +155942,8 @@ webhooks: required: - state - closed_at - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -155775,8 +156022,8 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -156582,12 +156829,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156604,7 +156851,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -156706,8 +156953,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -156786,8 +157033,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -157616,12 +157863,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157638,7 +157885,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -157719,7 +157966,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &867 + milestone: &870 title: Milestone description: A collection of related issues and pull requests. type: object @@ -157862,8 +158109,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -157962,8 +158209,8 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -158773,12 +159020,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158792,7 +159039,7 @@ webhooks: timeline_url: type: string format: uri - type: *367 + type: *370 title: description: Title of the issue type: string @@ -158898,9 +159145,9 @@ webhooks: - active_lock_reason - body - reactions - label: *856 - organization: *837 - repository: *838 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -158980,8 +159227,8 @@ webhooks: type: string enum: - labeled - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -159790,12 +160037,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159809,7 +160056,7 @@ webhooks: timeline_url: type: string format: uri - type: *367 + type: *370 title: description: Title of the issue type: string @@ -159915,9 +160162,9 @@ webhooks: - active_lock_reason - body - reactions - label: *856 - organization: *837 - repository: *838 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -159997,8 +160244,8 @@ webhooks: type: string enum: - locked - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -160832,12 +161079,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160851,7 +161098,7 @@ webhooks: timeline_url: type: string format: uri - type: *367 + type: *370 title: description: Title of the issue type: string @@ -160934,8 +161181,8 @@ webhooks: format: uri user_view_type: type: string - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -161014,8 +161261,8 @@ webhooks: type: string enum: - milestoned - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -161843,12 +162090,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161865,7 +162112,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -161945,9 +162192,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *867 - organization: *837 - repository: *838 + milestone: *870 + organization: *840 + repository: *841 sender: *4 required: - action @@ -162834,11 +163081,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162865,7 +163112,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 + - *220 user: title: User type: @@ -162938,7 +163185,7 @@ webhooks: required: - login - id - type: *367 + type: *370 required: - id - number @@ -163434,8 +163681,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -164242,11 +164489,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *775 - issue_dependencies_summary: *776 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164263,7 +164510,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -164274,7 +164521,7 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 + - *220 user: title: User type: @@ -164369,8 +164616,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -164450,9 +164697,9 @@ webhooks: type: string enum: - pinned - enterprise: *835 - installation: *836 - issue: &868 + enterprise: *838 + installation: *839 + issue: &871 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -165256,12 +165503,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165278,7 +165525,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -165380,8 +165627,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -165460,8 +165707,8 @@ webhooks: type: string enum: - reopened - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -166293,12 +166540,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166395,9 +166642,9 @@ webhooks: format: uri user_view_type: type: string - type: *367 - organization: *837 - repository: *838 + type: *370 + organization: *840 + repository: *841 sender: *4 required: - action @@ -167284,12 +167531,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167306,7 +167553,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -167903,11 +168150,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *835 - installation: *836 - issue: *868 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *871 + organization: *840 + repository: *841 sender: *4 required: - action @@ -167987,12 +168234,12 @@ webhooks: type: string enum: - typed - enterprise: *835 - installation: *836 - issue: *869 - type: *367 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *872 + type: *370 + organization: *840 + repository: *841 sender: *4 required: - action @@ -168073,7 +168320,7 @@ webhooks: type: string enum: - unassigned - assignee: &893 + assignee: &896 title: User type: - object @@ -168145,11 +168392,11 @@ webhooks: required: - login - id - enterprise: *835 - installation: *836 - issue: *869 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *872 + organization: *840 + repository: *841 sender: *4 required: - action @@ -168228,12 +168475,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *835 - installation: *836 - issue: *869 - label: *856 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *872 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -168313,8 +168560,8 @@ webhooks: type: string enum: - unlocked - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -169146,12 +169393,12 @@ webhooks: pinned_comment: anyOf: - type: 'null' - - *218 - sub_issues_summary: *775 - issue_dependencies_summary: *776 + - *220 + sub_issues_summary: *778 + issue_dependencies_summary: *779 issue_field_values: type: array - items: *645 + items: *648 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169168,7 +169415,7 @@ webhooks: title: description: Title of the issue type: string - type: *367 + type: *370 updated_at: type: string format: date-time @@ -169248,8 +169495,8 @@ webhooks: format: uri user_view_type: type: string - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -169329,11 +169576,11 @@ webhooks: type: string enum: - unpinned - enterprise: *835 - installation: *836 - issue: *868 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *871 + organization: *840 + repository: *841 sender: *4 required: - action @@ -169412,12 +169659,12 @@ webhooks: type: string enum: - untyped - enterprise: *835 - installation: *836 - issue: *869 - type: *367 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + issue: *872 + type: *370 + organization: *840 + repository: *841 sender: *4 required: - action @@ -169497,11 +169744,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - label: *856 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -169579,11 +169826,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - label: *856 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -169693,11 +169940,11 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - label: *856 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + label: *859 + organization: *840 + repository: *841 sender: *4 required: - action @@ -169779,9 +170026,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *835 - installation: *836 - marketplace_purchase: &870 + enterprise: *838 + installation: *839 + marketplace_purchase: &873 title: Marketplace Purchase type: object required: @@ -169869,8 +170116,8 @@ webhooks: type: integer unit_count: type: integer - organization: *837 - previous_marketplace_purchase: &871 + organization: *840 + previous_marketplace_purchase: &874 title: Marketplace Purchase type: object properties: @@ -169954,7 +170201,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *838 + repository: *841 sender: *4 required: - action @@ -170034,10 +170281,10 @@ webhooks: - changed effective_date: type: string - enterprise: *835 - installation: *836 - marketplace_purchase: *870 - organization: *837 + enterprise: *838 + installation: *839 + marketplace_purchase: *873 + organization: *840 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -170125,7 +170372,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *838 + repository: *841 sender: *4 required: - action @@ -170207,10 +170454,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *835 - installation: *836 - marketplace_purchase: *870 - organization: *837 + enterprise: *838 + installation: *839 + marketplace_purchase: *873 + organization: *840 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -170296,7 +170543,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *838 + repository: *841 sender: *4 required: - action @@ -170377,8 +170624,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 marketplace_purchase: title: Marketplace Purchase type: object @@ -170464,9 +170711,9 @@ webhooks: type: integer unit_count: type: integer - organization: *837 - previous_marketplace_purchase: *871 - repository: *838 + organization: *840 + previous_marketplace_purchase: *874 + repository: *841 sender: *4 required: - action @@ -170546,12 +170793,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *835 - installation: *836 - marketplace_purchase: *870 - organization: *837 - previous_marketplace_purchase: *871 - repository: *838 + enterprise: *838 + installation: *839 + marketplace_purchase: *873 + organization: *840 + previous_marketplace_purchase: *874 + repository: *841 sender: *4 required: - action @@ -170653,11 +170900,11 @@ webhooks: type: string required: - to - enterprise: *835 - installation: *836 - member: *862 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + member: *865 + organization: *840 + repository: *841 sender: *4 required: - action @@ -170759,11 +171006,11 @@ webhooks: type: - string - 'null' - enterprise: *835 - installation: *836 - member: *862 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + member: *865 + organization: *840 + repository: *841 sender: *4 required: - action @@ -170842,11 +171089,11 @@ webhooks: type: string enum: - removed - enterprise: *835 - installation: *836 - member: *862 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + member: *865 + organization: *840 + repository: *841 sender: *4 required: - action @@ -170924,11 +171171,11 @@ webhooks: type: string enum: - added - enterprise: *835 - installation: *836 - member: *862 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + member: *865 + organization: *840 + repository: *841 scope: description: The scope of the membership. Currently, can only be `team`. @@ -171006,7 +171253,7 @@ webhooks: required: - login - id - team: &872 + team: &875 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -171236,11 +171483,11 @@ webhooks: type: string enum: - removed - enterprise: *835 - installation: *836 - member: *862 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + member: *865 + organization: *840 + repository: *841 scope: description: The scope of the membership. Currently, can only be `team`. @@ -171319,7 +171566,7 @@ webhooks: required: - login - id - team: *872 + team: *875 required: - action - scope @@ -171401,8 +171648,8 @@ webhooks: type: string enum: - checks_requested - installation: *836 - merge_group: &873 + installation: *839 + merge_group: &876 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -171421,15 +171668,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *516 + head_commit: *519 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -171515,10 +171762,10 @@ webhooks: - merged - invalidated - dequeued - installation: *836 - merge_group: *873 - organization: *837 - repository: *838 + installation: *839 + merge_group: *876 + organization: *840 + repository: *841 sender: *4 required: - action @@ -171591,7 +171838,7 @@ webhooks: type: string enum: - deleted - enterprise: *835 + enterprise: *838 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -171700,12 +171947,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *836 - organization: *837 + installation: *839 + organization: *840 repository: anyOf: - type: 'null' - - *838 + - *841 sender: *4 required: - action @@ -171785,11 +172032,11 @@ webhooks: type: string enum: - closed - enterprise: *835 - installation: *836 - milestone: *867 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + milestone: *870 + organization: *840 + repository: *841 sender: *4 required: - action @@ -171868,9 +172115,9 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - milestone: &874 + enterprise: *838 + installation: *839 + milestone: &877 title: Milestone description: A collection of related issues and pull requests. type: object @@ -172012,8 +172259,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172092,11 +172339,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - milestone: *867 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + milestone: *870 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172206,11 +172453,11 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - milestone: *867 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + milestone: *870 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172290,11 +172537,11 @@ webhooks: type: string enum: - opened - enterprise: *835 - installation: *836 - milestone: *874 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + milestone: *877 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172373,11 +172620,11 @@ webhooks: type: string enum: - blocked - blocked_user: *862 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + blocked_user: *865 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172456,11 +172703,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *862 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + blocked_user: *865 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -172535,8 +172782,8 @@ webhooks: type: string enum: - created - definition: *145 - enterprise: *835 + definition: *147 + enterprise: *838 sender: *4 required: - action @@ -172616,8 +172863,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 sender: *4 required: - action @@ -172689,9 +172936,9 @@ webhooks: type: string enum: - updated - definition: *145 - enterprise: *835 - installation: *836 + definition: *147 + enterprise: *838 + installation: *839 sender: *4 required: - action @@ -172763,18 +173010,18 @@ webhooks: type: string enum: - updated - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 new_property_values: type: array description: The new custom property values. - items: *150 + items: *152 old_property_values: type: array description: The old custom property values. - items: *150 + items: *152 required: - action - organization @@ -172853,9 +173100,9 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - membership: &875 + enterprise: *838 + installation: *839 + membership: &878 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -172965,8 +173212,8 @@ webhooks: - role - organization_url - user - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 required: - action @@ -173044,11 +173291,11 @@ webhooks: type: string enum: - member_added - enterprise: *835 - installation: *836 - membership: *875 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + membership: *878 + organization: *840 + repository: *841 sender: *4 required: - action @@ -173127,8 +173374,8 @@ webhooks: type: string enum: - member_invited - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -173250,10 +173497,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 - user: *862 + user: *865 required: - action - invitation @@ -173331,11 +173578,11 @@ webhooks: type: string enum: - member_removed - enterprise: *835 - installation: *836 - membership: *875 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + membership: *878 + organization: *840 + repository: *841 sender: *4 required: - action @@ -173422,11 +173669,11 @@ webhooks: properties: from: type: string - enterprise: *835 - installation: *836 - membership: *875 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + membership: *878 + organization: *840 + repository: *841 sender: *4 required: - action @@ -173504,9 +173751,9 @@ webhooks: type: string enum: - published - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 package: description: Information about the package. type: object @@ -174029,7 +174276,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &876 + items: &879 title: Ruby Gems metadata type: object properties: @@ -174126,7 +174373,7 @@ webhooks: - owner - package_version - registry - repository: *838 + repository: *841 sender: *4 required: - action @@ -174203,9 +174450,9 @@ webhooks: type: string enum: - updated - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 package: description: Information about the package. type: object @@ -174567,7 +174814,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *876 + items: *879 source_url: type: string format: uri @@ -174638,7 +174885,7 @@ webhooks: - owner - package_version - registry - repository: *838 + repository: *841 sender: *4 required: - action @@ -174818,12 +175065,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *835 + enterprise: *838 id: type: integer - installation: *836 - organization: *837 - repository: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - id @@ -174900,7 +175147,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &877 + personal_access_token_request: &880 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -175050,10 +175297,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *835 - organization: *837 + enterprise: *838 + organization: *840 sender: *4 - installation: *836 + installation: *839 required: - action - personal_access_token_request @@ -175130,11 +175377,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *877 - enterprise: *835 - organization: *837 + personal_access_token_request: *880 + enterprise: *838 + organization: *840 sender: *4 - installation: *836 + installation: *839 required: - action - personal_access_token_request @@ -175210,11 +175457,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *877 - enterprise: *835 - organization: *837 + personal_access_token_request: *880 + enterprise: *838 + organization: *840 sender: *4 - installation: *836 + installation: *839 required: - action - personal_access_token_request @@ -175289,11 +175536,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *877 - organization: *837 - enterprise: *835 + personal_access_token_request: *880 + organization: *840 + enterprise: *838 sender: *4 - installation: *836 + installation: *839 required: - action - personal_access_token_request @@ -175398,7 +175645,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *878 + last_response: *881 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -175430,8 +175677,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 zen: description: Random string of GitHub zen. @@ -175676,10 +175923,10 @@ webhooks: - from required: - note - enterprise: *835 - installation: *836 - organization: *837 - project_card: &879 + enterprise: *838 + installation: *839 + organization: *840 + project_card: &882 title: Project Card type: object properties: @@ -175802,7 +176049,7 @@ webhooks: - creator - created_at - updated_at - repository: *838 + repository: *841 sender: *4 required: - action @@ -175883,11 +176130,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - project_card: *879 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project_card: *882 + repository: *841 sender: *4 required: - action @@ -175967,9 +176214,9 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 project_card: title: Project Card type: object @@ -176099,7 +176346,7 @@ webhooks: repository: anyOf: - type: 'null' - - *838 + - *841 sender: *4 required: - action @@ -176193,11 +176440,11 @@ webhooks: - from required: - note - enterprise: *835 - installation: *836 - organization: *837 - project_card: *879 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project_card: *882 + repository: *841 sender: *4 required: - action @@ -176291,9 +176538,9 @@ webhooks: - from required: - column_id - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 project_card: allOf: - title: Project Card @@ -176490,7 +176737,7 @@ webhooks: type: string required: - after_id - repository: *838 + repository: *841 sender: *4 required: - action @@ -176570,10 +176817,10 @@ webhooks: type: string enum: - closed - enterprise: *835 - installation: *836 - organization: *837 - project: &881 + enterprise: *838 + installation: *839 + organization: *840 + project: &884 title: Project type: object properties: @@ -176700,7 +176947,7 @@ webhooks: - creator - created_at - updated_at - repository: *838 + repository: *841 sender: *4 required: - action @@ -176780,10 +177027,10 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - project_column: &880 + enterprise: *838 + installation: *839 + organization: *840 + project_column: &883 title: Project Column type: object properties: @@ -176823,7 +177070,7 @@ webhooks: - name - created_at - updated_at - repository: *838 + repository: *841 sender: *4 required: - action @@ -176902,14 +177149,14 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - project_column: *880 + enterprise: *838 + installation: *839 + organization: *840 + project_column: *883 repository: anyOf: - type: 'null' - - *838 + - *841 sender: *4 required: - action @@ -176998,11 +177245,11 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - organization: *837 - project_column: *880 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project_column: *883 + repository: *841 sender: *4 required: - action @@ -177082,11 +177329,11 @@ webhooks: type: string enum: - moved - enterprise: *835 - installation: *836 - organization: *837 - project_column: *880 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project_column: *883 + repository: *841 sender: *4 required: - action @@ -177166,11 +177413,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - project: *881 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project: *884 + repository: *841 sender: *4 required: - action @@ -177250,14 +177497,14 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - project: *881 + enterprise: *838 + installation: *839 + organization: *840 + project: *884 repository: anyOf: - type: 'null' - - *838 + - *841 sender: *4 required: - action @@ -177358,11 +177605,11 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - organization: *837 - project: *881 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project: *884 + repository: *841 sender: *4 required: - action @@ -177441,11 +177688,11 @@ webhooks: type: string enum: - reopened - enterprise: *835 - installation: *836 - organization: *837 - project: *881 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + project: *884 + repository: *841 sender: *4 required: - action @@ -177526,9 +177773,9 @@ webhooks: type: string enum: - closed - installation: *836 - organization: *837 - projects_v2: *398 + installation: *839 + organization: *840 + projects_v2: *401 sender: *4 required: - action @@ -177609,9 +177856,9 @@ webhooks: type: string enum: - created - installation: *836 - organization: *837 - projects_v2: *398 + installation: *839 + organization: *840 + projects_v2: *401 sender: *4 required: - action @@ -177692,9 +177939,9 @@ webhooks: type: string enum: - deleted - installation: *836 - organization: *837 - projects_v2: *398 + installation: *839 + organization: *840 + projects_v2: *401 sender: *4 required: - action @@ -177815,9 +178062,9 @@ webhooks: type: string to: type: string - installation: *836 - organization: *837 - projects_v2: *398 + installation: *839 + organization: *840 + projects_v2: *401 sender: *4 required: - action @@ -177900,7 +178147,7 @@ webhooks: type: string enum: - archived - changes: &885 + changes: &888 type: object properties: archived_at: @@ -177916,9 +178163,9 @@ webhooks: - string - 'null' format: date-time - installation: *836 - organization: *837 - projects_v2_item: &882 + installation: *839 + organization: *840 + projects_v2_item: &885 title: Projects v2 Item description: An item belonging to a project type: object @@ -177936,7 +178183,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *404 + content_type: *407 creator: *4 created_at: type: string @@ -178058,9 +178305,9 @@ webhooks: - 'null' to: type: string - installation: *836 - organization: *837 - projects_v2_item: *882 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178142,9 +178389,9 @@ webhooks: type: string enum: - created - installation: *836 - organization: *837 - projects_v2_item: *882 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178225,9 +178472,9 @@ webhooks: type: string enum: - deleted - installation: *836 - organization: *837 - projects_v2_item: *882 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178332,7 +178579,7 @@ webhooks: oneOf: - type: string - type: integer - - &883 + - &886 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -178356,7 +178603,7 @@ webhooks: required: - id - name - - &884 + - &887 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -178396,8 +178643,8 @@ webhooks: oneOf: - type: string - type: integer - - *883 - - *884 + - *886 + - *887 type: - 'null' - string @@ -178420,9 +178667,9 @@ webhooks: - 'null' required: - body - installation: *836 - organization: *837 - projects_v2_item: *882 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178519,9 +178766,9 @@ webhooks: type: - string - 'null' - installation: *836 - organization: *837 - projects_v2_item: *882 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178604,10 +178851,10 @@ webhooks: type: string enum: - restored - changes: *885 - installation: *836 - organization: *837 - projects_v2_item: *882 + changes: *888 + installation: *839 + organization: *840 + projects_v2_item: *885 sender: *4 required: - action @@ -178689,9 +178936,9 @@ webhooks: type: string enum: - reopened - installation: *836 - organization: *837 - projects_v2: *398 + installation: *839 + organization: *840 + projects_v2: *401 sender: *4 required: - action @@ -178772,9 +179019,9 @@ webhooks: type: string enum: - created - installation: *836 - organization: *837 - projects_v2_status_update: *886 + installation: *839 + organization: *840 + projects_v2_status_update: *889 sender: *4 required: - action @@ -178855,9 +179102,9 @@ webhooks: type: string enum: - deleted - installation: *836 - organization: *837 - projects_v2_status_update: *886 + installation: *839 + organization: *840 + projects_v2_status_update: *889 sender: *4 required: - action @@ -179003,9 +179250,9 @@ webhooks: - string - 'null' format: date - installation: *836 - organization: *837 - projects_v2_status_update: *886 + installation: *839 + organization: *840 + projects_v2_status_update: *889 sender: *4 required: - action @@ -179076,10 +179323,10 @@ webhooks: title: public event type: object properties: - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - repository @@ -179156,13 +179403,13 @@ webhooks: type: string enum: - assigned - assignee: *862 - enterprise: *835 - installation: *836 - number: &887 + assignee: *865 + enterprise: *838 + installation: *839 + number: &890 description: The pull request number. type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -181522,7 +181769,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -181604,11 +181851,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -183961,7 +184208,7 @@ webhooks: - draft reason: type: string - repository: *838 + repository: *841 sender: *4 required: - action @@ -184043,11 +184290,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -186400,7 +186647,7 @@ webhooks: - draft reason: type: string - repository: *838 + repository: *841 sender: *4 required: - action @@ -186482,13 +186729,13 @@ webhooks: type: string enum: - closed - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: &888 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: &891 allOf: - - *683 + - *686 - type: object properties: allow_auto_merge: @@ -186550,7 +186797,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *838 + repository: *841 sender: *4 required: - action @@ -186631,12 +186878,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: *888 - repository: *838 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: *891 + repository: *841 sender: *4 required: - action @@ -186716,11 +186963,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *835 - milestone: *401 - number: *887 - organization: *837 - pull_request: &889 + enterprise: *838 + milestone: *404 + number: *890 + organization: *840 + pull_request: &892 title: Pull Request type: object properties: @@ -189072,7 +189319,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -189151,11 +189398,11 @@ webhooks: type: string enum: - dequeued - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -191526,7 +191773,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *838 + repository: *841 sender: *4 required: - action @@ -191650,12 +191897,12 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: *888 - repository: *838 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: *891 + repository: *841 sender: *4 required: - action @@ -191735,11 +191982,11 @@ webhooks: type: string enum: - enqueued - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -194095,7 +194342,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -194175,11 +194422,11 @@ webhooks: type: string enum: - labeled - enterprise: *835 - installation: *836 - label: *856 - number: *887 - organization: *837 + enterprise: *838 + installation: *839 + label: *859 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -196538,7 +196785,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -196619,10 +196866,10 @@ webhooks: type: string enum: - locked - enterprise: *835 - installation: *836 - number: *887 - organization: *837 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -198979,7 +199226,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -199059,12 +199306,12 @@ webhooks: type: string enum: - milestoned - enterprise: *835 - milestone: *401 - number: *887 - organization: *837 - pull_request: *889 - repository: *838 + enterprise: *838 + milestone: *404 + number: *890 + organization: *840 + pull_request: *892 + repository: *841 sender: *4 required: - action @@ -199143,12 +199390,12 @@ webhooks: type: string enum: - opened - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: *888 - repository: *838 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: *891 + repository: *841 sender: *4 required: - action @@ -199229,12 +199476,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: *888 - repository: *838 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: *891 + repository: *841 sender: *4 required: - action @@ -199314,12 +199561,12 @@ webhooks: type: string enum: - reopened - enterprise: *835 - installation: *836 - number: *887 - organization: *837 - pull_request: *888 - repository: *838 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 + pull_request: *891 + repository: *841 sender: *4 required: - action @@ -199694,9 +199941,9 @@ webhooks: - start_side - side - reactions - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: type: object properties: @@ -201937,7 +202184,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *838 + repository: *841 sender: *4 required: - action @@ -202017,7 +202264,7 @@ webhooks: type: string enum: - deleted - comment: &891 + comment: &894 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. @@ -202310,9 +202557,9 @@ webhooks: - start_side - side - reactions - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: type: object properties: @@ -204541,7 +204788,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *838 + repository: *841 sender: *4 required: - action @@ -204621,11 +204868,11 @@ webhooks: type: string enum: - edited - changes: *890 - comment: *891 - enterprise: *835 - installation: *836 - organization: *837 + changes: *893 + comment: *894 + enterprise: *838 + installation: *839 + organization: *840 pull_request: type: object properties: @@ -206857,7 +207104,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *838 + repository: *841 sender: *4 required: - action @@ -206938,9 +207185,9 @@ webhooks: type: string enum: - dismissed - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: title: Simple Pull Request type: object @@ -209184,7 +209431,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *838 + repository: *841 review: description: The review that was affected. type: object @@ -209435,9 +209682,9 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: title: Simple Pull Request type: object @@ -211546,8 +211793,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *838 - review: &892 + repository: *841 + review: &895 description: The review that was affected. type: object properties: @@ -211785,12 +212032,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: description: The pull request number. type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -214148,7 +214395,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 requested_reviewer: title: User type: @@ -214234,12 +214481,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: description: The pull request number. type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -216604,7 +216851,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 requested_team: title: Team description: Groups of organization members that gives permissions @@ -216799,12 +217046,12 @@ webhooks: type: string enum: - review_requested - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: description: The pull request number. type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -219164,7 +219411,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 requested_reviewer: title: User type: @@ -219251,12 +219498,12 @@ webhooks: type: string enum: - review_requested - enterprise: *835 - installation: *836 + enterprise: *838 + installation: *839 number: description: The pull request number. type: integer - organization: *837 + organization: *840 pull_request: title: Pull Request type: object @@ -221607,7 +221854,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 requested_team: title: Team description: Groups of organization members that gives permissions @@ -221791,9 +222038,9 @@ webhooks: type: string enum: - submitted - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: title: Simple Pull Request type: object @@ -224040,8 +224287,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *838 - review: *892 + repository: *841 + review: *895 sender: *4 required: - action @@ -224121,9 +224368,9 @@ webhooks: type: string enum: - resolved - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: title: Simple Pull Request type: object @@ -226279,7 +226526,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *838 + repository: *841 sender: *4 thread: type: object @@ -226676,9 +226923,9 @@ webhooks: type: string enum: - unresolved - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 pull_request: title: Simple Pull Request type: object @@ -228817,7 +229064,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *838 + repository: *841 sender: *4 thread: type: object @@ -229216,10 +229463,10 @@ webhooks: type: string before: type: string - enterprise: *835 - installation: *836 - number: *887 - organization: *837 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -231565,7 +231812,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -231647,11 +231894,11 @@ webhooks: type: string enum: - unassigned - assignee: *893 - enterprise: *835 - installation: *836 - number: *887 - organization: *837 + assignee: *896 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -234012,7 +234259,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -234091,11 +234338,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *835 - installation: *836 - label: *856 - number: *887 - organization: *837 + enterprise: *838 + installation: *839 + label: *859 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -236445,7 +236692,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -236526,10 +236773,10 @@ webhooks: type: string enum: - unlocked - enterprise: *835 - installation: *836 - number: *887 - organization: *837 + enterprise: *838 + installation: *839 + number: *890 + organization: *840 pull_request: title: Pull Request type: object @@ -238869,7 +239116,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *838 + repository: *841 sender: *4 required: - action @@ -239072,7 +239319,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *835 + enterprise: *838 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -239167,8 +239414,8 @@ webhooks: - url - author - committer - installation: *836 - organization: *837 + installation: *839 + organization: *840 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -239771,9 +240018,9 @@ webhooks: type: string enum: - published - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 registry_package: type: object properties: @@ -240250,7 +240497,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *876 + items: *879 summary: type: string tag_name: @@ -240306,7 +240553,7 @@ webhooks: - owner - package_version - registry - repository: *838 + repository: *841 sender: *4 required: - action @@ -240384,9 +240631,9 @@ webhooks: type: string enum: - updated - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 registry_package: type: object properties: @@ -240698,7 +240945,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *876 + items: *879 summary: type: string tag_name: @@ -240748,7 +240995,7 @@ webhooks: - owner - package_version - registry - repository: *838 + repository: *841 sender: *4 required: - action @@ -240825,10 +241072,10 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - release: &894 + enterprise: *838 + installation: *839 + organization: *840 + release: &897 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -241159,7 +241406,7 @@ webhooks: - updated_at - zipball_url - body - repository: *838 + repository: *841 sender: *4 required: - action @@ -241236,11 +241483,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - release: *894 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + release: *897 + repository: *841 sender: *4 required: - action @@ -241357,11 +241604,11 @@ webhooks: type: boolean required: - to - enterprise: *835 - installation: *836 - organization: *837 - release: *894 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + release: *897 + repository: *841 sender: *4 required: - action @@ -241439,9 +241686,9 @@ webhooks: type: string enum: - prereleased - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -241777,7 +242024,7 @@ webhooks: - string - 'null' format: uri - repository: *838 + repository: *841 sender: *4 required: - action @@ -241853,10 +242100,10 @@ webhooks: type: string enum: - published - enterprise: *835 - installation: *836 - organization: *837 - release: &895 + enterprise: *838 + installation: *839 + organization: *840 + release: &898 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -242189,7 +242436,7 @@ webhooks: - string - 'null' format: uri - repository: *838 + repository: *841 sender: *4 required: - action @@ -242265,11 +242512,11 @@ webhooks: type: string enum: - released - enterprise: *835 - installation: *836 - organization: *837 - release: *894 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + release: *897 + repository: *841 sender: *4 required: - action @@ -242345,11 +242592,11 @@ webhooks: type: string enum: - unpublished - enterprise: *835 - installation: *836 - organization: *837 - release: *895 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + release: *898 + repository: *841 sender: *4 required: - action @@ -242425,11 +242672,11 @@ webhooks: type: string enum: - published - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - repository_advisory: *735 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + repository_advisory: *738 sender: *4 required: - action @@ -242505,11 +242752,11 @@ webhooks: type: string enum: - reported - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - repository_advisory: *735 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + repository_advisory: *738 sender: *4 required: - action @@ -242585,10 +242832,10 @@ webhooks: type: string enum: - archived - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -242665,10 +242912,10 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -242746,10 +242993,10 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -242834,10 +243081,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -242952,10 +243199,10 @@ webhooks: - 'null' items: type: string - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243027,10 +243274,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 status: type: string @@ -243111,10 +243358,10 @@ webhooks: type: string enum: - privatized - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243191,10 +243438,10 @@ webhooks: type: string enum: - publicized - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243288,10 +243535,10 @@ webhooks: - name required: - repository - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243371,11 +243618,11 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - repository_ruleset: *185 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + repository_ruleset: *187 sender: *4 required: - action @@ -243453,11 +243700,11 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - repository_ruleset: *185 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + repository_ruleset: *187 sender: *4 required: - action @@ -243535,11 +243782,11 @@ webhooks: type: string enum: - edited - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - repository_ruleset: *185 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + repository_ruleset: *187 changes: type: object properties: @@ -243558,16 +243805,16 @@ webhooks: properties: added: type: array - items: *156 + items: *158 deleted: type: array - items: *156 + items: *158 updated: type: array items: type: object properties: - condition: *156 + condition: *158 changes: type: object properties: @@ -243600,16 +243847,16 @@ webhooks: properties: added: type: array - items: *703 + items: *706 deleted: type: array - items: *703 + items: *706 updated: type: array items: type: object properties: - rule: *703 + rule: *706 changes: type: object properties: @@ -243846,10 +244093,10 @@ webhooks: - from required: - owner - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -243927,10 +244174,10 @@ webhooks: type: string enum: - unarchived - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244008,7 +244255,7 @@ webhooks: type: string enum: - create - alert: &896 + alert: &899 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -244133,10 +244380,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244346,10 +244593,10 @@ webhooks: type: string enum: - dismissed - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244427,11 +244674,11 @@ webhooks: type: string enum: - reopen - alert: *896 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *899 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244633,10 +244880,10 @@ webhooks: enum: - fixed - open - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244714,17 +244961,17 @@ webhooks: type: string enum: - assigned - alert: &897 + alert: &900 type: object properties: - number: *124 - created_at: *131 + number: *126 + created_at: *133 updated_at: anyOf: - type: 'null' - - *132 - url: *129 - html_url: *130 + - *134 + url: *131 + html_url: *132 locations_url: type: string format: uri @@ -244829,10 +245076,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244910,11 +245157,11 @@ webhooks: type: string enum: - created - alert: *897 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *900 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -244995,11 +245242,11 @@ webhooks: type: string enum: - created - alert: *897 - installation: *836 - location: *898 - organization: *837 - repository: *838 + alert: *900 + installation: *839 + location: *901 + organization: *840 + repository: *841 sender: *4 required: - location @@ -245237,11 +245484,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *897 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *900 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245319,11 +245566,11 @@ webhooks: type: string enum: - reopened - alert: *897 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *900 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245401,11 +245648,11 @@ webhooks: type: string enum: - resolved - alert: *897 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *900 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245483,12 +245730,12 @@ webhooks: type: string enum: - unassigned - alert: *897 + alert: *900 assignee: *4 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245566,11 +245813,11 @@ webhooks: type: string enum: - validated - alert: *897 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + alert: *900 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -245700,10 +245947,10 @@ webhooks: - organization - enterprise - - repository: *838 - enterprise: *835 - installation: *836 - organization: *837 + repository: *841 + enterprise: *838 + installation: *839 + organization: *840 sender: *4 required: - action @@ -245781,16 +246028,16 @@ webhooks: type: string enum: - published - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - security_advisory: &899 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + security_advisory: &902 description: The details of the security advisory, including summary, description, and severity. type: object properties: - cvss_severities: *126 + cvss_severities: *128 cwes: type: array items: @@ -245958,11 +246205,11 @@ webhooks: type: string enum: - updated - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 - security_advisory: *899 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 + security_advisory: *902 sender: *4 required: - action @@ -246035,16 +246282,16 @@ webhooks: type: string enum: - withdrawn - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 security_advisory: description: The details of the security advisory, including summary, description, and severity. type: object properties: - cvss_severities: *126 + cvss_severities: *128 cwes: type: array items: @@ -246211,11 +246458,11 @@ webhooks: from: type: object properties: - security_and_analysis: *412 - enterprise: *835 - installation: *836 - organization: *837 - repository: *454 + security_and_analysis: *415 + enterprise: *838 + installation: *839 + organization: *840 + repository: *457 sender: *4 required: - changes @@ -246293,12 +246540,12 @@ webhooks: type: string enum: - cancelled - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: &900 + sponsorship: &903 type: object properties: created_at: @@ -246603,12 +246850,12 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: *900 + sponsorship: *903 required: - action - sponsorship @@ -246696,12 +246943,12 @@ webhooks: type: string required: - from - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: *900 + sponsorship: *903 required: - action - changes @@ -246778,17 +247025,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &901 + effective_date: &904 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: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: *900 + sponsorship: *903 required: - action - sponsorship @@ -246862,7 +247109,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &902 + changes: &905 type: object properties: tier: @@ -246906,13 +247153,13 @@ webhooks: - from required: - tier - effective_date: *901 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + effective_date: *904 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: *900 + sponsorship: *903 required: - action - changes @@ -246989,13 +247236,13 @@ webhooks: type: string enum: - tier_changed - changes: *902 - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + changes: *905 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - sponsorship: *900 + sponsorship: *903 required: - action - changes @@ -247069,10 +247316,10 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -247156,10 +247403,10 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -247593,15 +247840,15 @@ webhooks: type: - string - 'null' - enterprise: *835 + enterprise: *838 id: description: The unique identifier of the status. type: integer - installation: *836 + installation: *839 name: type: string - organization: *837 - repository: *838 + organization: *840 + repository: *841 sender: *4 sha: description: The Commit SHA. @@ -247711,15 +247958,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *217 - parent_issue_repo: *76 + parent_issue: *219 + parent_issue_repo: *78 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *217 - installation: *836 - organization: *837 - repository: *838 + sub_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -247803,15 +248050,15 @@ webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *217 - parent_issue_repo: *76 + parent_issue: *219 + parent_issue_repo: *78 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *217 - installation: *836 - organization: *837 - repository: *838 + sub_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -247895,15 +248142,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *217 - sub_issue_repo: *76 + sub_issue: *219 + sub_issue_repo: *78 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *217 - installation: *836 - organization: *837 - repository: *838 + parent_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -247987,15 +248234,15 @@ webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *217 - sub_issue_repo: *76 + sub_issue: *219 + sub_issue_repo: *78 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *217 - installation: *836 - organization: *837 - repository: *838 + parent_issue: *219 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -248072,12 +248319,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 - team: &903 + team: &906 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -248307,9 +248554,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 repository: title: Repository description: A git repository @@ -248779,7 +249026,7 @@ webhooks: - topics - visibility sender: *4 - team: *903 + team: *906 required: - action - team @@ -248855,9 +249102,9 @@ webhooks: type: string enum: - created - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 repository: title: Repository description: A git repository @@ -249327,7 +249574,7 @@ webhooks: - topics - visibility sender: *4 - team: *903 + team: *906 required: - action - team @@ -249404,9 +249651,9 @@ webhooks: type: string enum: - deleted - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 repository: title: Repository description: A git repository @@ -249876,7 +250123,7 @@ webhooks: - topics - visibility sender: *4 - team: *903 + team: *906 required: - action - team @@ -250020,9 +250267,9 @@ webhooks: - from required: - permissions - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 repository: title: Repository description: A git repository @@ -250492,7 +250739,7 @@ webhooks: - topics - visibility sender: *4 - team: *903 + team: *906 required: - action - changes @@ -250570,9 +250817,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *835 - installation: *836 - organization: *837 + enterprise: *838 + installation: *839 + organization: *840 repository: title: Repository description: A git repository @@ -251042,7 +251289,7 @@ webhooks: - topics - visibility sender: *4 - team: *903 + team: *906 required: - action - team @@ -251118,10 +251365,10 @@ webhooks: type: string enum: - started - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 required: - action @@ -251194,17 +251441,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *835 + enterprise: *838 inputs: type: - object - 'null' additionalProperties: true - installation: *836 - organization: *837 + installation: *839 + organization: *840 ref: type: string - repository: *838 + repository: *841 sender: *4 workflow: type: string @@ -251286,10 +251533,10 @@ webhooks: type: string enum: - completed - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 workflow_job: allOf: @@ -251545,7 +251792,7 @@ webhooks: type: string required: - conclusion - deployment: *588 + deployment: *591 required: - action - repository @@ -251624,10 +251871,10 @@ webhooks: type: string enum: - in_progress - enterprise: *835 - installation: *836 - organization: *837 - repository: *838 + enterprise: *838 + installation: *839 + organization: *840 + repository: *841 sender: *4 workflow_job: allOf: @@ -251909,7 +252156,7 @@ webhooks: required: - status - steps - deployment: *588 + deployment: *591 required: - action - repository @@ -251988,10 +252235,10 @@ webhooks: type: string enum: - queued - enterprise: *835 - installation: *836 - {"code":"deadline_exceeded","msg":"operation timed out"}