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" + {"code":"deadline_exceeded","msg":"operation timed out"}