diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 8495e1ce6..9678f82ca 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -2353,6 +2353,178 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -9889,6 +10061,173 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", @@ -104588,6 +104927,44 @@ } } }, + "oidc-custom-property-inclusion": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "oidc-custom-property-inclusion-input": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, "code-security-configuration": { "type": "object", "description": "A code security configuration", @@ -285882,6 +286259,11 @@ "max_cache_size_gb": 150 } }, + "oidc-custom-property-inclusion": { + "value": { + "custom_property_name": "environment" + } + }, "enterprise-code-security-configuration-list": { "value": [ { diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index 60108162a..6c4fe7690 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -1641,6 +1641,125 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7073,6 +7192,120 @@ paths: enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - property_name: environment + - property_name: team + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -75759,6 +75992,36 @@ components: size limit for the sum of all caches in a repository, in gigabytes. type: integer example: 10 + oidc-custom-property-inclusion: + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included in the OIDC + token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization or enterprise + level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + oidc-custom-property-inclusion-input: + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC token + required: + - custom_property_name code-security-configuration: type: object description: A code security configuration @@ -213791,6 +214054,9 @@ components: actions-cache-storage-limit: value: max_cache_size_gb: 150 + oidc-custom-property-inclusion: + value: + custom_property_name: environment enterprise-code-security-configuration-list: value: - id: 17 diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.json b/descriptions/api.github.com/api.github.com.2026-03-10.json index 570b71179..a73e98a97 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions/api.github.com/api.github.com.2026-03-10.json @@ -2353,6 +2353,178 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -9888,6 +10060,173 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", @@ -104412,6 +104751,44 @@ } } }, + "oidc-custom-property-inclusion": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "oidc-custom-property-inclusion-input": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, "code-security-configuration": { "type": "object", "description": "A code security configuration", @@ -285132,6 +285509,11 @@ "max_cache_size_gb": 150 } }, + "oidc-custom-property-inclusion": { + "value": { + "custom_property_name": "environment" + } + }, "enterprise-code-security-configuration-list": { "value": [ { diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.yaml b/descriptions/api.github.com/api.github.com.2026-03-10.yaml index d1cfaa4ce..242b672df 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions/api.github.com/api.github.com.2026-03-10.yaml @@ -1641,6 +1641,125 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7071,6 +7190,120 @@ paths: enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - property_name: environment + - property_name: team + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -75613,6 +75846,36 @@ components: size limit for the sum of all caches in a repository, in gigabytes. type: integer example: 10 + oidc-custom-property-inclusion: + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included in the OIDC + token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization or enterprise + level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + oidc-custom-property-inclusion-input: + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC token + required: + - custom_property_name code-security-configuration: type: object description: A code security configuration @@ -213118,6 +213381,9 @@ components: actions-cache-storage-limit: value: max_cache_size_gb: 150 + oidc-custom-property-inclusion: + value: + custom_property_name: environment enterprise-code-security-configuration-list: value: - id: 17 diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index def8ec836..8adfc7b92 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -2367,6 +2367,178 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "$ref": "#/components/parameters/enterprise" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -9935,6 +10107,173 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "403": { + "$ref": "#/components/responses/forbidden" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + }, + "examples": { + "default": { + "$ref": "#/components/examples/oidc-custom-property-inclusion" + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", @@ -105169,6 +105508,44 @@ } } }, + "oidc-custom-property-inclusion": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "oidc-custom-property-inclusion-input": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, "code-security-configuration": { "type": "object", "description": "A code security configuration", @@ -287977,6 +288354,11 @@ "max_cache_size_gb": 150 } }, + "oidc-custom-property-inclusion": { + "value": { + "custom_property_name": "environment" + } + }, "enterprise-code-security-configuration-list": { "value": [ { diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index d970b204c..f8fa0f9c5 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -1649,6 +1649,125 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - "$ref": "#/components/parameters/enterprise" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7098,6 +7217,120 @@ paths: enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + value: + - property_name: environment + - property_name: team + '404': + "$ref": "#/components/responses/not_found" + '403': + "$ref": "#/components/responses/forbidden" + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion-input" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: + "$ref": "#/components/schemas/oidc-custom-property-inclusion" + examples: + default: + "$ref": "#/components/examples/oidc-custom-property-inclusion" + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': + "$ref": "#/components/responses/forbidden" + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -76135,6 +76368,36 @@ components: size limit for the sum of all caches in a repository, in gigabytes. type: integer example: 10 + oidc-custom-property-inclusion: + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included in the OIDC + token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization or enterprise + level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + oidc-custom-property-inclusion-input: + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC token + required: + - custom_property_name code-security-configuration: type: object description: A code security configuration @@ -215172,6 +215435,9 @@ components: actions-cache-storage-limit: value: max_cache_size_gb: 150 + oidc-custom-property-inclusion: + value: + custom_property_name: environment enterprise-code-security-configuration-list: value: - id: 17 diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 8ccb36081..20ce44113 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -17188,6 +17188,345 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -76598,6 +76937,340 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 2372edac6..1e88d4628 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -438,7 +438,7 @@ paths: The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs. schema: type: string - - &45 + - &47 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For @@ -447,7 +447,7 @@ paths: required: false schema: type: string - - &46 + - &48 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For @@ -456,7 +456,7 @@ paths: required: false schema: type: string - - &53 + - &55 name: direction description: The direction to sort the results by. in: query @@ -677,7 +677,7 @@ paths: required: - vector_string - score - cvss_severities: &55 + cvss_severities: &57 type: object nullable: true properties: @@ -717,7 +717,7 @@ paths: required: - vector_string - score - epss: &56 + epss: &58 type: object nullable: true readOnly: true @@ -855,7 +855,7 @@ paths: - subscriptions_url - type - url - type: &320 + type: &323 type: string description: The type of credit the user is receiving. enum: @@ -988,7 +988,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &123 + schema: &125 title: Validation Error Simple description: Validation Error Simple type: object @@ -1021,7 +1021,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &648 + - &651 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1139,7 +1139,7 @@ paths: GitHub. type: object nullable: true - properties: &72 + properties: &74 id: description: Unique identifier of the GitHub app example: 37 @@ -1272,7 +1272,7 @@ paths: about itself. example: 5 type: integer - required: &73 + required: &75 - id - node_id - owner @@ -1577,7 +1577,7 @@ paths: schema: type: integer default: 30 - - &207 + - &210 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1593,7 +1593,7 @@ paths: application/json: schema: type: array - items: &208 + items: &211 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1673,7 +1673,7 @@ paths: - installation_id - repository_id examples: - default: &209 + default: &212 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1732,7 +1732,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &122 + schema: &124 title: Validation Error description: Validation Error type: object @@ -1801,7 +1801,7 @@ paths: description: Response content: application/json: - schema: &210 + schema: &213 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1915,7 +1915,7 @@ paths: - request - response examples: - default: &211 + default: &214 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2116,7 +2116,7 @@ paths: parameters: - *17 - *19 - - &84 + - &86 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2691,7 +2691,7 @@ paths: suspended_at: suspended_by: headers: - Link: &59 + Link: &61 example: ; rel="next", ; rel="last" schema: @@ -2880,11 +2880,11 @@ paths: - selected repositories: type: array - items: &71 + items: &73 title: Repository description: A repository on GitHub. type: object - properties: &285 + properties: &288 id: description: Unique identifier of the repository example: 42 @@ -2904,7 +2904,7 @@ paths: title: License Simple description: License Simple type: object - properties: &80 + properties: &82 key: type: string example: mit @@ -2926,7 +2926,7 @@ paths: html_url: type: string format: uri - required: &81 + required: &83 - key - name - url @@ -3340,7 +3340,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &286 + required: &289 - archive_url - assignees_url - blobs_url @@ -5127,7 +5127,7 @@ paths: responses: '202': *39 '422': *7 - '500': &113 + '500': &115 description: Internal Error content: application/json: @@ -7200,6 +7200,147 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - *40 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &45 + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included + in the OIDC token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization + or enterprise level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: &137 + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC + token + required: + - custom_property_name + examples: + default: &46 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *45 + examples: + default: *46 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *40 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7225,8 +7366,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -7234,7 +7375,7 @@ paths: application/json: schema: type: array - items: &47 + items: &49 type: object description: A code security configuration properties: @@ -7624,7 +7765,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &51 + code_scanning_options: &53 type: object description: Security Configuration feature options for code scanning nullable: true @@ -7641,7 +7782,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &50 + code_scanning_default_setup_options: &52 type: object description: Feature options for code scanning default setup nullable: true @@ -7766,9 +7907,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *47 + schema: *49 examples: - default: &48 + default: &50 value: id: 1325 target_type: enterprise @@ -7826,7 +7967,7 @@ paths: description: Response content: application/json: - schema: &182 + schema: &185 type: array description: A list of default code security configurations items: @@ -7840,9 +7981,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *47 + configuration: *49 examples: - default: &183 + default: &186 value: - default_for_new_repos: public configuration: @@ -7931,7 +8072,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *40 - - &49 + - &51 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -7943,9 +8084,9 @@ paths: description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *48 + default: *50 '304': *37 '403': *29 '404': *6 @@ -7970,7 +8111,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8049,8 +8190,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *50 - code_scanning_options: *51 + code_scanning_default_setup_options: *52 + code_scanning_options: *53 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -8146,13 +8287,13 @@ paths: description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *48 + default: *50 '304': *37 '403': *29 '404': *6 - '409': &52 + '409': &54 description: Conflict content: application/json: @@ -8180,14 +8321,14 @@ paths: url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *40 - - *49 + - *51 responses: - '204': &184 + '204': &187 description: A header with no content is returned. '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -8212,7 +8353,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8239,7 +8380,7 @@ paths: '202': *39 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -8264,7 +8405,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8304,12 +8445,12 @@ paths: - none - private_and_internal - public - configuration: *47 + configuration: *49 examples: default: value: default_for_new_repos: all - configuration: &181 + configuration: &184 value: id: 1325 target_type: organization @@ -8366,7 +8507,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *40 - - *49 + - *51 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -8375,8 +8516,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -8394,7 +8535,7 @@ paths: application/json: schema: type: array - items: &185 + items: &188 type: object description: Repositories associated with a code security configuration and attachment status @@ -8412,11 +8553,11 @@ paths: - failed - updating - removed_by_enterprise - repository: &58 + repository: &60 title: Simple Repository description: A GitHub repository. type: object - properties: &111 + properties: &113 id: type: integer format: int64 @@ -8643,7 +8784,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &112 + required: &114 - archive_url - assignees_url - blobs_url @@ -8695,7 +8836,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &186 + repository: &189 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8789,7 +8930,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &191 + - &194 name: state in: query description: |- @@ -8798,7 +8939,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &192 + - &195 name: severity in: query description: |- @@ -8807,7 +8948,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &193 + - &196 name: ecosystem in: query description: |- @@ -8816,14 +8957,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &194 + - &197 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &195 + - &198 name: epss_percentage in: query description: |- @@ -8835,7 +8976,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &483 + - &486 name: has in: query description: |- @@ -8849,7 +8990,7 @@ paths: type: string enum: - patch - - &196 + - &199 name: assignee in: query description: |- @@ -8858,7 +8999,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &197 + - &200 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8868,7 +9009,7 @@ paths: enum: - development - runtime - - &198 + - &201 name: sort in: query description: |- @@ -8883,9 +9024,9 @@ paths: - updated - epss_percentage default: created - - *53 - - *45 - - *46 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -8894,11 +9035,11 @@ paths: application/json: schema: type: array - items: &199 + items: &202 type: object description: A Dependabot alert. properties: - number: &171 + number: &174 type: integer description: The security alert number. readOnly: true @@ -8916,7 +9057,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &54 + package: &56 type: object description: Details for the vulnerable package. readOnly: true @@ -8960,7 +9101,7 @@ paths: - unknown - direct - transitive - security_advisory: &484 + security_advisory: &487 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -8990,13 +9131,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &57 + items: &59 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *54 + package: *56 severity: type: string description: The severity of the vulnerability. @@ -9062,8 +9203,8 @@ paths: - score - vector_string additionalProperties: false - cvss_severities: *55 - epss: *56 + cvss_severities: *57 + epss: *58 cwes: type: array description: Details for the advisory pertaining to Common @@ -9162,30 +9303,30 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *57 - url: &174 + security_vulnerability: *59 + url: &177 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &175 + html_url: &178 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &172 + created_at: &175 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &173 + updated_at: &176 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &177 + dismissed_at: &180 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9215,21 +9356,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &176 + fixed_at: &179 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - auto_dismissed_at: &485 + auto_dismissed_at: &488 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &486 + dismissal_request: &489 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -9272,7 +9413,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *58 + repository: *60 required: - number - state @@ -9291,7 +9432,7 @@ paths: - repository additionalProperties: false examples: - default: &200 + default: &203 value: - number: 2 state: dismissed @@ -9660,7 +9801,7 @@ paths: application/json: schema: type: array - items: &60 + items: &62 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -9731,7 +9872,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -9804,9 +9945,9 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: &68 + default: &70 value: id: 1 name: Justice League @@ -9835,7 +9976,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *40 - - &61 + - &63 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -9854,7 +9995,7 @@ paths: type: array items: *4 examples: - default: &62 + default: &64 value: - login: octocat id: 1 @@ -9875,7 +10016,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9893,7 +10034,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -9924,7 +10065,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9942,7 +10083,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -9973,7 +10114,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9991,8 +10132,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *40 - - *61 - - &63 + - *63 + - &65 name: username description: The handle for the GitHub user account. in: path @@ -10006,7 +10147,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &64 + exampleKey1: &66 value: login: octocat id: 1 @@ -10042,8 +10183,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *40 - - *61 - *63 + - *65 responses: '201': description: Successfully added team member @@ -10051,7 +10192,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *64 + exampleKey1: *66 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10069,8 +10210,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *40 - - *61 - *63 + - *65 responses: '204': description: Response @@ -10092,7 +10233,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *40 - - *61 + - *63 - *17 - *19 responses: @@ -10102,11 +10243,11 @@ paths: application/json: schema: type: array - items: &65 + items: &67 title: Organization Simple description: A GitHub organization. type: object - properties: &188 + properties: &191 login: type: string example: github @@ -10147,7 +10288,7 @@ paths: type: string example: A great organization nullable: true - required: &189 + required: &192 - login - url - id @@ -10161,7 +10302,7 @@ paths: - avatar_url - description examples: - default: &66 + default: &68 value: login: github id: 1 @@ -10192,7 +10333,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10220,9 +10361,9 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: &108 + default: &110 value: - login: github id: 1 @@ -10253,7 +10394,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10294,8 +10435,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *40 - - *61 - - &67 + - *63 + - &69 name: org description: The organization name. The name is not case sensitive. in: path @@ -10307,9 +10448,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 '404': description: The team is not assigned to the organization x-github: @@ -10328,16 +10469,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *40 - - *61 - - *67 + - *63 + - *69 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10354,8 +10495,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *40 - - *61 - - *67 + - *63 + - *69 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -10379,7 +10520,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *40 - - &69 + - &71 name: team_slug description: The slug of the team name. in: path @@ -10391,11 +10532,11 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *68 + default: *70 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -10413,7 +10554,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *40 - - *69 + - *71 requestBody: required: true content: @@ -10468,11 +10609,11 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *68 + default: *70 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -10493,7 +10634,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *40 - - *69 + - *71 responses: '204': description: Response @@ -10531,7 +10672,7 @@ paths: application/json: schema: type: array - items: &103 + items: &105 title: Event description: Event type: object @@ -10541,7 +10682,7 @@ paths: type: type: string nullable: true - actor: &70 + actor: &72 title: Actor description: Actor type: object @@ -10581,7 +10722,7 @@ paths: - id - name - url - org: *70 + org: *72 payload: oneOf: - title: CreateEvent @@ -10627,7 +10768,7 @@ paths: properties: action: type: string - discussion: &743 + discussion: &746 title: Discussion description: A Discussion in a repository. type: object @@ -10914,7 +11055,7 @@ paths: - id labels: type: array - items: &76 + items: &78 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -10989,12 +11130,12 @@ paths: properties: action: type: string - issue: &77 + issue: &79 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &537 + properties: &540 id: type: integer format: int64 @@ -11107,7 +11248,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &269 + properties: &272 url: type: string format: uri @@ -11177,7 +11318,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &270 + required: &273 - closed_issues - creator - description @@ -11256,7 +11397,7 @@ paths: timeline_url: type: string format: uri - type: &232 + type: &235 title: Issue Type description: The type of issue. type: object @@ -11306,7 +11447,7 @@ paths: - node_id - name - description - repository: *71 + repository: *73 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -11317,9 +11458,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - author_association: &74 + properties: *74 + required: *75 + author_association: &76 title: author_association type: string example: OWNER @@ -11334,7 +11475,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &75 + reactions: &77 title: Reaction Rollup type: object properties: @@ -11370,7 +11511,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &660 + sub_issues_summary: &663 title: Sub-issues Summary type: object properties: @@ -11395,7 +11536,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &78 + properties: &80 id: description: Unique identifier of the issue comment example: 42 @@ -11438,7 +11579,7 @@ paths: issue_url: type: string format: uri - author_association: *74 + author_association: *76 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -11449,15 +11590,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - reactions: *75 + properties: *74 + required: *75 + reactions: *77 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &559 + properties: &562 pinned_at: type: string format: date-time @@ -11469,11 +11610,11 @@ paths: properties: *20 required: *21 nullable: true - required: &560 + required: &563 - pinned_at - pinned_by nullable: true - required: &79 + required: &81 - id - node_id - html_url @@ -11483,7 +11624,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &661 + issue_dependencies_summary: &664 title: Issue Dependencies Summary type: object properties: @@ -11502,7 +11643,7 @@ paths: - total_blocking issue_field_values: type: array - items: &544 + items: &547 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11563,7 +11704,7 @@ paths: - node_id - data_type - value - required: &538 + required: &541 - assignee - closed_at - comments @@ -11588,10 +11729,10 @@ paths: assignees: type: array items: *4 - label: *76 + label: *78 labels: type: array - items: *76 + items: *78 required: - action - issue @@ -11600,14 +11741,14 @@ paths: properties: action: type: string - issue: *77 - comment: &533 + issue: *79 + comment: &536 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 required: - action - issue @@ -11782,8 +11923,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true allow_forking: type: boolean @@ -11872,7 +12013,7 @@ paths: type: string number: type: integer - pull_request: &82 + pull_request: &84 title: Pull Request Minimal type: object properties: @@ -11943,10 +12084,10 @@ paths: assignees: type: array items: *4 - label: *76 + label: *78 labels: type: array - items: *76 + items: *78 required: - action - number @@ -11956,7 +12097,7 @@ paths: properties: action: type: string - pull_request: *82 + pull_request: *84 comment: type: object properties: @@ -12207,7 +12348,7 @@ paths: - pull_request updated_at: type: string - pull_request: *82 + pull_request: *84 required: - action - review @@ -12256,7 +12397,7 @@ paths: updated_at: type: string format: date-time - reactions: *75 + reactions: *77 required: - action - comment @@ -12267,7 +12408,7 @@ paths: type: string release: allOf: - - &593 + - &596 title: Release description: A release. type: object @@ -12338,7 +12479,7 @@ paths: author: *4 assets: type: array - items: &594 + items: &597 title: Release Asset description: Data related to a release. type: object @@ -12413,7 +12554,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *75 + reactions: *77 required: - assets_url - upload_url @@ -12505,7 +12646,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': &114 + '503': &116 description: Service unavailable content: application/json: @@ -12598,7 +12739,7 @@ paths: _links: type: object properties: - timeline: &83 + timeline: &85 title: Link With Type description: Hypermedia Link with Type type: object @@ -12610,17 +12751,17 @@ paths: required: - href - type - user: *83 - security_advisories: *83 - current_user: *83 - current_user_public: *83 - current_user_actor: *83 - current_user_organization: *83 + user: *85 + security_advisories: *85 + current_user: *85 + current_user_public: *85 + current_user_actor: *85 + current_user_organization: *85 current_user_organizations: type: array - items: *83 - repository_discussions: *83 - repository_discussions_category: *83 + items: *85 + repository_discussions: *85 + repository_discussions_category: *85 required: - timeline - user @@ -12682,7 +12823,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *84 + - *86 - *17 - *19 responses: @@ -12692,7 +12833,7 @@ paths: application/json: schema: type: array - items: &85 + items: &87 title: Base Gist description: Base Gist type: object @@ -12791,7 +12932,7 @@ paths: - created_at - updated_at examples: - default: &86 + default: &88 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -12836,7 +12977,7 @@ paths: site_admin: false truncated: false headers: - Link: *59 + Link: *61 '304': *37 '403': *29 x-github: @@ -12912,7 +13053,7 @@ paths: description: Response content: application/json: - schema: &87 + schema: &89 title: Gist Simple description: Gist Simple type: object @@ -12929,7 +13070,7 @@ paths: url: type: string format: uri - user: &667 + user: &670 title: Public User description: Public User type: object @@ -13291,7 +13432,7 @@ paths: truncated: type: boolean examples: - default: &88 + default: &90 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -13395,7 +13536,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *84 + - *86 - *17 - *19 responses: @@ -13405,11 +13546,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '403': *29 @@ -13429,7 +13570,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *84 + - *86 - *17 - *19 responses: @@ -13439,11 +13580,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '401': *25 '304': *37 '403': *29 @@ -13469,7 +13610,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &89 + - &91 name: gist_id description: The unique identifier of the gist. in: path @@ -13481,10 +13622,10 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - default: *88 - '403': &92 + default: *90 + '403': &94 description: Forbidden Gist content: application/json: @@ -13532,7 +13673,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *89 + - *91 requestBody: required: true content: @@ -13592,9 +13733,9 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - updateGist: *88 + updateGist: *90 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -13752,7 +13893,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -13781,7 +13922,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *89 + - *91 - *17 - *19 responses: @@ -13791,7 +13932,7 @@ paths: application/json: schema: type: array - items: &90 + items: &92 title: Gist Comment description: A comment made to a gist. type: object @@ -13826,7 +13967,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *74 + author_association: *76 required: - url - id @@ -13866,7 +14007,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -13891,7 +14032,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *89 + - *91 requestBody: required: true content: @@ -13916,9 +14057,9 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: &91 + default: &93 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -13976,8 +14117,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *89 - - &93 + - *91 + - &95 name: comment_id description: The unique identifier of the comment. in: path @@ -13990,12 +14131,12 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '304': *37 '404': *6 - '403': *92 + '403': *94 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -14017,8 +14158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *89 - - *93 + - *91 + - *95 requestBody: required: true content: @@ -14043,9 +14184,9 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '404': *6 x-github: githubCloudOnly: false @@ -14062,8 +14203,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *89 - - *93 + - *91 + - *95 responses: '204': description: Response @@ -14086,7 +14227,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *89 + - *91 - *17 - *19 responses: @@ -14187,7 +14328,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *89 + - *91 - *17 - *19 responses: @@ -14197,7 +14338,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -14243,7 +14384,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 '304': *37 '403': *29 @@ -14262,13 +14403,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *89 + - *91 responses: '201': description: Response content: application/json: - schema: *85 + schema: *87 examples: default: value: @@ -14339,7 +14480,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *89 + - *91 responses: '204': description: Response if gist is starred @@ -14369,7 +14510,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14391,7 +14532,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14420,7 +14561,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *89 + - *91 - name: sha in: path required: true @@ -14431,9 +14572,9 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - default: *88 + default: *90 '422': *15 '404': *6 '403': *29 @@ -14594,7 +14735,7 @@ paths: type: array items: allOf: - - *71 + - *73 repository_selection: type: string example: selected @@ -14717,7 +14858,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '403': *29 '304': *37 '401': *25 @@ -14801,7 +14942,7 @@ paths: - closed - all default: open - - &235 + - &238 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -14819,8 +14960,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - name: collab in: query required: false @@ -14850,9 +14991,9 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: &236 + default: &239 value: - id: 1 node_id: MDU6SXNzdWUx @@ -15097,7 +15238,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '404': *6 @@ -15136,8 +15277,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 examples: default: value: @@ -15422,7 +15563,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &94 + X-CommonMarker-Version: &96 example: 0.17.4 schema: type: string @@ -15477,7 +15618,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *94 + X-CommonMarker-Version: *96 content: text/html: schema: @@ -15506,7 +15647,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &97 + - &99 name: account_id description: account_id parameter in: path @@ -15518,7 +15659,7 @@ paths: description: Response content: application/json: - schema: &96 + schema: &98 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -15548,7 +15689,7 @@ paths: nullable: true id: type: integer - plan: &95 + plan: &97 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -15637,7 +15778,7 @@ paths: nullable: true updated_at: type: string - plan: *95 + plan: *97 required: - url - id @@ -15645,7 +15786,7 @@ paths: - login - marketplace_purchase examples: - default: &98 + default: &100 value: url: https://api.github.com/orgs/github type: Organization @@ -15730,9 +15871,9 @@ paths: application/json: schema: type: array - items: *95 + items: *97 examples: - default: &99 + default: &101 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -15750,7 +15891,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '404': *6 '401': *25 x-github: @@ -15772,14 +15913,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &100 + - &102 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &101 + - &103 name: sort description: The property to sort the results by. in: query @@ -15809,9 +15950,9 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: - default: &102 + default: &104 value: - url: https://api.github.com/orgs/github type: Organization @@ -15862,7 +16003,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '404': *6 '422': *15 '401': *25 @@ -15885,15 +16026,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *97 + - *99 responses: '200': description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *98 + default: *100 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -15925,11 +16066,11 @@ paths: application/json: schema: type: array - items: *95 + items: *97 examples: - default: *99 + default: *101 headers: - Link: *59 + Link: *61 '401': *25 x-github: githubCloudOnly: false @@ -15950,8 +16091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *100 - - *101 + - *102 + - *103 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -15971,11 +16112,11 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: - default: *102 + default: *104 headers: - Link: *59 + Link: *61 '401': *25 x-github: githubCloudOnly: false @@ -16237,14 +16378,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &332 + - &335 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &333 + - &336 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -16261,7 +16402,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -16306,7 +16447,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &336 + '301': &339 description: Moved permanently content: application/json: @@ -16328,7 +16469,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &569 + - &572 name: all description: If `true`, show notifications marked as read. in: query @@ -16336,7 +16477,7 @@ paths: schema: type: boolean default: false - - &570 + - &573 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16345,8 +16486,8 @@ paths: schema: type: boolean default: false - - *84 - - &571 + - *86 + - &574 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -16371,18 +16512,18 @@ paths: application/json: schema: type: array - items: &104 + items: &106 title: Thread description: Thread type: object properties: id: type: string - repository: &153 + repository: &156 title: Minimal Repository description: Minimal Repository type: object - properties: &202 + properties: &205 id: type: integer format: int64 @@ -16670,7 +16811,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &287 + security_and_analysis: &290 nullable: true type: object properties: @@ -16783,7 +16924,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &203 + required: &206 - archive_url - assignees_url - blobs_url @@ -16871,7 +17012,7 @@ paths: - url - subscription_url examples: - default: &572 + default: &575 value: - id: '1' repository: @@ -16953,7 +17094,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -17037,7 +17178,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &105 + - &107 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -17051,7 +17192,7 @@ paths: description: Response content: application/json: - schema: *104 + schema: *106 examples: default: value: @@ -17153,7 +17294,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *105 + - *107 responses: '205': description: Reset Content @@ -17175,7 +17316,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *105 + - *107 responses: '204': description: No content @@ -17198,13 +17339,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *105 + - *107 responses: '200': description: Response content: application/json: - schema: &106 + schema: &108 title: Thread Subscription description: Thread Subscription type: object @@ -17241,7 +17382,7 @@ paths: - url - subscribed examples: - default: &107 + default: &109 value: subscribed: true ignored: false @@ -17272,7 +17413,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *105 + - *107 requestBody: required: false content: @@ -17293,9 +17434,9 @@ paths: description: Response content: application/json: - schema: *106 + schema: *108 examples: - default: *107 + default: *109 '304': *37 '403': *29 '401': *25 @@ -17318,7 +17459,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *105 + - *107 responses: '204': description: Response @@ -17413,9 +17554,9 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: Link: example: ; rel="next" @@ -17442,13 +17583,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &109 + schema: &111 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -17481,12 +17622,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *109 + schema: *111 examples: selected_actions: *42 responses: @@ -17515,13 +17656,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &110 + schema: &112 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -17554,12 +17695,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *110 + schema: *112 examples: selected_actions: *44 responses: @@ -17588,7 +17729,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-organization parameters: - - *67 + - *69 - name: page in: query description: The page number of results to fetch. @@ -17632,8 +17773,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *111 - required: *112 + properties: *113 + required: *114 nullable: true additionalProperties: false examples: @@ -17739,7 +17880,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -17805,7 +17946,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *67 + - *69 requestBody: required: true content: @@ -17854,7 +17995,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *67 + - *69 - name: page description: The page number of the results to fetch. in: query @@ -18005,7 +18146,7 @@ paths: total_count: 3 '404': *6 '403': *29 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18026,8 +18167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *67 - - &115 + - *69 + - &117 name: budget_id description: The ID corresponding to the budget. in: path @@ -18123,8 +18264,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18144,8 +18285,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *67 - - *115 + - *69 + - *117 requestBody: required: true content: @@ -18336,8 +18477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *67 - - *115 + - *69 + - *117 responses: '200': description: Response when deleting a budget @@ -18363,8 +18504,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18384,8 +18525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *67 - - &116 + - *69 + - &118 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -18394,7 +18535,7 @@ paths: required: false schema: type: integer - - &118 + - &120 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current @@ -18403,7 +18544,7 @@ paths: required: false schema: type: integer - - &117 + - &119 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -18418,14 +18559,14 @@ paths: required: false schema: type: string - - &718 + - &721 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &119 + - &121 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18541,8 +18682,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18562,9 +18703,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *67 - - *116 - - &719 + - *69 + - *118 + - &722 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -18573,7 +18714,7 @@ paths: required: false schema: type: integer - - *117 + - *119 responses: '200': description: Billing usage report response for an organization @@ -18648,8 +18789,8 @@ paths: repositoryName: github/example '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18672,19 +18813,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *67 - - *116 + - *69 - *118 - - *117 - - &720 + - *120 + - *119 + - &723 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *119 - - &721 + - *121 + - &724 name: sku description: The SKU to query for usage. in: query @@ -18794,8 +18935,8 @@ paths: netAmount: 8.0 '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18821,13 +18962,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &120 + schema: &122 title: Organization Full description: Organization Full type: object @@ -19146,7 +19287,7 @@ paths: - updated_at - archived_at examples: - default-response: &121 + default-response: &123 value: login: github id: 1 @@ -19246,7 +19387,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *67 + - *69 requestBody: required: false content: @@ -19462,18 +19603,18 @@ paths: description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '422': description: Validation failed content: application/json: schema: oneOf: - - *122 - - *123 - '409': *52 + - *124 + - *125 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19496,7 +19637,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *67 + - *69 responses: '202': *39 '404': *6 @@ -19521,7 +19662,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -19547,7 +19688,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19568,7 +19709,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -19586,7 +19727,7 @@ paths: type: integer repository_cache_usages: type: array - items: &343 + items: &346 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19621,7 +19762,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19641,7 +19782,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -19659,7 +19800,7 @@ paths: type: integer runners: type: array - items: &124 + items: &126 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -19713,7 +19854,7 @@ paths: - display_name - source nullable: true - machine_size_details: &132 + machine_size_details: &134 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -19809,7 +19950,7 @@ paths: - public_ip_enabled - platform examples: - default: &152 + default: &155 value: total_count: 2 runners: @@ -19851,7 +19992,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19869,7 +20010,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -19946,9 +20087,9 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: &133 + default: &135 value: id: 5 name: My hosted ubuntu runner @@ -19989,7 +20130,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20005,7 +20146,7 @@ paths: type: integer images: type: array - items: &125 + items: &127 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -20056,7 +20197,7 @@ paths: - latest_version - state examples: - default: &127 + default: &129 value: total_count: 2 image_versions: @@ -20087,8 +20228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - - *67 - - &126 + - *69 + - &128 name: image_definition_id description: Image definition ID of custom image in: path @@ -20100,7 +20241,7 @@ paths: description: Response content: application/json: - schema: *125 + schema: *127 examples: default: value: @@ -20130,8 +20271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *67 - - *126 + - *69 + - *128 responses: '204': description: Response @@ -20154,8 +20295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - - *126 - - *67 + - *128 + - *69 responses: '200': description: Response @@ -20171,7 +20312,7 @@ paths: type: integer image_versions: type: array - items: &128 + items: &130 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -20204,7 +20345,7 @@ paths: - created_on - state_details examples: - default: *127 + default: *129 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20224,9 +20365,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - - *67 - - *126 - - &129 + - *69 + - *128 + - &131 name: version description: Version of a custom image in: path @@ -20239,7 +20380,7 @@ paths: description: Response content: application/json: - schema: *128 + schema: *130 examples: default: value: @@ -20265,9 +20406,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - - *67 - - *126 - - *129 + - *69 + - *128 + - *131 responses: '204': description: Response @@ -20288,7 +20429,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20304,7 +20445,7 @@ paths: type: integer images: type: array - items: &130 + items: &132 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20340,7 +20481,7 @@ paths: - display_name - source examples: - default: &131 + default: &133 value: id: ubuntu-20.04 platform: linux-x64 @@ -20364,7 +20505,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20380,9 +20521,9 @@ paths: type: integer images: type: array - items: *130 + items: *132 examples: - default: *131 + default: *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20399,7 +20540,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20452,7 +20593,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20468,7 +20609,7 @@ paths: type: integer machine_specs: type: array - items: *132 + items: *134 examples: default: value: @@ -20493,7 +20634,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20537,8 +20678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *67 - - &134 + - *69 + - &136 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -20550,11 +20691,11 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20572,8 +20713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *67 - - *134 + - *69 + - *136 requestBody: required: true content: @@ -20625,9 +20766,9 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -20643,21 +20784,126 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *67 - - *134 + - *69 + - *136 responses: '202': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - *69 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *45 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *69 + requestBody: + required: true + content: + application/json: + schema: *137 + examples: + default: *46 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *45 + examples: + default: *46 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *69 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -20672,13 +20918,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *67 + - *69 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &135 + schema: &138 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -20692,7 +20938,7 @@ paths: required: - include_claim_keys examples: - default: &136 + default: &139 value: include_claim_keys: - repo @@ -20714,20 +20960,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *135 + schema: *138 examples: - default: *136 + default: *139 responses: '201': description: Empty response content: application/json: - schema: &162 + schema: &165 title: Empty Object description: An object without any properties. type: object @@ -20757,7 +21003,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20766,7 +21012,7 @@ paths: schema: type: object properties: - enabled_repositories: &137 + enabled_repositories: &140 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -20779,7 +21025,7 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: &138 + allowed_actions: &141 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -20787,12 +21033,12 @@ paths: - all - local_only - selected - selected_actions_url: &349 + selected_actions_url: &352 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` is set to `selected`. - sha_pinning_required: &139 + sha_pinning_required: &142 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -20823,7 +21069,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -20834,9 +21080,9 @@ paths: schema: type: object properties: - enabled_repositories: *137 - allowed_actions: *138 - sha_pinning_required: *139 + enabled_repositories: *140 + allowed_actions: *141 + sha_pinning_required: *142 required: - enabled_repositories examples: @@ -20864,13 +21110,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &353 + schema: &356 type: object properties: days: @@ -20907,12 +21153,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &354 + schema: &357 type: object properties: days: @@ -20929,7 +21175,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -20949,13 +21195,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &140 + schema: &143 type: object properties: approval_policy: @@ -20969,7 +21215,7 @@ paths: required: - approval_policy examples: - default: &355 + default: &358 value: approval_policy: first_time_contributors '404': *6 @@ -20990,7 +21236,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21000,7 +21246,7 @@ paths: required: true content: application/json: - schema: *140 + schema: *143 examples: default: summary: Set approval policy to first time contributors @@ -21022,13 +21268,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &356 + schema: &359 type: object required: - run_workflows_from_fork_pull_requests @@ -21054,7 +21300,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &141 + default: &144 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -21077,12 +21323,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &357 + schema: &360 type: object required: - run_workflows_from_fork_pull_requests @@ -21105,7 +21351,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *141 + default: *144 responses: '204': description: Empty response for successful settings update @@ -21135,7 +21381,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -21153,9 +21399,9 @@ paths: type: number repositories: type: array - items: *71 + items: *73 examples: - default: &145 + default: &148 value: total_count: 1 repositories: @@ -21295,7 +21541,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21339,8 +21585,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *67 - - &142 + - *69 + - &145 name: repository_id description: The unique identifier of the repository. in: path @@ -21368,8 +21614,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -21392,13 +21638,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &143 + schema: &146 type: object properties: github_owned_allowed: @@ -21420,7 +21666,7 @@ paths: items: type: string examples: - default: &144 + default: &147 value: github_owned_allowed: true verified_allowed: false @@ -21445,7 +21691,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21453,9 +21699,9 @@ paths: required: false content: application/json: - schema: *143 + schema: *146 examples: - selected_actions: *144 + selected_actions: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21475,7 +21721,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -21523,7 +21769,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21550,7 +21796,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21570,7 +21816,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#list-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -21585,9 +21831,9 @@ paths: type: integer repositories: type: array - items: *71 + items: *73 examples: - default: *145 + default: *148 '403': *29 '404': *6 x-github: @@ -21607,7 +21853,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21655,14 +21901,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21682,14 +21928,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21711,23 +21957,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &358 + schema: &361 type: object properties: - default_workflow_permissions: &146 + default_workflow_permissions: &149 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &147 + can_approve_pull_request_reviews: &150 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -21735,7 +21981,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &148 + default: &151 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -21760,7 +22006,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Success response @@ -21768,13 +22014,13 @@ paths: required: false content: application/json: - schema: &359 + schema: &362 type: object properties: - default_workflow_permissions: *146 - can_approve_pull_request_reviews: *147 + default_workflow_permissions: *149 + can_approve_pull_request_reviews: *150 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21794,7 +22040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *67 + - *69 - *17 - *19 - name: visible_to_repository @@ -21819,7 +22065,7 @@ paths: type: number runner_groups: type: array - items: &149 + items: &152 type: object properties: id: @@ -21935,7 +22181,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -22007,9 +22253,9 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: &151 + default: &154 value: id: 2 name: octo-runner-group @@ -22044,8 +22290,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *67 - - &150 + - *69 + - &153 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -22057,7 +22303,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: default: value: @@ -22093,8 +22339,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22148,9 +22394,9 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *151 + default: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22169,8 +22415,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *67 - - *150 + - *69 + - *153 responses: '204': description: Response @@ -22193,8 +22439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *17 - *19 responses: @@ -22212,11 +22458,11 @@ paths: type: number runners: type: array - items: *124 + items: *126 examples: - default: *152 + default: *155 headers: - Link: *59 + Link: *61 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22236,8 +22482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *19 - *17 responses: @@ -22255,9 +22501,9 @@ paths: type: number repositories: type: array - items: *153 + items: *156 examples: - default: &670 + default: &673 value: total_count: 1 repositories: @@ -22509,8 +22755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22554,9 +22800,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 - - *142 + - *69 + - *153 + - *145 responses: '204': description: Response @@ -22578,9 +22824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 - - *142 + - *69 + - *153 + - *145 responses: '204': description: Response @@ -22603,8 +22849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *17 - *19 responses: @@ -22622,7 +22868,7 @@ paths: type: number runners: type: array - items: &155 + items: &158 title: Self hosted runners description: A self hosted runner type: object @@ -22651,7 +22897,7 @@ paths: type: boolean labels: type: array - items: &158 + items: &161 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -22681,7 +22927,7 @@ paths: - busy - labels examples: - default: &156 + default: &159 value: total_count: 2 runners: @@ -22721,7 +22967,7 @@ paths: name: no-gpu type: custom headers: - Link: *59 + Link: *61 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22740,8 +22986,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22785,9 +23031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *67 - - *150 - - &154 + - *69 + - *153 + - &157 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -22815,9 +23061,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *67 - - *150 - - *154 + - *69 + - *153 + - *157 responses: '204': description: Response @@ -22847,7 +23093,7 @@ paths: in: query schema: type: string - - *67 + - *69 - *17 - *19 responses: @@ -22865,11 +23111,11 @@ paths: type: integer runners: type: array - items: *155 + items: *158 examples: - default: *156 + default: *159 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22891,7 +23137,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -22899,7 +23145,7 @@ paths: application/json: schema: type: array - items: &360 + items: &363 title: Runner Application description: Runner Application type: object @@ -22924,7 +23170,7 @@ paths: - download_url - filename examples: - default: &361 + default: &364 value: - os: osx architecture: x64 @@ -22967,7 +23213,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -23010,7 +23256,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &362 + '201': &365 description: Response content: application/json: @@ -23020,7 +23266,7 @@ paths: - runner - encoded_jit_config properties: - runner: *155 + runner: *158 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -23049,7 +23295,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23077,13 +23323,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *67 + - *69 responses: '201': description: Response content: application/json: - schema: &157 + schema: &160 title: Authentication Token description: Authentication Token type: object @@ -23105,7 +23351,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *71 + items: *73 single_file: type: string example: config.yaml @@ -23121,7 +23367,7 @@ paths: - token - expires_at examples: - default: &363 + default: &366 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -23152,15 +23398,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *67 + - *69 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: &364 + default: &367 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -23185,16 +23431,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: '200': description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: &365 + default: &368 value: id: 23 name: MBP @@ -23235,8 +23481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: '204': description: Response @@ -23262,10 +23508,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: - '200': &159 + '200': &162 description: Response content: application/json: @@ -23279,7 +23525,7 @@ paths: type: integer labels: type: array - items: *158 + items: *161 examples: default: value: @@ -23318,8 +23564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 requestBody: required: true content: @@ -23343,7 +23589,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23367,8 +23613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 requestBody: required: true content: @@ -23393,7 +23639,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23417,10 +23663,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: - '200': &366 + '200': &369 description: Response content: application/json: @@ -23434,7 +23680,7 @@ paths: type: integer labels: type: array - items: *158 + items: *161 examples: default: value: @@ -23475,9 +23721,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 - - &367 + - *69 + - *157 + - &370 name: name description: The name of a self-hosted runner's custom label. in: path @@ -23485,7 +23731,7 @@ paths: schema: type: string responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23510,7 +23756,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -23528,7 +23774,7 @@ paths: type: integer secrets: type: array - items: &160 + items: &163 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -23578,7 +23824,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23601,13 +23847,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &379 + schema: &382 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -23636,7 +23882,7 @@ paths: - key_id - key examples: - default: &380 + default: &383 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23661,8 +23907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *67 - - &161 + - *69 + - &164 name: secret_name description: The name of the secret. in: path @@ -23674,7 +23920,7 @@ paths: description: Response content: application/json: - schema: *160 + schema: *163 examples: default: value: @@ -23704,8 +23950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -23762,7 +24008,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -23788,8 +24034,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -23815,8 +24061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -23834,9 +24080,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: &165 + default: &168 value: total_count: 1 repositories: @@ -23928,8 +24174,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -23981,8 +24227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -24015,8 +24261,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -24048,8 +24294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *67 - - &348 + - *69 + - &351 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -24073,7 +24319,7 @@ paths: type: integer variables: type: array - items: &163 + items: &166 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -24137,7 +24383,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24158,7 +24404,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *67 + - *69 requestBody: required: true content: @@ -24206,7 +24452,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -24231,8 +24477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *67 - - &164 + - *69 + - &167 name: name description: The name of the variable. in: path @@ -24244,7 +24490,7 @@ paths: description: Response content: application/json: - schema: *163 + schema: *166 examples: default: value: @@ -24274,8 +24520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 requestBody: required: true content: @@ -24337,8 +24583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 responses: '204': description: Response @@ -24364,8 +24610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - *19 - *17 responses: @@ -24383,9 +24629,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 '409': description: Response when the visibility of the variable is not set to `selected` @@ -24411,8 +24657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 requestBody: required: true content: @@ -24461,8 +24707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - name: repository_id in: path required: true @@ -24496,8 +24742,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - name: repository_id in: path required: true @@ -24538,7 +24784,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *67 + - *69 requestBody: required: true content: @@ -24654,7 +24900,7 @@ paths: type: integer deployment_records: type: array - items: &166 + items: &169 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -24698,7 +24944,7 @@ paths: with the deployment record. nullable: true examples: - default: &167 + default: &170 value: total_count: 1 deployment_records: @@ -24733,7 +24979,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *67 + - *69 - name: cluster in: path description: The cluster name. @@ -24869,9 +25115,9 @@ paths: type: integer deployment_records: type: array - items: *166 + items: *169 examples: - default: *167 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24891,7 +25137,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *67 + - *69 requestBody: required: true content: @@ -25043,7 +25289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *67 + - *69 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -25068,9 +25314,9 @@ paths: type: integer deployment_records: type: array - items: *166 + items: *169 examples: - default: *167 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25090,7 +25336,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *67 + - *69 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25173,9 +25419,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 requestBody: required: true content: @@ -25199,12 +25445,12 @@ paths: required: - subject_digests examples: - default: &700 + default: &703 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &701 + withPredicateType: &704 value: subject_digests: - sha256:abc123 @@ -25262,7 +25508,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &702 + default: &705 value: attestations_subject_digests: - sha256:abc: @@ -25371,7 +25617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *67 + - *69 requestBody: required: true content: @@ -25436,7 +25682,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *67 + - *69 - name: subject_digest description: Subject Digest in: path @@ -25469,9 +25715,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -25519,7 +25765,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *67 + - *69 - name: attestation_id description: Attestation ID in: path @@ -25555,9 +25801,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25612,7 +25858,7 @@ paths: initiator: type: string examples: - default: &393 + default: &396 value: attestations: - bundle: @@ -25719,7 +25965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -25731,7 +25977,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25750,8 +25996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: If the user is blocked @@ -25776,8 +26022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -25797,8 +26043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -25823,15 +26069,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *67 + - *69 - *19 - *17 - - *53 + - *55 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &168 + schema: &171 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -25857,7 +26103,7 @@ paths: application/json: schema: type: array - items: &169 + items: &172 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -25888,7 +26134,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &190 + items: &193 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -25963,7 +26209,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &247 + properties: &250 id: description: Unique identifier of the team type: integer @@ -26035,7 +26281,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &248 + required: &251 - id - node_id - url @@ -26078,7 +26324,7 @@ paths: type: string format: date-time nullable: true - state: *168 + state: *171 contact_link: description: The contact link of the campaign. type: string @@ -26173,9 +26419,9 @@ paths: closed_at: state: open headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26199,7 +26445,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -26298,9 +26544,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: &170 + default: &173 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -26349,7 +26595,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26371,7 +26617,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26383,16 +26629,16 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: *170 + default: *173 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26413,7 +26659,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26462,7 +26708,7 @@ paths: type: string format: uri nullable: true - state: *168 + state: *171 examples: default: value: @@ -26472,9 +26718,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: *170 + default: *173 '400': description: Bad Request content: @@ -26486,7 +26732,7 @@ paths: content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26507,7 +26753,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26518,7 +26764,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26540,18 +26786,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *67 - - &418 + - *69 + - &421 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both. in: query required: false - schema: &178 + schema: &181 type: string description: The name of the tool used to generate the code scanning analysis. - - &419 + - &422 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -26559,22 +26805,22 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &179 + schema: &182 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *45 - - *46 + - *47 + - *48 - *19 - *17 - - *53 + - *55 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &421 + schema: &424 type: string description: State of a code scanning alert. enum: @@ -26597,7 +26843,7 @@ paths: be returned. in: query required: false - schema: &422 + schema: &425 type: string description: Severity of a code scanning alert. enum: @@ -26626,18 +26872,18 @@ paths: items: type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: &423 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: &426 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &180 + state: &183 type: string description: State of a code scanning alert. nullable: true @@ -26645,7 +26891,7 @@ paths: - open - dismissed - fixed - fixed_at: *176 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -26653,8 +26899,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: &424 + dismissed_at: *180 + dismissed_reason: &427 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -26663,13 +26909,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &425 + dismissed_comment: &428 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &426 + rule: &429 type: object properties: id: @@ -26722,42 +26968,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &427 + tool: &430 type: object properties: - name: *178 + name: *181 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *179 - most_recent_instance: &428 + guid: *182 + most_recent_instance: &431 type: object properties: - ref: &420 + ref: &423 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &438 + analysis_key: &441 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &439 + environment: &442 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &440 + category: &443 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *180 + state: *183 commit_sha: type: string message: @@ -26765,7 +27011,7 @@ paths: properties: text: type: string - location: &441 + location: &444 type: object description: Describe a region within a file for the alert. properties: @@ -26786,7 +27032,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &442 + items: &445 type: string description: A classification of the file. For example to identify it as generated. @@ -26796,7 +27042,7 @@ paths: - generated - test - library - repository: *58 + repository: *60 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -27051,9 +27297,9 @@ paths: trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27075,7 +27321,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *67 + - *69 - name: target_type in: query description: The target type of the code security configuration @@ -27094,8 +27340,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -27103,7 +27349,7 @@ paths: application/json: schema: type: array - items: *47 + items: *49 examples: default: value: @@ -27186,7 +27432,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *67 + - *69 requestBody: required: true content: @@ -27273,7 +27519,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *51 + code_scanning_options: *53 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -27282,7 +27528,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *50 + code_scanning_default_setup_options: *52 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -27421,9 +27667,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *47 + schema: *49 examples: - default: *181 + default: *184 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27445,15 +27691,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *182 + schema: *185 examples: - default: *183 + default: *186 '304': *37 '403': *29 '404': *6 @@ -27479,7 +27725,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *67 + - *69 requestBody: required: true content: @@ -27505,11 +27751,11 @@ paths: - 32 - 91 responses: - '204': *184 + '204': *187 '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27531,16 +27777,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 responses: '200': description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *181 + default: *184 '304': *37 '403': *29 '404': *6 @@ -27564,8 +27810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27652,8 +27898,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *50 - code_scanning_options: *51 + code_scanning_default_setup_options: *52 + code_scanning_options: *53 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -27778,7 +28024,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *47 + schema: *49 examples: default: value: @@ -27837,14 +28083,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 responses: - '204': *184 + '204': *187 '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27868,8 +28114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27932,8 +28178,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27973,12 +28219,12 @@ paths: - none - private_and_internal - public - configuration: *47 + configuration: *49 examples: default: value: default_for_new_repos: all - configuration: *181 + configuration: *184 '403': *29 '404': *6 x-github: @@ -28002,8 +28248,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -28012,8 +28258,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -28031,13 +28277,13 @@ paths: application/json: schema: type: array - items: *185 + items: *188 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *186 + repository: *189 '403': *29 '404': *6 x-github: @@ -28061,7 +28307,7 @@ paths: parameters: - *17 - *19 - - *67 + - *69 responses: '200': description: Response @@ -28077,7 +28323,7 @@ paths: type: integer codespaces: type: array - items: &237 + items: &240 type: object title: Codespace description: A codespace. @@ -28102,12 +28348,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *153 + repository: *156 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &454 + properties: &457 name: type: string description: The name of the machine. @@ -28149,7 +28395,7 @@ paths: - ready - in_progress nullable: true - required: &455 + required: &458 - name - display_name - operating_system @@ -28354,7 +28600,7 @@ paths: - pulls_url - recent_folders examples: - default: &238 + default: &241 value: total_count: 3 codespaces: @@ -28764,7 +29010,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -28786,7 +29032,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *67 + - *69 deprecated: true requestBody: required: true @@ -28830,7 +29076,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28853,7 +29099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *67 + - *69 deprecated: true requestBody: required: true @@ -28885,7 +29131,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28908,7 +29154,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *67 + - *69 requestBody: required: true content: @@ -28939,7 +29185,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28960,7 +29206,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -28978,7 +29224,7 @@ paths: type: integer secrets: type: array - items: &187 + items: &190 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -29017,7 +29263,7 @@ paths: - updated_at - visibility examples: - default: &456 + default: &459 value: total_count: 2 secrets: @@ -29030,7 +29276,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29049,13 +29295,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &457 + schema: &460 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -29084,7 +29330,7 @@ paths: - key_id - key examples: - default: &458 + default: &461 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29107,23 +29353,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: Response content: application/json: - schema: *187 + schema: *190 examples: - default: &460 + default: &463 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -29143,8 +29389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -29199,7 +29445,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -29225,8 +29471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -29251,8 +29497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -29270,9 +29516,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 '404': *6 x-github: githubCloudOnly: false @@ -29294,8 +29540,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -29345,8 +29591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -29379,8 +29625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -29419,7 +29665,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: OK @@ -29528,7 +29774,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29560,7 +29806,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *67 + - *69 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -29583,7 +29829,7 @@ paths: currently being billed. seats: type: array - items: &240 + items: &243 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -29600,15 +29846,15 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *188 - required: *189 + properties: *191 + required: *192 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *190 - - *60 + - *193 + - *62 nullable: true pending_cancellation_date: type: string @@ -29732,8 +29978,8 @@ paths: type: User site_admin: false headers: - Link: *59 - '500': *113 + Link: *61 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29766,7 +30012,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29808,7 +30054,7 @@ paths: default: value: seats_created: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29844,7 +30090,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29886,7 +30132,7 @@ paths: default: value: seats_cancelled: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29924,7 +30170,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29965,7 +30211,7 @@ paths: default: value: seats_created: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30001,7 +30247,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -30043,7 +30289,7 @@ paths: default: value: seats_cancelled: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30083,7 +30329,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-content-exclusion-management#get-copilot-content-exclusion-rules-for-an-organization parameters: - - *67 + - *69 responses: '200': description: OK @@ -30103,7 +30349,7 @@ paths: value: octo-repo: - "/src/some-dir/kernel.rs" - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30136,7 +30382,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-content-exclusion-management#set-copilot-content-exclusion-rules-for-an-organization parameters: - - *67 + - *69 requestBody: description: The content exclusion rules to set required: true @@ -30188,7 +30434,7 @@ paths: default: value: message: Content exclusion rules updated successfully. - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -30227,7 +30473,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *67 + - *69 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -30259,7 +30505,7 @@ paths: application/json: schema: type: array - items: &325 + items: &328 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -30566,7 +30812,7 @@ paths: - date additionalProperties: true examples: - default: &326 + default: &329 value: - date: '2024-06-24' total_active_users: 24 @@ -30665,10 +30911,10 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *113 + '500': *115 '403': *29 '404': *6 - '422': &327 + '422': &330 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -30695,12 +30941,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *67 - - *191 - - *192 - - *193 + - *69 - *194 - *195 + - *196 + - *197 + - *198 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -30730,7 +30976,7 @@ paths: enum: - patch - deployment - - *196 + - *199 - name: runtime_risk in: query description: |- @@ -30739,11 +30985,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *197 - - *198 - - *53 - - *45 - - *46 + - *200 + - *201 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -30752,9 +30998,9 @@ paths: application/json: schema: type: array - items: *199 + items: *202 examples: - default: *200 + default: *203 '304': *37 '400': *14 '403': *29 @@ -30780,7 +31026,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -30798,7 +31044,7 @@ paths: type: integer secrets: type: array - items: &201 + items: &204 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -30848,7 +31094,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30869,13 +31115,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &489 + schema: &492 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -30892,7 +31138,7 @@ paths: - key_id - key examples: - default: &490 + default: &493 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -30915,14 +31161,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -30950,8 +31196,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -31008,7 +31254,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -31032,8 +31278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -31057,8 +31303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -31076,9 +31322,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31099,8 +31345,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -31150,8 +31396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -31182,8 +31428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -31213,7 +31459,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -31221,7 +31467,7 @@ paths: application/json: schema: type: array - items: &250 + items: &253 title: Package description: A software package type: object @@ -31271,8 +31517,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *202 - required: *203 + properties: *205 + required: *206 nullable: true created_at: type: string @@ -31291,7 +31537,7 @@ paths: - created_at - updated_at examples: - default: &251 + default: &254 value: - id: 197 name: hello_docker @@ -31369,7 +31615,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31379,7 +31625,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: 200-response: value: @@ -31451,7 +31697,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31461,7 +31707,7 @@ paths: application/json: schema: type: array - items: &226 + items: &229 title: Organization Invitation description: Organization Invitation type: object @@ -31508,7 +31754,7 @@ paths: - invitation_teams_url - node_id examples: - default: &227 + default: &230 value: - id: 1 login: monalisa @@ -31541,7 +31787,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -31565,7 +31811,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31575,7 +31821,7 @@ paths: application/json: schema: type: array - items: &204 + items: &207 title: Org Hook description: Org Hook type: object @@ -31663,7 +31909,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -31686,7 +31932,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *67 + - *69 requestBody: required: true content: @@ -31746,9 +31992,9 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: - default: &205 + default: &208 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -31795,8 +32041,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *67 - - &206 + - *69 + - &209 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -31809,9 +32055,9 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: - default: *205 + default: *208 '404': *6 x-github: githubCloudOnly: false @@ -31838,8 +32084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 requestBody: required: false content: @@ -31884,7 +32130,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: default: value: @@ -31925,8 +32171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 responses: '204': description: Response @@ -31953,8 +32199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *67 - - *206 + - *69 + - *209 responses: '200': description: Response @@ -31984,8 +32230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *67 - - *206 + - *69 + - *209 requestBody: required: false content: @@ -32035,10 +32281,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *17 - - *207 + - *210 responses: '200': description: Response @@ -32046,9 +32292,9 @@ paths: application/json: schema: type: array - items: *208 + items: *211 examples: - default: *209 + default: *212 '400': *14 '422': *15 x-github: @@ -32073,17 +32319,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *16 responses: '200': description: Response content: application/json: - schema: *210 + schema: *213 examples: - default: *211 + default: *214 '400': *14 '422': *15 x-github: @@ -32108,8 +32354,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *16 responses: '202': *39 @@ -32138,8 +32384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 responses: '204': description: Response @@ -32161,8 +32407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *67 - - &216 + - *69 + - &219 name: actor_type in: path description: The type of the actor @@ -32175,14 +32421,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &217 + - &220 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &212 + - &215 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -32190,7 +32436,7 @@ paths: required: true schema: type: string - - &213 + - &216 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -32201,7 +32447,7 @@ paths: type: string - *19 - *17 - - *53 + - *55 - name: sort description: The property to sort the results by. in: query @@ -32283,13 +32529,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *67 - - *212 - - *213 + - *69 + - *215 + - *216 - *19 - *17 - - *53 - - &222 + - *55 + - &225 name: sort description: The property to sort the results by. in: query @@ -32366,15 +32612,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *67 - - *212 - - *213 + - *69 + - *215 + - *216 responses: '200': description: Response content: application/json: - schema: &214 + schema: &217 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -32390,7 +32636,7 @@ paths: type: integer format: int64 examples: - default: &215 + default: &218 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -32410,24 +32656,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *67 - - &218 + - *69 + - &221 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *212 - - *213 + - *215 + - *216 responses: '200': description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: *215 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32445,19 +32691,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *67 - - *212 - - *213 + - *69 + - *215 - *216 - - *217 + - *219 + - *220 responses: '200': description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: *215 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32474,10 +32720,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *67 - - *212 - - *213 - - &219 + - *69 + - *215 + - *216 + - &222 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -32490,7 +32736,7 @@ paths: description: Response content: application/json: - schema: &220 + schema: &223 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -32506,7 +32752,7 @@ paths: type: integer format: int64 examples: - default: &221 + default: &224 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -32542,19 +32788,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *67 - - *218 - - *212 - - *213 - - *219 + - *69 + - *221 + - *215 + - *216 + - *222 responses: '200': description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 x-github: enabledForGitHubApps: true category: orgs @@ -32571,20 +32817,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *67 - - *216 - - *217 - - *212 - - *213 + - *69 - *219 + - *220 + - *215 + - *216 + - *222 responses: '200': description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 x-github: enabledForGitHubApps: true category: orgs @@ -32601,14 +32847,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *67 - - *218 - - *212 - - *213 + - *69 + - *221 + - *215 + - *216 - *19 - *17 - - *53 - - *222 + - *55 + - *225 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -32681,7 +32927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *67 + - *69 responses: '200': description: Response @@ -32689,7 +32935,7 @@ paths: application/json: schema: *22 examples: - default: &528 + default: &531 value: id: 1 account: @@ -32758,7 +33004,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -32828,7 +33074,7 @@ paths: suspended_at: suspended_by: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32847,7 +33093,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -32855,12 +33101,12 @@ paths: application/json: schema: anyOf: - - &224 + - &227 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &223 + limit: &226 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -32885,7 +33131,7 @@ paths: properties: {} additionalProperties: false examples: - default: &225 + default: &228 value: limit: collaborators_only origin: organization @@ -32909,18 +33155,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &529 + schema: &532 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *223 + limit: *226 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -32944,9 +33190,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: *225 + default: *228 '422': *15 x-github: githubCloudOnly: false @@ -32964,7 +33210,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -32988,7 +33234,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *67 + - *69 - *17 - *19 - name: role @@ -33022,11 +33268,11 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -33047,7 +33293,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *67 + - *69 requestBody: required: false content: @@ -33101,7 +33347,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: default: value: @@ -33155,8 +33401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *67 - - &228 + - *69 + - &231 name: invitation_id description: The unique identifier of the invitation. in: path @@ -33186,8 +33432,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *67 - - *228 + - *69 + - *231 - *17 - *19 responses: @@ -33197,9 +33443,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: &249 + default: &252 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -33215,7 +33461,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -33234,7 +33480,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -33242,7 +33488,7 @@ paths: application/json: schema: type: array - items: &229 + items: &232 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -33385,7 +33631,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -33475,9 +33721,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - default: &230 + default: &233 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -33532,8 +33778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *67 - - &231 + - *69 + - &234 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -33632,9 +33878,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - default: *230 + default: *233 '404': *6 '422': *7 x-github: @@ -33658,10 +33904,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *67 - - *231 + - *69 + - *234 responses: - '204': *184 + '204': *187 '404': *6 '422': *7 x-github: @@ -33681,7 +33927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -33689,7 +33935,7 @@ paths: application/json: schema: type: array - items: *232 + items: *235 examples: default: value: @@ -33727,7 +33973,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -33774,9 +34020,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *235 examples: - default: &233 + default: &236 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -33808,8 +34054,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *67 - - &234 + - *69 + - &237 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -33862,9 +34108,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *235 examples: - default: *233 + default: *236 '404': *6 '422': *7 x-github: @@ -33888,8 +34134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *67 - - *234 + - *69 + - *237 responses: '204': description: Response @@ -33922,7 +34168,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *67 + - *69 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -33952,7 +34198,7 @@ paths: - closed - all default: open - - *235 + - *238 - name: type description: Can be the name of an issue type. in: query @@ -33970,8 +34216,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -33981,11 +34227,11 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *236 + default: *239 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -34005,7 +34251,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *67 + - *69 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -34043,9 +34289,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -34063,8 +34309,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response if requester is an organization member and user is @@ -34098,8 +34344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -34125,8 +34371,8 @@ paths: parameters: - *17 - *19 - - *67 - - *63 + - *69 + - *65 responses: '200': description: Response @@ -34142,11 +34388,11 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34169,9 +34415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *67 - - *63 - - &239 + - *69 + - *65 + - &242 name: codespace_name in: path required: true @@ -34181,7 +34427,7 @@ paths: responses: '202': *39 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34204,17 +34450,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *67 - - *63 - - *239 + - *69 + - *65 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: &453 + default: &456 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -34356,7 +34602,7 @@ paths: recent_folders: [] template: '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34387,14 +34633,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *240 + schema: *243 examples: default: value: @@ -34438,7 +34684,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34463,14 +34709,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '200': description: Response content: application/json: - schema: &241 + schema: &244 title: Org Membership description: Org Membership type: object @@ -34514,7 +34760,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *65 + organization: *67 user: title: Simple User description: A GitHub user. @@ -34537,7 +34783,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &242 + response-if-user-has-an-active-admin-membership-with-organization: &245 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -34609,8 +34855,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 requestBody: required: false content: @@ -34638,9 +34884,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: - response-if-user-already-had-membership-with-organization: *242 + response-if-user-already-had-membership-with-organization: *245 '422': *15 '403': *29 x-github: @@ -34664,8 +34910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -34690,7 +34936,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *67 + - *69 - *17 - *19 - name: exclude @@ -34711,7 +34957,7 @@ paths: application/json: schema: type: array - items: &243 + items: &246 title: Migration description: A migration. type: object @@ -34752,7 +34998,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *71 + items: *73 url: type: string format: uri @@ -34948,7 +35194,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -34964,7 +35210,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *67 + - *69 requestBody: required: true content: @@ -35040,7 +35286,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -35218,8 +35464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *67 - - &244 + - *69 + - &247 name: migration_id description: The unique identifier of the migration. in: path @@ -35246,7 +35492,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -35415,8 +35661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *67 - - *244 + - *69 + - *247 responses: '302': description: Response @@ -35437,8 +35683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *67 - - *244 + - *69 + - *247 responses: '204': description: Response @@ -35461,9 +35707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *67 - - *244 - - &683 + - *69 + - *247 + - &686 name: repo_name description: repo_name parameter in: path @@ -35490,8 +35736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *67 - - *244 + - *69 + - *247 - *17 - *19 responses: @@ -35501,9 +35747,9 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: &256 + default: &259 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -35616,7 +35862,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -35642,7 +35888,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response - list of organization roles @@ -35658,7 +35904,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &246 + items: &249 title: Organization Role description: Organization roles type: object @@ -35805,8 +36051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -35831,9 +36077,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *67 - *69 - - &245 + - *71 + - &248 name: role_id description: The unique identifier of the role. in: path @@ -35868,9 +36114,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *67 - *69 - - *245 + - *71 + - *248 responses: '204': description: Response @@ -35895,8 +36141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -35921,9 +36167,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *67 - - *63 - - *245 + - *69 + - *65 + - *248 responses: '204': description: Response @@ -35953,9 +36199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *67 - - *63 - - *245 + - *69 + - *65 + - *248 responses: '204': description: Response @@ -35983,14 +36229,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 responses: '200': description: Response content: application/json: - schema: *246 + schema: *249 examples: default: value: @@ -36040,8 +36286,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 - *17 - *19 responses: @@ -36119,8 +36365,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 nullable: true type: description: The ownership type of the team @@ -36152,9 +36398,9 @@ paths: - type - parent examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '404': description: Response if the organization or role does not exist. '422': @@ -36181,8 +36427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 - *17 - *19 responses: @@ -36210,13 +36456,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &321 + items: &324 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 name: nullable: true type: string @@ -36311,9 +36557,9 @@ paths: - type - url examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': description: Response if the organization or role does not exist. '422': @@ -36335,7 +36581,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *67 + - *69 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -36362,9 +36608,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36387,8 +36633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *67 - - *63 + - *69 + - *65 requestBody: required: false content: @@ -36445,8 +36691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -36503,8 +36749,8 @@ paths: - docker - nuget - container - - *67 - - &684 + - *69 + - &687 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -36540,12 +36786,12 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *251 + default: *254 '403': *29 '401': *25 - '400': &686 + '400': &689 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -36567,7 +36813,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &252 + - &255 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -36585,20 +36831,20 @@ paths: - docker - nuget - container - - &253 + - &256 name: package_name description: The name of the package. in: path required: true schema: type: string - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: default: value: @@ -36650,9 +36896,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 responses: '204': description: Response @@ -36684,9 +36930,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 - name: token description: package token schema: @@ -36718,9 +36964,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 - *19 - *17 - name: state @@ -36740,7 +36986,7 @@ paths: application/json: schema: type: array - items: &254 + items: &257 title: Package Version description: A version of a software package type: object @@ -36865,10 +37111,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - - &255 + - *255 + - *256 + - *69 + - &258 name: package_version_id description: Unique identifier of the package version. in: path @@ -36880,7 +37126,7 @@ paths: description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -36916,10 +37162,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - *255 + - *256 + - *69 + - *258 responses: '204': description: Response @@ -36951,10 +37197,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - *255 + - *256 + - *69 + - *258 responses: '204': description: Response @@ -36981,10 +37227,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *67 + - *69 - *17 - *19 - - &257 + - &260 name: sort description: The property by which to sort the results. in: query @@ -36994,8 +37240,8 @@ paths: enum: - created_at default: created_at - - *53 - - &258 + - *55 + - &261 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -37006,7 +37252,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &259 + - &262 name: repository description: The name of the repository to use to filter the results. in: query @@ -37014,7 +37260,7 @@ paths: schema: type: string example: Hello-World - - &260 + - &263 name: permission description: The permission to use to filter the results. in: query @@ -37022,7 +37268,7 @@ paths: schema: type: string example: issues_read - - &261 + - &264 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -37032,7 +37278,7 @@ paths: schema: type: string format: date-time - - &262 + - &265 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -37042,7 +37288,7 @@ paths: schema: type: string format: date-time - - &263 + - &266 name: token_id description: The ID of the token in: query @@ -37054,7 +37300,7 @@ paths: type: string example: token_id[]=1,token_id[]=2 responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37186,7 +37432,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37206,7 +37452,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *67 + - *69 requestBody: required: true content: @@ -37247,7 +37493,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37272,7 +37518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *67 + - *69 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -37308,11 +37554,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37333,7 +37579,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *67 + - *69 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -37344,7 +37590,7 @@ paths: - *17 - *19 responses: - '500': *113 + '500': *115 '404': *6 '403': *29 '200': @@ -37353,11 +37599,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37378,19 +37624,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *67 + - *69 - *17 - *19 - - *257 - - *53 - - *258 - - *259 - *260 + - *55 - *261 - *262 - *263 + - *264 + - *265 + - *266 responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37517,7 +37763,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37537,7 +37783,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *67 + - *69 requestBody: required: true content: @@ -37572,7 +37818,7 @@ paths: - 1296269 - 1296280 responses: - '500': *113 + '500': *115 '404': *6 '202': *39 '403': *29 @@ -37597,7 +37843,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *67 + - *69 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -37625,9 +37871,9 @@ paths: value: action: revoke responses: - '500': *113 + '500': *115 '404': *6 - '204': *184 + '204': *187 '403': *29 '422': *15 x-github: @@ -37649,7 +37895,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *67 + - *69 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -37659,7 +37905,7 @@ paths: - *17 - *19 responses: - '500': *113 + '500': *115 '404': *6 '403': *29 '200': @@ -37668,11 +37914,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37694,7 +37940,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -37712,7 +37958,7 @@ paths: type: integer configurations: type: array - items: &264 + items: &267 title: Organization private registry description: Private registry configuration for an organization type: object @@ -37792,7 +38038,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *59 + Link: *61 '400': *14 '404': *6 x-github: @@ -37814,7 +38060,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -38002,7 +38248,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &265 + org-private-registry-with-selected-visibility: &268 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -38043,7 +38289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -38069,7 +38315,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -38091,16 +38337,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *264 + schema: *267 examples: - default: *265 + default: *268 '404': *6 x-github: githubCloudOnly: false @@ -38121,8 +38367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -38226,8 +38472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -38250,15 +38496,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *67 + - *69 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -38267,7 +38513,7 @@ paths: application/json: schema: type: array - items: &266 + items: &269 title: Projects v2 Project description: A projects v2 project type: object @@ -38337,7 +38583,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &774 + properties: &777 id: type: number description: The unique identifier of the status update. @@ -38385,7 +38631,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &775 + required: &778 - id - node_id - created_at @@ -38410,7 +38656,7 @@ paths: - deleted_at - deleted_by examples: - default: &267 + default: &270 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -38493,7 +38739,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38513,24 +38759,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &268 + - &271 name: project_number description: The project's number. in: path required: true schema: type: integer - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38550,8 +38796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true description: Details of the draft item to create in the project. @@ -38585,7 +38831,7 @@ paths: description: Response content: application/json: - schema: &274 + schema: &277 title: Projects v2 Item description: An item belonging to a project type: object @@ -38598,8 +38844,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *77 - - &470 + - *79 + - &473 title: Pull Request Simple description: Pull Request Simple type: object @@ -38705,8 +38951,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true active_lock_reason: type: string @@ -38749,7 +38995,7 @@ paths: items: *4 requested_teams: type: array - items: *190 + items: *193 head: type: object properties: @@ -38757,7 +39003,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: @@ -38780,7 +39026,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: @@ -38799,7 +39045,7 @@ paths: _links: type: object properties: - comments: &271 + comments: &274 title: Link description: Hypermedia Link type: object @@ -38808,13 +39054,13 @@ paths: type: string required: - href - commits: *271 - statuses: *271 - html: *271 - issue: *271 - review_comments: *271 - review_comment: *271 - self: *271 + commits: *274 + statuses: *274 + html: *274 + issue: *274 + review_comments: *274 + review_comment: *274 + self: *274 required: - comments - commits @@ -38824,8 +39070,8 @@ paths: - review_comments - review_comment - self - author_association: *74 - auto_merge: &579 + author_association: *76 + auto_merge: &582 title: Auto merge description: The status of auto merging a pull request. type: object @@ -38927,7 +39173,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &273 + content_type: &276 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -38967,7 +39213,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &275 + draft_issue: &278 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -39041,11 +39287,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *268 - - *67 + - *271 + - *69 - *17 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -39053,7 +39299,7 @@ paths: application/json: schema: type: array - items: &272 + items: &275 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -39203,7 +39449,7 @@ paths: - updated_at - project_url examples: - default: &705 + default: &708 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39314,7 +39560,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -39333,8 +39579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *268 - - *67 + - *271 + - *69 requestBody: required: true content: @@ -39380,7 +39626,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &706 + items: &709 type: object properties: name: @@ -39417,7 +39663,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &707 + iteration_configuration: &710 type: object description: The configuration for iteration fields. properties: @@ -39467,7 +39713,7 @@ paths: value: name: Due date data_type: date - single_select_field: &708 + single_select_field: &711 summary: Create a single select field value: name: Priority @@ -39494,7 +39740,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &709 + iteration_field: &712 summary: Create an iteration field value: name: Sprint @@ -39518,9 +39764,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *272 + schema: *275 examples: - text_field: &710 + text_field: &713 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -39529,7 +39775,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &711 + number_field: &714 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -39538,7 +39784,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &712 + date_field: &715 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -39547,7 +39793,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &713 + single_select_field: &716 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39581,7 +39827,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &714 + iteration_field: &717 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -39626,23 +39872,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *268 - - &715 + - *271 + - &718 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: &716 + default: &719 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39677,7 +39923,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -39698,8 +39944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *268 - - *67 + - *271 + - *69 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) for more information. @@ -39721,8 +39967,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -39731,7 +39977,7 @@ paths: application/json: schema: type: array - items: &276 + items: &279 title: Projects v2 Item description: An item belonging to a project type: object @@ -39747,7 +39993,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *273 + content_type: *276 content: type: object additionalProperties: true @@ -39790,7 +40036,7 @@ paths: - updated_at - archived_at examples: - default: &277 + default: &280 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -40467,7 +40713,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40487,8 +40733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -40558,22 +40804,22 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *275 + value: *278 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *275 + value: *278 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *275 + value: *278 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *275 + value: *278 '304': *37 '403': *29 '401': *25 @@ -40593,9 +40839,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *268 - - *67 - - &278 + - *271 + - *69 + - &281 name: item_id description: The unique identifier of the project item. in: path @@ -40621,11 +40867,11 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40644,9 +40890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *268 - - *67 - - *278 + - *271 + - *69 + - *281 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -40716,13 +40962,13 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - text_field: *277 - number_field: *277 - date_field: *277 - single_select_field: *277 - iteration_field: *277 + text_field: *280 + number_field: *280 + date_field: *280 + single_select_field: *280 + iteration_field: *280 '401': *25 '403': *29 '404': *6 @@ -40742,9 +40988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *268 - - *67 - - *278 + - *271 + - *69 + - *281 responses: '204': description: Response @@ -40767,8 +41013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true content: @@ -40839,7 +41085,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &697 + schema: &700 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -40937,7 +41183,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &279 + value: &282 value: id: 1 number: 1 @@ -40983,10 +41229,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *279 + value: *282 roadmap_view: summary: Response for creating a roadmap view - value: *279 + value: *282 '304': *37 '403': *29 '401': *25 @@ -41014,9 +41260,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *268 - - *67 - - &717 + - *271 + - *69 + - &720 name: view_number description: The number that identifies the project view. in: path @@ -41038,8 +41284,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -41048,11 +41294,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -41075,7 +41321,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -41083,7 +41329,7 @@ paths: application/json: schema: type: array - items: &280 + items: &283 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -41151,7 +41397,7 @@ paths: - property_name - value_type examples: - default: &281 + default: &284 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41200,7 +41446,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -41211,7 +41457,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *280 + items: *283 minItems: 1 maxItems: 100 required: @@ -41241,9 +41487,9 @@ paths: application/json: schema: type: array - items: *280 + items: *283 examples: - default: *281 + default: *284 '403': *29 '404': *6 x-github: @@ -41264,8 +41510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *67 - - &282 + - *69 + - &285 name: custom_property_name description: The custom property name in: path @@ -41277,9 +41523,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: &283 + default: &286 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -41313,8 +41559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *67 - - *282 + - *69 + - *285 requestBody: required: true content: @@ -41385,9 +41631,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: *283 + default: *286 '403': *29 '404': *6 x-github: @@ -41410,10 +41656,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *67 - - *282 + - *69 + - *285 responses: - '204': *184 + '204': *187 '403': *29 '404': *6 x-github: @@ -41434,7 +41680,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *67 + - *69 - *17 - *19 - name: repository_query @@ -41472,7 +41718,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &284 + items: &287 title: Custom Property Value description: Custom property name and associated value type: object @@ -41511,7 +41757,7 @@ paths: - property_name: team value: octocat headers: - Link: *59 + Link: *61 '403': *29 '404': *6 x-github: @@ -41539,7 +41785,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *67 + - *69 requestBody: required: true content: @@ -41559,7 +41805,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *284 + items: *287 required: - repository_names - properties @@ -41600,7 +41846,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *67 + - *69 - *17 - *19 responses: @@ -41612,9 +41858,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41631,8 +41877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response if user is a public member @@ -41656,8 +41902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -41678,8 +41924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -41703,7 +41949,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *67 + - *69 - name: type description: Specifies the types of repositories you want returned. in: query @@ -41749,11 +41995,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41772,7 +42018,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *67 + - *69 requestBody: required: true content: @@ -41953,7 +42199,7 @@ paths: description: Response content: application/json: - schema: &335 + schema: &338 title: Full Repository description: Full Repository type: object @@ -42244,8 +42490,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *285 - required: *286 + properties: *288 + required: *289 nullable: true temp_clone_token: type: string @@ -42332,8 +42578,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true organization: title: Simple User @@ -42342,8 +42588,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *71 - source: *71 + parent: *73 + source: *73 forks: type: integer master_branch: @@ -42360,7 +42606,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &475 + properties: &478 url: type: string format: uri @@ -42376,12 +42622,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &476 + required: &479 - url - key - name - html_url - security_and_analysis: *287 + security_and_analysis: *290 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42465,7 +42711,7 @@ paths: - network_count - subscribers_count examples: - default: &337 + default: &340 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42983,10 +43229,10 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - *17 - *19 - - &601 + - &604 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43004,7 +43250,7 @@ paths: application/json: schema: type: array - items: &314 + items: &317 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -43039,7 +43285,7 @@ paths: source: type: string description: The name of the source - enforcement: &290 + enforcement: &293 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -43052,7 +43298,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &291 + items: &294 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -43122,7 +43368,7 @@ paths: conditions: nullable: true anyOf: - - &288 + - &291 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -43146,7 +43392,7 @@ paths: match. items: type: string - - &292 + - &295 title: Organization ruleset conditions type: object description: |- @@ -43160,7 +43406,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -43194,7 +43440,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -43216,7 +43462,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -43229,7 +43475,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &289 + items: &292 title: Repository ruleset property targeting definition type: object @@ -43262,17 +43508,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *289 + items: *292 required: - repository_property rules: type: array - items: &602 + items: &605 title: Repository Rule type: object description: A repository rule. oneOf: - - &293 + - &296 title: creation description: Only allow users with bypass permission to create matching refs. @@ -43284,7 +43530,7 @@ paths: type: string enum: - creation - - &294 + - &297 title: update description: Only allow users with bypass permission to update matching refs. @@ -43305,7 +43551,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &295 + - &298 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -43317,7 +43563,7 @@ paths: type: string enum: - deletion - - &296 + - &299 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -43329,7 +43575,7 @@ paths: type: string enum: - required_linear_history - - &600 + - &603 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -43407,7 +43653,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &297 + - &300 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -43431,7 +43677,7 @@ paths: type: string required: - required_deployment_environments - - &298 + - &301 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -43443,7 +43689,7 @@ paths: type: string enum: - required_signatures - - &299 + - &302 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -43549,7 +43795,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &300 + - &303 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -43597,7 +43843,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &301 + - &304 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -43609,7 +43855,7 @@ paths: type: string enum: - non_fast_forward - - &302 + - &305 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -43646,7 +43892,7 @@ paths: required: - operator - pattern - - &303 + - &306 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -43683,7 +43929,7 @@ paths: required: - operator - pattern - - &304 + - &307 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -43720,7 +43966,7 @@ paths: required: - operator - pattern - - &305 + - &308 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -43757,7 +44003,7 @@ paths: required: - operator - pattern - - &306 + - &309 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -43794,7 +44040,7 @@ paths: required: - operator - pattern - - &307 + - &310 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -43819,7 +44065,7 @@ paths: type: string required: - restricted_file_paths - - &308 + - &311 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -43843,7 +44089,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &309 + - &312 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -43866,7 +44112,7 @@ paths: type: string required: - restricted_file_extensions - - &310 + - &313 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -43891,7 +44137,7 @@ paths: maximum: 100 required: - max_file_size - - &311 + - &314 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -43941,7 +44187,7 @@ paths: - repository_id required: - workflows - - &312 + - &315 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -44002,7 +44248,7 @@ paths: - tool required: - code_scanning_tools - - &313 + - &316 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -44064,7 +44310,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -44080,7 +44326,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 requestBody: description: Request body required: true @@ -44101,23 +44347,20 @@ paths: - push - repository default: branch - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *292 + items: *294 + conditions: *295 rules: type: array description: An array of rules within the ruleset. - items: &316 + items: &319 title: Repository Rule type: object description: A repository rule. oneOf: - - *293 - - *294 - - *295 - *296 - *297 - *298 @@ -44136,6 +44379,9 @@ paths: - *311 - *312 - *313 + - *314 + - *315 + - *316 required: - name - enforcement @@ -44173,9 +44419,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: &315 + default: &318 value: id: 21 name: super cool ruleset @@ -44216,7 +44462,7 @@ paths: updated_at: '2023-09-23T16:29:47Z' '404': *6 '422': *15 - '500': *113 + '500': *115 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -44230,8 +44476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *67 - - &603 + - *69 + - &606 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -44246,7 +44492,7 @@ paths: in: query schema: type: string - - &604 + - &607 name: time_period description: |- The time period to filter by. @@ -44262,14 +44508,14 @@ paths: - week - month default: day - - &605 + - &608 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &606 + - &609 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -44289,7 +44535,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &610 title: Rule Suites description: Response type: array @@ -44344,7 +44590,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &608 + default: &611 value: - id: 21 actor_id: 12 @@ -44368,7 +44614,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44387,8 +44633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *67 - - &609 + - *69 + - &612 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44404,7 +44650,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &613 title: Rule Suite description: Response type: object @@ -44503,7 +44749,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &611 + default: &614 value: id: 21 actor_id: 12 @@ -44538,7 +44784,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44564,7 +44810,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44576,11 +44822,11 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *315 + default: *318 '404': *6 - '500': *113 + '500': *115 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -44596,7 +44842,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44622,16 +44868,16 @@ paths: - tag - push - repository - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *292 + items: *294 + conditions: *295 rules: description: An array of rules within the ruleset. type: array - items: *316 + items: *319 examples: default: value: @@ -44666,12 +44912,12 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *315 + default: *318 '404': *6 '422': *15 - '500': *113 + '500': *115 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -44687,7 +44933,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44698,7 +44944,7 @@ paths: '204': description: Response '404': *6 - '500': *113 + '500': *115 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -44710,7 +44956,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *67 + - *69 - *17 - *19 - name: ruleset_id @@ -44726,7 +44972,7 @@ paths: application/json: schema: type: array - items: &317 + items: &320 title: Ruleset version type: object description: The historical version of a ruleset @@ -44750,7 +44996,7 @@ paths: type: string format: date-time examples: - default: &613 + default: &616 value: - version_id: 3 actor: @@ -44768,7 +45014,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44785,7 +45031,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44803,9 +45049,9 @@ paths: description: Response content: application/json: - schema: &614 + schema: &617 allOf: - - *317 + - *320 - type: object required: - state @@ -44852,7 +45098,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44874,8 +45120,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *67 - - &615 + - *69 + - &618 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -44886,7 +45132,7 @@ paths: enum: - open - resolved - - &616 + - &619 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -44896,7 +45142,7 @@ paths: required: false schema: type: string - - &617 + - &620 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -44905,7 +45151,7 @@ paths: required: false schema: type: string - - &618 + - &621 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -44924,7 +45170,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &619 + - &622 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -44936,10 +45182,10 @@ paths: - created - updated default: created - - *53 + - *55 - *19 - *17 - - &620 + - &623 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -44949,7 +45195,7 @@ paths: required: false schema: type: string - - &621 + - &624 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -44959,7 +45205,7 @@ paths: required: false schema: type: string - - &622 + - &625 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -44968,7 +45214,7 @@ paths: required: false schema: type: string - - &623 + - &626 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -44977,7 +45223,7 @@ paths: schema: type: boolean default: false - - &624 + - &627 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -44986,7 +45232,7 @@ paths: schema: type: boolean default: false - - &625 + - &628 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -45005,8 +45251,8 @@ paths: items: type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -45014,21 +45260,21 @@ paths: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &626 + state: &629 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &627 + resolution: &630 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -45062,7 +45308,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *58 + repository: *60 push_protection_bypassed: type: boolean description: Whether push protection was bypassed for the detected @@ -45135,8 +45381,8 @@ paths: pull request. ' - oneOf: &628 - - &630 + oneOf: &631 + - &633 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -45188,7 +45434,7 @@ paths: - blob_url - commit_sha - commit_url - - &631 + - &634 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -45243,7 +45489,7 @@ paths: - page_url - commit_sha - commit_url - - &632 + - &635 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -45257,7 +45503,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &633 + - &636 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -45271,7 +45517,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &634 + - &637 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -45285,7 +45531,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &635 + - &638 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -45299,7 +45545,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &636 + - &639 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -45313,7 +45559,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &637 + - &640 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -45327,7 +45573,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &638 + - &641 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -45341,7 +45587,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &639 + - &642 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -45355,7 +45601,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &640 + - &643 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -45369,7 +45615,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &641 + - &644 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -45383,7 +45629,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &642 + - &645 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -45586,9 +45832,9 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45613,7 +45859,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *67 + - *69 responses: '200': description: Response @@ -45625,7 +45871,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &319 + pattern_config_version: &322 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -45634,7 +45880,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &318 + items: &321 type: object properties: token_type: @@ -45700,7 +45946,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *318 + items: *321 examples: default: value: @@ -45749,7 +45995,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *67 + - *69 requestBody: required: true content: @@ -45757,7 +46003,7 @@ paths: schema: type: object properties: - pattern_config_version: *319 + pattern_config_version: *322 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -45783,7 +46029,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *319 + custom_pattern_version: *322 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -45819,7 +46065,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 "/orgs/{org}/security-advisories": get: @@ -45837,8 +46083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *67 - - *53 + - *69 + - *55 - name: sort description: The property to sort the results by. in: query @@ -45850,8 +46096,8 @@ paths: - updated - published default: created - - *45 - - *46 + - *47 + - *48 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -45881,7 +46127,7 @@ paths: application/json: schema: type: array - items: &646 + items: &649 description: A repository security advisory. type: object properties: @@ -46068,7 +46314,7 @@ paths: required: - vector_string - score - cvss_severities: *55 + cvss_severities: *57 cwes: type: array nullable: true @@ -46101,7 +46347,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 credits_detailed: type: array nullable: true @@ -46111,7 +46357,7 @@ paths: type: object properties: user: *4 - type: *320 + type: *323 state: type: string description: The state of the user's acceptance of the @@ -46135,14 +46381,14 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *190 + items: *193 private_fork: readOnly: true nullable: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *58 + - *60 required: - ghsa_id - cve_id @@ -46172,7 +46418,7 @@ paths: - private_fork additionalProperties: false examples: - default: &647 + default: &650 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -46551,7 +46797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *67 + - *69 responses: '200': description: Response @@ -46559,7 +46805,7 @@ paths: application/json: schema: type: array - items: *321 + items: *324 examples: default: value: @@ -46599,8 +46845,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -46625,8 +46871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -46653,7 +46899,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Immutable releases settings response @@ -46702,7 +46948,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -46759,7 +47005,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *67 + - *69 - *19 - *17 responses: @@ -46777,9 +47023,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46798,7 +47044,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *67 + - *69 requestBody: required: true content: @@ -46847,8 +47093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -46870,8 +47116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -46894,7 +47140,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -46912,7 +47158,7 @@ paths: type: integer network_configurations: type: array - items: &322 + items: &325 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -46983,7 +47229,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47002,7 +47248,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -47045,9 +47291,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: &323 + default: &326 value: id: 123456789ABCDEF name: My network configuration @@ -47075,8 +47321,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 - - &324 + - *69 + - &327 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -47088,11 +47334,11 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *323 + default: *326 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47111,8 +47357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 - - *324 + - *69 + - *327 requestBody: required: true content: @@ -47152,9 +47398,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *323 + default: *326 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47173,8 +47419,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - - *67 - - *324 + - *69 + - *327 responses: '204': description: Response @@ -47197,7 +47443,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - - *67 + - *69 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -47251,7 +47497,7 @@ paths: subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" region: eastus headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47281,8 +47527,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *67 - *69 + - *71 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -47314,13 +47560,13 @@ paths: application/json: schema: type: array - items: *325 + items: *328 examples: - default: *326 - '500': *113 + default: *329 + '500': *115 '403': *29 '404': *6 - '422': *327 + '422': *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47338,7 +47584,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *67 + - *69 - *17 - *19 - name: team_type @@ -47360,11 +47606,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -47384,7 +47630,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *67 + - *69 requestBody: required: true content: @@ -47456,7 +47702,7 @@ paths: description: Response content: application/json: - schema: &328 + schema: &331 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -47519,8 +47765,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 nullable: true members_count: type: integer @@ -47783,7 +48029,7 @@ paths: - repos_count - organization examples: - default: &329 + default: &332 value: id: 1 node_id: MDQ6VGVhbTE= @@ -47853,16 +48099,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *67 - *69 + - *71 responses: '200': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 x-github: githubCloudOnly: false @@ -47883,8 +48129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *67 - *69 + - *71 requestBody: required: false content: @@ -47946,16 +48192,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '201': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 '422': *15 '403': *29 @@ -47980,12 +48226,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response - '422': &330 + '422': &333 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -48008,8 +48254,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -48019,12 +48265,12 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 - '422': *330 + Link: *61 + '422': *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48044,8 +48290,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *67 - *69 + - *71 - name: role description: Filters members returned by their role in the team. in: query @@ -48068,9 +48314,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48098,15 +48344,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 responses: '200': description: Response content: application/json: - schema: &331 + schema: &334 title: Team Membership description: Team Membership type: object @@ -48133,7 +48379,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &663 + response-if-user-is-a-team-maintainer: &666 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48169,9 +48415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 requestBody: required: false content: @@ -48196,9 +48442,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-users-membership-with-team-is-now-pending: &664 + response-if-users-membership-with-team-is-now-pending: &667 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48233,9 +48479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 responses: '204': description: Response @@ -48261,8 +48507,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -48272,11 +48518,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48303,16 +48549,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &665 + schema: &668 title: Team Repository description: A team's access to a repository. type: object @@ -48335,8 +48581,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true forks: type: integer @@ -48881,10 +49127,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 requestBody: required: false content: @@ -48929,10 +49175,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 responses: '204': description: Response @@ -48956,8 +49202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -48967,9 +49213,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - response-if-child-teams-exist: &666 + response-if-child-teams-exist: &669 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48997,7 +49243,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49022,7 +49268,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *67 + - *69 - name: security_product in: path description: The security feature to enable or disable. @@ -49123,7 +49369,7 @@ paths: resources: type: object properties: - core: &334 + core: &337 title: Rate Limit type: object properties: @@ -49140,21 +49386,21 @@ paths: - remaining - reset - used - graphql: *334 - search: *334 - code_search: *334 - source_import: *334 - integration_manifest: *334 - code_scanning_upload: *334 - actions_runner_registration: *334 - scim: *334 - dependency_snapshots: *334 - dependency_sbom: *334 - code_scanning_autofix: *334 + graphql: *337 + search: *337 + code_search: *337 + source_import: *337 + integration_manifest: *337 + code_scanning_upload: *337 + actions_runner_registration: *337 + scim: *337 + dependency_snapshots: *337 + dependency_sbom: *337 + code_scanning_autofix: *337 required: - core - search - rate: *334 + rate: *337 required: - rate - resources @@ -49259,14 +49505,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *335 + schema: *338 examples: default-response: summary: Default response @@ -49771,7 +50017,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *336 + '301': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49789,8 +50035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -50081,10 +50327,10 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 - '307': &338 + default: *340 + '307': &341 description: Temporary Redirect content: application/json: @@ -50113,8 +50359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -50136,9 +50382,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *338 + '307': *341 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50160,11 +50406,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - - &371 + - &374 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -50187,7 +50433,7 @@ paths: type: integer artifacts: type: array - items: &339 + items: &342 title: Artifact description: An artifact type: object @@ -50265,7 +50511,7 @@ paths: - expires_at - updated_at examples: - default: &372 + default: &375 value: total_count: 2 artifacts: @@ -50304,7 +50550,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50326,9 +50572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *332 - - *333 - - &340 + - *335 + - *336 + - &343 name: artifact_id description: The unique identifier of the artifact. in: path @@ -50340,7 +50586,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *342 examples: default: value: @@ -50378,9 +50624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *332 - - *333 - - *340 + - *335 + - *336 + - *343 responses: '204': description: Response @@ -50404,9 +50650,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *332 - - *333 - - *340 + - *335 + - *336 + - *343 - name: archive_format in: path required: true @@ -50420,7 +50666,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &532 + '410': &535 description: Gone content: application/json: @@ -50445,14 +50691,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &341 + schema: &344 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -50485,13 +50731,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *341 + schema: *344 examples: selected_actions: *42 responses: @@ -50520,14 +50766,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &342 + schema: &345 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -50560,13 +50806,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *342 + schema: *345 examples: selected_actions: *44 responses: @@ -50597,14 +50843,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *343 + schema: *346 examples: default: value: @@ -50630,11 +50876,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - - &344 + - &347 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -50662,13 +50908,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *53 + - *55 responses: '200': description: Response content: application/json: - schema: &345 + schema: &348 title: Repository actions caches description: Repository actions caches type: object @@ -50710,7 +50956,7 @@ paths: - total_count - actions_caches examples: - default: &346 + default: &349 value: total_count: 1 actions_caches: @@ -50722,7 +50968,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50742,23 +50988,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *332 - - *333 + - *335 + - *336 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *344 + - *347 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50778,8 +51024,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *332 - - *333 + - *335 + - *336 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50810,9 +51056,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *332 - - *333 - - &347 + - *335 + - *336 + - &350 name: job_id description: The unique identifier of the job. in: path @@ -50824,7 +51070,7 @@ paths: description: Response content: application/json: - schema: &375 + schema: &378 title: Job description: Information of a job execution in a workflow run type: object @@ -51131,9 +51377,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *332 - - *333 - - *347 + - *335 + - *336 + - *350 responses: '302': description: Response @@ -51161,9 +51407,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *332 - - *333 - - *347 + - *335 + - *336 + - *350 requestBody: required: false content: @@ -51184,7 +51430,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -51208,8 +51454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Status response @@ -51259,8 +51505,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -51294,7 +51540,7 @@ paths: description: Empty response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -51323,8 +51569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -51342,7 +51588,7 @@ paths: type: integer secrets: type: array - items: &377 + items: &380 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -51362,7 +51608,7 @@ paths: - created_at - updated_at examples: - default: &378 + default: &381 value: total_count: 2 secrets: @@ -51373,7 +51619,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51395,9 +51641,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *332 - - *333 - - *348 + - *335 + - *336 + - *351 - *19 responses: '200': @@ -51414,7 +51660,7 @@ paths: type: integer variables: type: array - items: &381 + items: &384 title: Actions Variable type: object properties: @@ -51444,7 +51690,7 @@ paths: - created_at - updated_at examples: - default: &382 + default: &385 value: total_count: 2 variables: @@ -51457,7 +51703,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51477,8 +51723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -51487,12 +51733,12 @@ paths: schema: type: object properties: - enabled: &350 + enabled: &353 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *138 - selected_actions_url: *349 - sha_pinning_required: *139 + allowed_actions: *141 + selected_actions_url: *352 + sha_pinning_required: *142 required: - enabled examples: @@ -51520,8 +51766,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51532,9 +51778,9 @@ paths: schema: type: object properties: - enabled: *350 - allowed_actions: *138 - sha_pinning_required: *139 + enabled: *353 + allowed_actions: *141 + sha_pinning_required: *142 required: - enabled examples: @@ -51564,14 +51810,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &351 + schema: &354 type: object properties: access_level: @@ -51588,7 +51834,7 @@ paths: required: - access_level examples: - default: &352 + default: &355 value: access_level: organization x-github: @@ -51612,15 +51858,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *351 + schema: *354 examples: - default: *352 + default: *355 responses: '204': description: Response @@ -51644,14 +51890,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *353 + schema: *356 examples: default: value: @@ -51675,8 +51921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Empty response for successful settings update @@ -51686,7 +51932,7 @@ paths: required: true content: application/json: - schema: *354 + schema: *357 examples: default: summary: Set retention days @@ -51710,16 +51956,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *140 + schema: *143 examples: - default: *355 + default: *358 '404': *6 x-github: enabledForGitHubApps: true @@ -51738,8 +51984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51749,7 +51995,7 @@ paths: required: true content: application/json: - schema: *140 + schema: *143 examples: default: summary: Set approval policy to first time contributors @@ -51773,16 +52019,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *356 + schema: *359 examples: - default: *141 + default: *144 '403': *29 '404': *6 x-github: @@ -51802,15 +52048,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *357 + schema: *360 examples: - default: *141 + default: *144 responses: '204': description: Empty response for successful settings update @@ -51834,16 +52080,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *143 + schema: *146 examples: - default: *144 + default: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -51862,8 +52108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51871,9 +52117,9 @@ paths: required: false content: application/json: - schema: *143 + schema: *146 examples: - selected_actions: *144 + selected_actions: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -51895,16 +52141,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51925,8 +52171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Success response @@ -51937,9 +52183,9 @@ paths: required: true content: application/json: - schema: *359 + schema: *362 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51966,8 +52212,8 @@ paths: in: query schema: type: string - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -51985,11 +52231,11 @@ paths: type: integer runners: type: array - items: *155 + items: *158 examples: - default: *156 + default: *159 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52011,8 +52257,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -52020,9 +52266,9 @@ paths: application/json: schema: type: array - items: *360 + items: *363 examples: - default: *361 + default: *364 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52044,8 +52290,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -52088,10 +52334,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *362 + '201': *365 '404': *6 '422': *7 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52119,16 +52365,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52156,16 +52402,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: *364 + default: *367 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52187,17 +52433,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: '200': description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: *365 + default: *368 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52218,9 +52464,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: '204': description: Response @@ -52246,11 +52492,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: - '200': *159 + '200': *162 '404': *6 x-github: githubCloudOnly: false @@ -52272,9 +52518,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 requestBody: required: true content: @@ -52298,7 +52544,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -52322,9 +52568,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 requestBody: required: true content: @@ -52349,7 +52595,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -52373,11 +52619,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: - '200': *366 + '200': *369 '404': *6 x-github: githubCloudOnly: false @@ -52404,12 +52650,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 - - *367 + - *335 + - *336 + - *157 + - *370 responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -52435,9 +52681,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *332 - - *333 - - &385 + - *335 + - *336 + - &388 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -52445,7 +52691,7 @@ paths: required: false schema: type: string - - &386 + - &389 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52453,7 +52699,7 @@ paths: required: false schema: type: string - - &387 + - &390 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52462,7 +52708,7 @@ paths: required: false schema: type: string - - &388 + - &391 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -52489,7 +52735,7 @@ paths: - pending - *17 - *19 - - &389 + - &392 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -52498,7 +52744,7 @@ paths: schema: type: string format: date-time - - &368 + - &371 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52507,13 +52753,13 @@ paths: schema: type: boolean default: false - - &390 + - &393 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &391 + - &394 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52536,7 +52782,7 @@ paths: type: integer workflow_runs: type: array - items: &369 + items: &372 title: Workflow Run description: An invocation of a workflow type: object @@ -52631,7 +52877,7 @@ paths: that triggered the run. type: array nullable: true - items: *82 + items: *84 created_at: type: string format: date-time @@ -52684,7 +52930,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &413 + properties: &416 id: type: string description: SHA for the commit @@ -52735,7 +52981,7 @@ paths: - name - email nullable: true - required: &414 + required: &417 - id - tree_id - message @@ -52743,8 +52989,8 @@ paths: - author - committer nullable: true - repository: *153 - head_repository: *153 + repository: *156 + head_repository: *156 head_repository_id: type: integer example: 5 @@ -52782,7 +53028,7 @@ paths: - workflow_url - pull_requests examples: - default: &392 + default: &395 value: total_count: 1 workflow_runs: @@ -52996,7 +53242,7 @@ paths: releases_url: https://api.github.com/repos/octo-org/octo-repo/releases{/id} deployments_url: https://api.github.com/repos/octo-org/octo-repo/deployments headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53018,24 +53264,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *332 - - *333 - - &370 + - *335 + - *336 + - &373 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *368 + - *371 responses: '200': description: Response content: application/json: - schema: *369 + schema: *372 examples: - default: &373 + default: &376 value: id: 30433642 name: Build @@ -53276,9 +53522,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '204': description: Response @@ -53301,9 +53547,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -53422,15 +53668,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -53457,13 +53703,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 - *17 - *19 - - *371 - - *53 + - *374 + - *55 responses: '200': description: Response @@ -53479,11 +53725,11 @@ paths: type: integer artifacts: type: array - items: *339 + items: *342 examples: - default: *372 + default: *375 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53505,25 +53751,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *332 - - *333 - - *370 - - &374 + - *335 + - *336 + - *373 + - &377 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *368 + - *371 responses: '200': description: Response content: application/json: - schema: *369 + schema: *372 examples: - default: *373 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53546,10 +53792,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *332 - - *333 - - *370 - - *374 + - *335 + - *336 + - *373 + - *377 - *17 - *19 responses: @@ -53567,9 +53813,9 @@ paths: type: integer jobs: type: array - items: *375 + items: *378 examples: - default: &376 + default: &379 value: total_count: 1 jobs: @@ -53658,7 +53904,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -53682,10 +53928,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *332 - - *333 - - *370 - - *374 + - *335 + - *336 + - *373 + - *377 responses: '302': description: Response @@ -53713,19 +53959,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '202': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53748,9 +53994,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: true content: @@ -53817,19 +54063,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '202': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53852,9 +54098,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -53884,11 +54130,11 @@ paths: type: integer jobs: type: array - items: *375 + items: *378 examples: - default: *376 + default: *379 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53911,9 +54157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '302': description: Response @@ -53940,14 +54186,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '204': description: Response '403': *29 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53969,9 +54215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -54031,7 +54277,7 @@ paths: items: type: object properties: - type: &498 + type: &501 type: string description: The type of reviewer. enum: @@ -54041,7 +54287,7 @@ paths: reviewer: anyOf: - *4 - - *190 + - *193 required: - environment - wait_timer @@ -54116,9 +54362,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: true content: @@ -54165,12 +54411,12 @@ paths: application/json: schema: type: array - items: &493 + items: &496 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &737 + properties: &740 url: type: string format: uri @@ -54253,9 +54499,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - required: &738 + properties: *74 + required: *75 + required: &741 - id - node_id - sha @@ -54271,7 +54517,7 @@ paths: - created_at - updated_at examples: - default: &494 + default: &497 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -54327,9 +54573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: false content: @@ -54350,7 +54596,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54373,9 +54619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: false content: @@ -54396,7 +54642,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54428,9 +54674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -54567,8 +54813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -54586,11 +54832,11 @@ paths: type: integer secrets: type: array - items: *377 + items: *380 examples: - default: *378 + default: *381 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54613,16 +54859,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: - default: *380 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54644,17 +54890,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: &511 + default: &514 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54680,9 +54926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -54713,7 +54959,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54739,9 +54985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -54766,9 +55012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *332 - - *333 - - *348 + - *335 + - *336 + - *351 - *19 responses: '200': @@ -54785,11 +55031,11 @@ paths: type: integer variables: type: array - items: *381 + items: *384 examples: - default: *382 + default: *385 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54810,8 +55056,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -54838,7 +55084,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54863,17 +55109,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: &512 + default: &515 value: name: USERNAME value: octocat @@ -54899,9 +55145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 requestBody: required: true content: @@ -54943,9 +55189,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 responses: '204': description: Response @@ -54970,8 +55216,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -54989,7 +55235,7 @@ paths: type: integer workflows: type: array - items: &383 + items: &386 title: Workflow description: A GitHub Actions workflow type: object @@ -55073,7 +55319,7 @@ paths: html_url: https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289 badge_url: https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55096,9 +55342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *332 - - *333 - - &384 + - *335 + - *336 + - &387 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -55113,7 +55359,7 @@ paths: description: Response content: application/json: - schema: *383 + schema: *386 examples: default: value: @@ -55146,9 +55392,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '204': description: Response @@ -55173,9 +55419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -55262,9 +55508,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '204': description: Response @@ -55291,19 +55537,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *332 - - *333 - - *384 - - *385 - - *386 + - *335 + - *336 - *387 - *388 - - *17 - - *19 - *389 - - *368 - *390 - *391 + - *17 + - *19 + - *392 + - *371 + - *393 + - *394 responses: '200': description: Response @@ -55319,11 +55565,11 @@ paths: type: integer workflow_runs: type: array - items: *369 + items: *372 examples: - default: *392 + default: *395 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55353,9 +55599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '200': description: Response @@ -55416,12 +55662,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *332 - - *333 - - *53 + - *335 + - *336 + - *55 - *17 - - *45 - - *46 + - *47 + - *48 - name: ref description: |- The Git reference for the activities you want to list. @@ -55562,7 +55808,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '422': *7 x-github: githubCloudOnly: false @@ -55581,8 +55827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -55594,9 +55840,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -55619,8 +55865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *332 - - *333 + - *335 + - *336 - name: assignee in: path required: true @@ -55656,8 +55902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -55769,11 +56015,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *332 - - *333 + - *335 + - *336 - *17 - - *45 - - *46 + - *47 + - *48 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -55827,7 +56073,7 @@ paths: initiator: type: string examples: - default: *393 + default: *396 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55847,8 +56093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -55856,7 +56102,7 @@ paths: application/json: schema: type: array - items: &394 + items: &397 title: Autolink reference description: An autolink reference. type: object @@ -55910,8 +56156,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -55950,9 +56196,9 @@ paths: description: response content: application/json: - schema: *394 + schema: *397 examples: - default: &395 + default: &398 value: id: 1 key_prefix: TICKET- @@ -55983,9 +56229,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *332 - - *333 - - &396 + - *335 + - *336 + - &399 name: autolink_id description: The unique identifier of the autolink. in: path @@ -55997,9 +56243,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *397 examples: - default: *395 + default: *398 '404': *6 x-github: githubCloudOnly: false @@ -56019,9 +56265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *332 - - *333 - - *396 + - *335 + - *336 + - *399 responses: '204': description: Response @@ -56045,8 +56291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response if Dependabot is enabled @@ -56094,8 +56340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -56116,8 +56362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -56137,8 +56383,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *332 - - *333 + - *335 + - *336 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -56176,7 +56422,7 @@ paths: - url protected: type: boolean - protection: &398 + protection: &401 title: Branch Protection description: Branch Protection type: object @@ -56218,7 +56464,7 @@ paths: required: - contexts - checks - enforce_admins: &401 + enforce_admins: &404 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -56233,7 +56479,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &403 + required_pull_request_reviews: &406 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -56254,7 +56500,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *190 + items: *193 apps: description: The list of apps with review dismissal access. @@ -56283,7 +56529,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *190 + items: *193 apps: description: The list of apps allowed to bypass pull request requirements. @@ -56309,7 +56555,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &400 + restrictions: &403 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -56372,7 +56618,7 @@ paths: type: string teams: type: array - items: *190 + items: *193 apps: type: array items: @@ -56568,7 +56814,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -56586,9 +56832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *332 - - *333 - - &399 + - *335 + - *336 + - &402 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -56602,14 +56848,14 @@ paths: description: Response content: application/json: - schema: &409 + schema: &412 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &466 + commit: &469 title: Commit description: Commit type: object @@ -56643,7 +56889,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &397 + properties: &400 name: type: string example: '"Chris Wanstrath"' @@ -56659,7 +56905,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true message: type: string @@ -56680,7 +56926,7 @@ paths: required: - sha - url - verification: &518 + verification: &521 title: Verification type: object properties: @@ -56714,12 +56960,12 @@ paths: nullable: true oneOf: - *4 - - *162 + - *165 committer: nullable: true oneOf: - *4 - - *162 + - *165 parents: type: array items: @@ -56750,7 +56996,7 @@ paths: type: integer files: type: array - items: &479 + items: &482 title: Diff Entry description: Diff Entry type: object @@ -56834,7 +57080,7 @@ paths: - self protected: type: boolean - protection: *398 + protection: *401 protection_url: type: string format: uri @@ -56941,7 +57187,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *336 + '301': *339 '404': *6 x-github: githubCloudOnly: false @@ -56963,15 +57209,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: default: value: @@ -57165,9 +57411,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -57422,7 +57668,7 @@ paths: url: type: string format: uri - required_status_checks: &406 + required_status_checks: &409 title: Status Check Policy description: Status Check Policy type: object @@ -57498,7 +57744,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 apps: type: array items: *5 @@ -57516,7 +57762,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 apps: type: array items: *5 @@ -57574,7 +57820,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *400 + restrictions: *403 required_conversation_resolution: type: object properties: @@ -57686,9 +57932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57713,17 +57959,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &402 + default: &405 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -57745,17 +57991,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *402 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57774,9 +58020,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57801,17 +58047,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: &404 + default: &407 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -57907,9 +58153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58007,9 +58253,9 @@ paths: description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: *404 + default: *407 '422': *15 x-github: githubCloudOnly: false @@ -58030,9 +58276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -58059,17 +58305,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &405 + default: &408 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -58092,17 +58338,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *405 + default: *408 '404': *6 x-github: githubCloudOnly: false @@ -58122,9 +58368,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -58149,17 +58395,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *406 + schema: *409 examples: - default: &407 + default: &410 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -58185,9 +58431,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58239,9 +58485,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *409 examples: - default: *407 + default: *410 '404': *6 '422': *15 x-github: @@ -58263,9 +58509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -58289,9 +58535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58325,9 +58571,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58394,9 +58640,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58460,9 +58706,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: content: application/json: @@ -58528,15 +58774,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *400 + schema: *403 examples: default: value: @@ -58627,9 +58873,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -58652,9 +58898,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58664,7 +58910,7 @@ paths: type: array items: *5 examples: - default: &408 + default: &411 value: - id: 1 slug: octoapp @@ -58721,9 +58967,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58757,7 +59003,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58778,9 +59024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58814,7 +59060,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58835,9 +59081,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58871,7 +59117,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58893,9 +59139,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58903,9 +59149,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '404': *6 x-github: githubCloudOnly: false @@ -58925,9 +59171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58963,9 +59209,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -58986,9 +59232,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -59024,9 +59270,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -59047,9 +59293,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: content: application/json: @@ -59084,9 +59330,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -59108,9 +59354,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -59120,7 +59366,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '404': *6 x-github: githubCloudOnly: false @@ -59144,9 +59390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -59179,7 +59425,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -59204,9 +59450,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -59239,7 +59485,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -59264,9 +59510,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -59299,7 +59545,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -59326,9 +59572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -59350,7 +59596,7 @@ paths: description: Response content: application/json: - schema: *409 + schema: *412 examples: default: value: @@ -59466,8 +59712,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -59746,7 +59992,7 @@ paths: description: Response content: application/json: - schema: &410 + schema: &413 title: CheckRun description: A check performed on the code of a given code change type: object @@ -59857,16 +60103,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *82 - deployment: &730 + items: *84 + deployment: &733 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -59933,8 +60179,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -60146,9 +60392,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *332 - - *333 - - &411 + - *335 + - *336 + - &414 name: check_run_id description: The unique identifier of the check run. in: path @@ -60160,9 +60406,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *413 examples: - default: &412 + default: &415 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -60262,9 +60508,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 requestBody: required: true content: @@ -60504,9 +60750,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *413 examples: - default: *412 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60526,9 +60772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 - *17 - *19 responses: @@ -60603,7 +60849,7 @@ paths: raw_details: Do you mean 'bananas' or 'banana'? blob_href: https://api.github.com/repos/github/rest-api-description/git/blobs/abc headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60623,15 +60869,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -60669,8 +60915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -60692,7 +60938,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &415 + schema: &418 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -60756,7 +61002,7 @@ paths: nullable: true pull_requests: type: array - items: *82 + items: *84 nullable: true app: title: GitHub app @@ -60767,9 +61013,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - repository: *153 + properties: *74 + required: *75 + repository: *156 created_at: type: string format: date-time @@ -60778,12 +61024,12 @@ paths: type: string format: date-time nullable: true - head_commit: &758 + head_commit: &761 title: Simple Commit description: A commit. type: object - properties: *413 - required: *414 + properties: *416 + required: *417 latest_check_runs_count: type: integer check_runs_url: @@ -60811,7 +61057,7 @@ paths: - check_runs_url - pull_requests examples: - default: &416 + default: &419 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -61102,9 +61348,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *415 + schema: *418 examples: - default: *416 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61123,8 +61369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -61185,7 +61431,7 @@ paths: required: - app_id - setting - repository: *153 + repository: *156 examples: default: value: @@ -61433,9 +61679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *332 - - *333 - - &417 + - *335 + - *336 + - &420 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61447,9 +61693,9 @@ paths: description: Response content: application/json: - schema: *415 + schema: *418 examples: - default: *416 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61472,17 +61718,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *332 - - *333 - - *417 - - &472 + - *335 + - *336 + - *420 + - &475 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &473 + - &476 name: status description: Returns check runs with the specified `status`. in: query @@ -61521,9 +61767,9 @@ paths: type: integer check_runs: type: array - items: *410 + items: *413 examples: - default: &474 + default: &477 value: total_count: 1 check_runs: @@ -61605,7 +61851,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61625,15 +61871,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *332 - - *333 - - *417 + - *335 + - *336 + - *420 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -61660,30 +61906,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *332 - - *333 - - *418 - - *419 + - *335 + - *336 + - *421 + - *422 - *19 - *17 - - &436 + - &439 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *420 - - &437 + schema: *423 + - &440 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *53 - - *45 - - *46 + - *55 + - *47 + - *48 - name: sort description: The property by which to sort the results. in: query @@ -61699,13 +61945,13 @@ paths: be returned. in: query required: false - schema: *421 + schema: *424 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *422 + schema: *425 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -61724,14 +61970,14 @@ paths: items: type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: *423 - state: *180 - fixed_at: *176 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: *426 + state: *183 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -61739,12 +61985,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: *424 - dismissed_comment: *425 - rule: *426 - tool: *427 - most_recent_instance: *428 + dismissed_at: *180 + dismissed_reason: *427 + dismissed_comment: *428 + rule: *429 + tool: *430 + most_recent_instance: *431 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -61870,14 +62116,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &429 + '403': &432 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61897,9 +62143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *332 - - *333 - - &430 + - *335 + - *336 + - &433 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -61907,23 +62153,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *171 + schema: *174 responses: '200': description: Response content: application/json: - schema: &431 + schema: &434 type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: *423 - state: *180 - fixed_at: *176 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: *426 + state: *183 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -61931,9 +62177,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_at: *180 + dismissed_reason: *427 + dismissed_comment: *428 rule: type: object properties: @@ -61987,8 +62233,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *427 - most_recent_instance: *428 + tool: *430 + most_recent_instance: *431 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -62087,9 +62333,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62107,9 +62353,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: true content: @@ -62124,8 +62370,8 @@ paths: enum: - open - dismissed - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_reason: *427 + dismissed_comment: *428 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -62153,7 +62399,7 @@ paths: description: Response content: application/json: - schema: *431 + schema: *434 examples: default: value: @@ -62229,14 +62475,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &435 + '403': &438 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62256,15 +62502,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 responses: '200': description: Response content: application/json: - schema: &432 + schema: &435 type: object properties: status: @@ -62290,13 +62536,13 @@ paths: - description - started_at examples: - default: &433 + default: &436 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &434 + '400': &437 description: Bad Request content: application/json: @@ -62307,9 +62553,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62332,29 +62578,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 responses: '200': description: OK content: application/json: - schema: *432 + schema: *435 examples: - default: *433 + default: *436 '202': description: Accepted content: application/json: - schema: *432 + schema: *435 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *434 + '400': *437 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -62364,7 +62610,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62386,9 +62632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: false content: @@ -62433,12 +62679,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *434 - '403': *435 + '400': *437 + '403': *438 '404': *6 '422': description: Unprocessable Entity - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62458,13 +62704,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 - *19 - *17 - - *436 - - *437 + - *439 + - *440 responses: '200': description: Response @@ -62475,10 +62721,10 @@ paths: items: type: object properties: - ref: *420 - analysis_key: *438 - environment: *439 - category: *440 + ref: *423 + analysis_key: *441 + environment: *442 + category: *443 state: type: string description: State of a code scanning alert instance. @@ -62493,7 +62739,7 @@ paths: properties: text: type: string - location: *441 + location: *444 html_url: type: string classifications: @@ -62501,7 +62747,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *442 + items: *445 examples: default: value: @@ -62538,9 +62784,9 @@ paths: end_column: 50 classifications: - source - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62572,29 +62818,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *332 - - *333 - - *418 - - *419 + - *335 + - *336 + - *421 + - *422 - *19 - *17 - - *437 + - *440 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *420 + schema: *423 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &443 + schema: &446 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *53 + - *55 - name: sort description: The property by which to sort the results. in: query @@ -62611,23 +62857,23 @@ paths: application/json: schema: type: array - items: &444 + items: &447 type: object properties: - ref: *420 - commit_sha: &452 + ref: *423 + commit_sha: &455 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *438 + analysis_key: *441 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *440 + category: *443 error: type: string example: error reading field xyz @@ -62651,8 +62897,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *443 - tool: *427 + sarif_id: *446 + tool: *430 deletable: type: boolean warning: @@ -62713,9 +62959,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62749,8 +62995,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62763,7 +63009,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: response: summary: application/json response @@ -62817,14 +63063,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *429 + '403': *432 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62904,8 +63150,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62958,9 +63204,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *435 + '403': *438 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62980,8 +63226,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -62989,7 +63235,7 @@ paths: application/json: schema: type: array - items: &445 + items: &448 title: CodeQL Database description: A CodeQL database. type: object @@ -63100,9 +63346,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63129,8 +63375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: language in: path description: The language of the CodeQL database. @@ -63142,7 +63388,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: default: value: @@ -63174,11 +63420,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &481 + '302': &484 description: Found - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63198,8 +63444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *332 - - *333 + - *335 + - *336 - name: language in: path description: The language of the CodeQL database. @@ -63209,9 +63455,9 @@ paths: responses: '204': description: Response - '403': *435 + '403': *438 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63237,8 +63483,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -63247,7 +63493,7 @@ paths: type: object additionalProperties: false properties: - language: &446 + language: &449 type: string description: The language targeted by the CodeQL query enum: @@ -63327,7 +63573,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &450 + schema: &453 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -63335,9 +63581,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *58 + controller_repo: *60 actor: *4 - query_language: *446 + query_language: *449 query_pack_url: type: string description: The download url for the query pack. @@ -63384,7 +63630,7 @@ paths: items: type: object properties: - repository: &447 + repository: &450 title: Repository Identifier description: Repository Identifier type: object @@ -63420,7 +63666,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &451 + analysis_status: &454 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63452,7 +63698,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &448 + access_mismatch_repos: &451 type: object properties: repository_count: @@ -63466,7 +63712,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *447 + items: *450 required: - repository_count - repositories @@ -63488,8 +63734,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *448 - over_limit_repos: *448 + no_codeql_db_repos: *451 + over_limit_repos: *451 required: - access_mismatch_repos - not_found_repos @@ -63505,7 +63751,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &449 + value: &452 summary: Default response value: id: 1 @@ -63651,17 +63897,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *449 + value: *452 repository_lists: summary: Response for a successful variant analysis submission - value: *449 + value: *452 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63682,8 +63928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *332 - - *333 + - *335 + - *336 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -63695,11 +63941,11 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: - default: *449 + default: *452 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63720,7 +63966,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *332 + - *335 - name: repo in: path description: The name of the controller repository. @@ -63754,8 +64000,8 @@ paths: schema: type: object properties: - repository: *58 - analysis_status: *451 + repository: *60 + analysis_status: *454 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -63859,7 +64105,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63880,8 +64126,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -63966,9 +64212,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63987,8 +64233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -64055,7 +64301,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -64080,7 +64326,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *435 + '403': *438 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -64094,7 +64340,7 @@ paths: content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64151,8 +64397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -64160,7 +64406,7 @@ paths: schema: type: object properties: - commit_sha: *452 + commit_sha: *455 ref: type: string description: |- @@ -64218,7 +64464,7 @@ paths: schema: type: object properties: - id: *443 + id: *446 url: type: string description: The REST API URL for checking the status of the upload. @@ -64232,11 +64478,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *435 + '403': *438 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64255,8 +64501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *332 - - *333 + - *335 + - *336 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -64302,10 +64548,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *429 + '403': *432 '404': description: Not Found if the sarif id does not match any upload - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -64327,8 +64573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -64352,7 +64598,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *47 + configuration: *49 examples: default: value: @@ -64384,7 +64630,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *184 + '204': *187 '304': *37 '403': *29 '404': *6 @@ -64409,8 +64655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -64530,8 +64776,8 @@ paths: parameters: - *17 - *19 - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -64547,7 +64793,7 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: default: value: @@ -64823,7 +65069,7 @@ paths: start_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop recent_folders: [] - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -64845,8 +65091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -64909,22 +65155,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -64948,8 +65194,8 @@ paths: parameters: - *17 - *19 - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -64989,7 +65235,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *113 + '500': *115 '400': *14 '401': *25 '403': *29 @@ -65013,8 +65259,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -65049,14 +65295,14 @@ paths: type: integer machines: type: array - items: &673 + items: &676 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *454 - required: *455 + properties: *457 + required: *458 examples: - default: &674 + default: &677 value: total_count: 2 machines: @@ -65073,7 +65319,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -65096,8 +65342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -65181,8 +65427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -65227,7 +65473,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65248,8 +65494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -65267,7 +65513,7 @@ paths: type: integer secrets: type: array - items: &459 + items: &462 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -65287,9 +65533,9 @@ paths: - created_at - updated_at examples: - default: *456 + default: *459 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65310,16 +65556,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *457 + schema: *460 examples: - default: *458 + default: *461 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -65339,17 +65585,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: *460 + default: *463 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65369,9 +65615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -65399,7 +65645,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -65423,9 +65669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -65453,8 +65699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *332 - - *333 + - *335 + - *336 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65496,7 +65742,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &461 + properties: &464 login: type: string example: octocat @@ -65589,7 +65835,7 @@ paths: user_view_type: type: string example: public - required: &462 + required: &465 - avatar_url - events_url - followers_url @@ -65638,7 +65884,7 @@ paths: admin: false role_name: write headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -65663,9 +65909,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '204': description: Response if user is a collaborator @@ -65711,9 +65957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 requestBody: required: false content: @@ -65739,7 +65985,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &531 + schema: &534 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -65750,7 +65996,7 @@ paths: example: 42 type: integer format: int64 - repository: *153 + repository: *156 invitee: title: Simple User description: A GitHub user. @@ -65928,7 +66174,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *122 + schema: *124 '403': *29 x-github: triggersNotification: true @@ -65968,9 +66214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '204': description: No Content when collaborator was removed from the repository. @@ -66001,9 +66247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '200': description: if user has admin permissions @@ -66023,8 +66269,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *461 - required: *462 + properties: *464 + required: *465 nullable: true required: - permission @@ -66079,8 +66325,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -66090,7 +66336,7 @@ paths: application/json: schema: type: array - items: &463 + items: &466 title: Commit Comment description: Commit Comment type: object @@ -66131,8 +66377,8 @@ paths: updated_at: type: string format: date-time - author_association: *74 - reactions: *75 + author_association: *76 + reactions: *77 required: - url - html_url @@ -66148,7 +66394,7 @@ paths: - created_at - updated_at examples: - default: &468 + default: &471 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66182,7 +66428,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66207,17 +66453,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *463 + schema: *466 examples: - default: &469 + default: &472 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66274,9 +66520,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -66298,7 +66544,7 @@ paths: description: Response content: application/json: - schema: *463 + schema: *466 examples: default: value: @@ -66349,9 +66595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -66372,9 +66618,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a commit comment. @@ -66400,7 +66646,7 @@ paths: application/json: schema: type: array - items: &464 + items: &467 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -66443,7 +66689,7 @@ paths: - content - created_at examples: - default: &535 + default: &538 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -66469,7 +66715,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -66488,9 +66734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -66522,9 +66768,9 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: &465 + default: &468 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -66553,9 +66799,9 @@ paths: description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -66577,10 +66823,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *332 - - *333 - - *93 - - &536 + - *335 + - *336 + - *95 + - &539 name: reaction_id description: The unique identifier of the reaction. in: path @@ -66635,8 +66881,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *332 - - *333 + - *335 + - *336 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -66692,9 +66938,9 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: &586 + default: &589 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66764,11 +67010,11 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *59 - '500': *113 + Link: *61 + '500': *115 '400': *14 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66788,9 +67034,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *332 - - *333 - - &467 + - *335 + - *336 + - &470 name: commit_sha description: The SHA of the commit. in: path @@ -66837,7 +67083,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66862,9 +67108,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 - *17 - *19 responses: @@ -66874,11 +67120,11 @@ paths: application/json: schema: type: array - items: *463 + items: *466 examples: - default: *468 + default: *471 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66904,9 +67150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 requestBody: required: true content: @@ -66941,9 +67187,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *466 examples: - default: *469 + default: *472 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66971,9 +67217,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 - *17 - *19 responses: @@ -66983,9 +67229,9 @@ paths: application/json: schema: type: array - items: *470 + items: *473 examples: - default: &578 + default: &581 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67464,8 +67710,8 @@ paths: auto_merge: draft: false headers: - Link: *59 - '409': *52 + Link: *61 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67522,11 +67768,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 - - &471 + - &474 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -67541,9 +67787,9 @@ paths: description: Response content: application/json: - schema: *466 + schema: *469 examples: - default: &565 + default: &568 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67629,9 +67875,9 @@ paths: ..... '422': *15 '404': *6 - '500': *113 - '503': *114 - '409': *52 + '500': *115 + '503': *116 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67656,11 +67902,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *332 - - *333 - - *471 - - *472 - - *473 + - *335 + - *336 + - *474 + - *475 + - *476 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -67694,11 +67940,11 @@ paths: type: integer check_runs: type: array - items: *410 + items: *413 examples: - default: *474 + default: *477 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67721,9 +67967,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -67731,7 +67977,7 @@ paths: schema: type: integer example: 1 - - *472 + - *475 - *17 - *19 responses: @@ -67749,7 +67995,7 @@ paths: type: integer check_suites: type: array - items: *415 + items: *418 examples: default: value: @@ -67924,7 +68170,7 @@ paths: latest_check_runs_count: 1 check_runs_url: https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67949,9 +68195,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - *17 - *19 responses: @@ -68018,7 +68264,7 @@ paths: type: string total_count: type: integer - repository: *153 + repository: *156 commit_url: type: string format: uri @@ -68149,9 +68395,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - *17 - *19 responses: @@ -68161,7 +68407,7 @@ paths: application/json: schema: type: array - items: &651 + items: &654 title: Status description: The status of a commit. type: object @@ -68241,8 +68487,8 @@ paths: type: User site_admin: false headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68270,8 +68516,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -68300,20 +68546,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *475 - required: *476 + properties: *478 + required: *479 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &477 + properties: &480 url: type: string format: uri html_url: type: string format: uri - required: &478 + required: &481 - url - html_url nullable: true @@ -68321,32 +68567,32 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true contributing: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true readme: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true issue_template: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true pull_request_template: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true required: - code_of_conduct @@ -68473,8 +68719,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 - name: basehead @@ -68517,8 +68763,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *466 - merge_base_commit: *466 + base_commit: *469 + merge_base_commit: *469 status: type: string enum: @@ -68538,10 +68784,10 @@ paths: example: 6 commits: type: array - items: *466 + items: *469 files: type: array - items: *479 + items: *482 required: - url - html_url @@ -68784,8 +69030,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68827,8 +69073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -68988,7 +69234,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &480 + response-if-content-is-a-file-github-object: &483 summary: Response if content is a file value: type: file @@ -69120,7 +69366,7 @@ paths: - size - type - url - - &591 + - &594 title: Content File description: Content File type: object @@ -69321,7 +69567,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *480 + response-if-content-is-a-file: *483 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -69390,7 +69636,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *481 + '302': *484 '304': *37 x-github: githubCloudOnly: false @@ -69413,8 +69659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -69507,7 +69753,7 @@ paths: description: Response content: application/json: - schema: &482 + schema: &485 title: File Commit description: File Commit type: object @@ -69659,7 +69905,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: example-for-creating-a-file: value: @@ -69713,7 +69959,7 @@ paths: schema: oneOf: - *3 - - &513 + - &516 description: Repository rule violation was detected type: object properties: @@ -69734,7 +69980,7 @@ paths: items: type: object properties: - placeholder_id: &643 + placeholder_id: &646 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -69766,8 +70012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -69828,7 +70074,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: default: value: @@ -69862,8 +70108,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *52 - '503': *114 + '409': *54 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69883,8 +70129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *332 - - *333 + - *335 + - *336 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -69984,7 +70230,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *59 + Link: *61 '204': description: Response if repository is empty '403': *29 @@ -70007,26 +70253,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *332 - - *333 - - *191 - - *192 - - *193 + - *335 + - *336 - *194 + - *195 + - *196 + - *197 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *195 - - *483 - - *196 - - *197 - *198 - - *53 - - *45 - - *46 + - *486 + - *199 + - *200 + - *201 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -70035,11 +70281,11 @@ paths: application/json: schema: type: array - items: &487 + items: &490 type: object description: A Dependabot alert. properties: - number: *171 + number: *174 state: type: string description: The state of the Dependabot alert. @@ -70054,7 +70300,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *54 + package: *56 manifest_path: type: string description: The full path to the dependency manifest file, @@ -70081,13 +70327,13 @@ paths: - unknown - direct - transitive - security_advisory: *484 - security_vulnerability: *57 - url: *174 - html_url: *175 - created_at: *172 - updated_at: *173 - dismissed_at: *177 + security_advisory: *487 + security_vulnerability: *59 + url: *177 + html_url: *178 + created_at: *175 + updated_at: *176 + dismissed_at: *180 dismissed_by: title: Simple User description: A GitHub user. @@ -70111,9 +70357,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *176 - auto_dismissed_at: *485 - dismissal_request: *486 + fixed_at: *179 + auto_dismissed_at: *488 + dismissal_request: *489 assignees: type: array description: The users assigned to this alert. @@ -70368,9 +70614,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *332 - - *333 - - &488 + - *335 + - *336 + - &491 name: alert_number in: path description: |- @@ -70379,13 +70625,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *171 + schema: *174 responses: '200': description: Response content: application/json: - schema: *487 + schema: *490 examples: default: value: @@ -70517,9 +70763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *332 - - *333 - - *488 + - *335 + - *336 + - *491 requestBody: required: true content: @@ -70575,7 +70821,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *490 examples: default: value: @@ -70682,7 +70928,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *7 x-github: githubCloudOnly: false @@ -70705,8 +70951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -70724,7 +70970,7 @@ paths: type: integer secrets: type: array - items: &491 + items: &494 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -70755,7 +71001,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70777,16 +71023,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *489 + schema: *492 examples: - default: *490 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70806,15 +71052,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *491 + schema: *494 examples: default: value: @@ -70840,9 +71086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -70870,7 +71116,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -70894,9 +71140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -70918,8 +71164,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *332 - - *333 + - *335 + - *336 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -71055,7 +71301,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *59 + Link: *61 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -71079,8 +71325,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -71296,7 +71542,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *59 + Link: *61 '404': *6 '403': *29 x-github: @@ -71319,8 +71565,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -71395,7 +71641,7 @@ paths: - version - url additionalProperties: false - metadata: &492 + metadata: &495 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71428,7 +71674,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *492 + metadata: *495 resolved: type: object description: A collection of resolved package dependencies. @@ -71441,7 +71687,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *492 + metadata: *495 relationship: type: string description: A notation of whether a dependency is requested @@ -71570,8 +71816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *332 - - *333 + - *335 + - *336 - name: sha description: The SHA recorded at creation time. in: query @@ -71611,11 +71857,11 @@ paths: application/json: schema: type: array - items: *493 + items: *496 examples: - default: *494 + default: *497 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71679,8 +71925,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -71761,7 +72007,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *496 examples: simple-example: summary: Simple example @@ -71834,9 +72080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *332 - - *333 - - &495 + - *335 + - *336 + - &498 name: deployment_id description: deployment_id parameter in: path @@ -71848,7 +72094,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *496 examples: default: value: @@ -71913,9 +72159,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 responses: '204': description: Response @@ -71937,9 +72183,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 - *17 - *19 responses: @@ -71949,7 +72195,7 @@ paths: application/json: schema: type: array - items: &496 + items: &499 title: Deployment Status description: The status of a deployment. type: object @@ -72040,8 +72286,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -72090,7 +72336,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -72110,9 +72356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 requestBody: required: true content: @@ -72187,9 +72433,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: &497 + default: &500 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -72245,9 +72491,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 - name: status_id in: path required: true @@ -72258,9 +72504,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: *497 + default: *500 '404': *6 x-github: githubCloudOnly: false @@ -72285,8 +72531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -72343,8 +72589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -72361,7 +72607,7 @@ paths: type: integer environments: type: array - items: &499 + items: &502 title: Environment description: Details of a deployment environment type: object @@ -72413,7 +72659,7 @@ paths: type: type: string example: wait_timer - wait_timer: &501 + wait_timer: &504 type: integer example: 30 description: The amount of time to delay a job after @@ -72450,11 +72696,11 @@ paths: items: type: object properties: - type: *498 + type: *501 reviewer: anyOf: - *4 - - *190 + - *193 required: - id - node_id @@ -72474,7 +72720,7 @@ paths: - id - node_id - type - deployment_branch_policy: &502 + deployment_branch_policy: &505 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -72590,9 +72836,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *332 - - *333 - - &500 + - *335 + - *336 + - &503 name: environment_name in: path required: true @@ -72605,9 +72851,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: &503 + default: &506 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -72691,9 +72937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: false content: @@ -72702,7 +72948,7 @@ paths: type: object nullable: true properties: - wait_timer: *501 + wait_timer: *504 prevent_self_review: type: boolean example: false @@ -72719,13 +72965,13 @@ paths: items: type: object properties: - type: *498 + type: *501 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *502 + deployment_branch_policy: *505 additionalProperties: false examples: default: @@ -72745,9 +72991,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: *503 + default: *506 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -72771,9 +73017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 responses: '204': description: Default response @@ -72798,9 +73044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 - *17 - *19 responses: @@ -72818,7 +73064,7 @@ paths: example: 2 branch_policies: type: array - items: &504 + items: &507 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -72875,9 +73121,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: true content: @@ -72923,9 +73169,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - example-wildcard: &505 + example-wildcard: &508 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -72967,10 +73213,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - &506 + - *335 + - *336 + - *503 + - &509 name: branch_policy_id in: path required: true @@ -72982,9 +73228,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73003,10 +73249,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - *506 + - *335 + - *336 + - *503 + - *509 requestBody: required: true content: @@ -73034,9 +73280,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73055,10 +73301,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - *506 + - *335 + - *336 + - *503 + - *509 responses: '204': description: Response @@ -73083,9 +73329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 responses: '200': description: List of deployment protection rules @@ -73101,7 +73347,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &507 + items: &510 title: Deployment protection rule description: Deployment protection rule type: object @@ -73120,7 +73366,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &508 + app: &511 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -73219,9 +73465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 requestBody: content: application/json: @@ -73242,9 +73488,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *507 + schema: *510 examples: - default: &509 + default: &512 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -73279,9 +73525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 - *19 - *17 responses: @@ -73300,7 +73546,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *508 + items: *511 examples: default: value: @@ -73335,10 +73581,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *332 - - *333 - - *500 - - &510 + - *335 + - *336 + - *503 + - &513 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -73350,9 +73596,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *509 + default: *512 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73373,10 +73619,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *500 - - *333 - - *332 - - *510 + - *503 + - *336 + - *335 + - *513 responses: '204': description: Response @@ -73402,9 +73648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 - *17 - *19 responses: @@ -73422,11 +73668,11 @@ paths: type: integer secrets: type: array - items: *377 + items: *380 examples: - default: *378 + default: *381 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73449,17 +73695,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: - default: *380 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73481,18 +73727,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 responses: '200': description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *511 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73514,10 +73760,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 requestBody: required: true content: @@ -73548,7 +73794,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -73574,10 +73820,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 responses: '204': description: Default response @@ -73602,10 +73848,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *332 - - *333 - - *500 - - *348 + - *335 + - *336 + - *503 + - *351 - *19 responses: '200': @@ -73622,11 +73868,11 @@ paths: type: integer variables: type: array - items: *381 + items: *384 examples: - default: *382 + default: *385 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73647,9 +73893,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: true content: @@ -73676,7 +73922,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -73701,18 +73947,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *332 - - *333 - - *500 - - *164 + - *335 + - *336 + - *503 + - *167 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: *512 + default: *515 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73733,10 +73979,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *332 - - *333 - - *164 - - *500 + - *335 + - *336 + - *167 + - *503 requestBody: required: true content: @@ -73778,10 +74024,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *332 - - *333 - - *164 - - *500 + - *335 + - *336 + - *167 + - *503 responses: '204': description: Response @@ -73803,8 +74049,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -73814,7 +74060,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: 200-response: value: @@ -73872,8 +74118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *332 - - *333 + - *335 + - *336 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -73895,7 +74141,7 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: default: value: @@ -74008,7 +74254,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *59 + Link: *61 '400': *14 x-github: githubCloudOnly: false @@ -74032,8 +74278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -74065,9 +74311,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 '400': *14 '422': *15 '403': *29 @@ -74088,8 +74334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74140,7 +74386,7 @@ paths: schema: type: string '404': *6 - '409': *52 + '409': *54 '403': *29 '422': description: Validation failed @@ -74148,8 +74394,8 @@ paths: application/json: schema: oneOf: - - *122 - - *513 + - *124 + - *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74174,8 +74420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *332 - - *333 + - *335 + - *336 - name: file_sha in: path required: true @@ -74226,7 +74472,7 @@ paths: '404': *6 '422': *15 '403': *29 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74274,8 +74520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74384,7 +74630,7 @@ paths: description: Response content: application/json: - schema: &514 + schema: &517 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -74548,7 +74794,7 @@ paths: type: string '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74598,15 +74844,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 responses: '200': description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -74637,7 +74883,7 @@ paths: payload: verified_at: '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74662,9 +74908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *332 - - *333 - - &515 + - *335 + - *336 + - &518 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -74681,7 +74927,7 @@ paths: application/json: schema: type: array - items: &516 + items: &519 title: Git Reference description: Git references within a repository type: object @@ -74734,8 +74980,8 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *59 - '409': *52 + Link: *61 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74756,17 +75002,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 responses: '200': description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: &517 + default: &520 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -74776,7 +75022,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74795,8 +75041,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74825,16 +75071,16 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74853,9 +75099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 requestBody: required: true content: @@ -74884,11 +75130,11 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74904,16 +75150,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74961,8 +75207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -75029,7 +75275,7 @@ paths: description: Response content: application/json: - schema: &519 + schema: &522 title: Git Tag description: Metadata for a Git tag type: object @@ -75080,7 +75326,7 @@ paths: - sha - type - url - verification: *518 + verification: *521 required: - sha - url @@ -75090,7 +75336,7 @@ paths: - tag - message examples: - default: &520 + default: &523 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -75117,7 +75363,7 @@ paths: schema: type: string '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75163,8 +75409,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *332 - - *333 + - *335 + - *336 - name: tag_sha in: path required: true @@ -75175,11 +75421,11 @@ paths: description: Response content: application/json: - schema: *519 + schema: *522 examples: - default: *520 + default: *523 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75201,8 +75447,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -75275,7 +75521,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &524 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -75348,7 +75594,7 @@ paths: '422': *15 '404': *6 '403': *29 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75371,8 +75617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *332 - - *333 + - *335 + - *336 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -75395,7 +75641,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *524 examples: default-response: summary: Default response @@ -75436,7 +75682,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75454,8 +75700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -75465,7 +75711,7 @@ paths: application/json: schema: type: array - items: &522 + items: &525 title: Webhook description: Webhooks for repositories. type: object @@ -75519,7 +75765,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &766 + last_response: &769 title: Hook Response type: object properties: @@ -75574,7 +75820,7 @@ paths: status: unused message: headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -75593,8 +75839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -75646,9 +75892,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: &523 + default: &526 value: type: Repository id: 12345678 @@ -75696,17 +75942,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '200': description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: *523 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -75726,9 +75972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 requestBody: required: true content: @@ -75773,9 +76019,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: *523 + default: *526 '422': *15 '404': *6 x-github: @@ -75796,9 +76042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -75822,9 +76068,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '200': description: Response @@ -75851,9 +76097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 requestBody: required: false content: @@ -75897,11 +76143,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *17 - - *207 + - *210 responses: '200': description: Response @@ -75909,9 +76155,9 @@ paths: application/json: schema: type: array - items: *208 + items: *211 examples: - default: *209 + default: *212 '400': *14 '422': *15 x-github: @@ -75930,18 +76176,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *16 responses: '200': description: Response content: application/json: - schema: *210 + schema: *213 examples: - default: *211 + default: *214 '400': *14 '422': *15 x-github: @@ -75960,9 +76206,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *16 responses: '202': *39 @@ -75985,9 +76231,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -76012,9 +76258,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -76037,8 +76283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response if immutable releases are enabled @@ -76084,11 +76330,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 - '409': *52 + '204': *187 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76105,11 +76351,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 - '409': *52 + '204': *187 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76163,14 +76409,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &524 + schema: &527 title: Import description: A repository import from an external source. type: object @@ -76269,7 +76515,7 @@ paths: - html_url - authors_url examples: - default: &527 + default: &530 value: vcs: subversion use_lfs: true @@ -76285,7 +76531,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &525 + '503': &528 description: Unavailable due to service under maintenance. content: application/json: @@ -76314,8 +76560,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -76363,7 +76609,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: default: value: @@ -76388,7 +76634,7 @@ paths: type: string '422': *15 '404': *6 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76416,8 +76662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -76466,7 +76712,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: example-1: summary: Example 1 @@ -76514,7 +76760,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76537,12 +76783,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76568,9 +76814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *332 - - *333 - - &695 + - *335 + - *336 + - &698 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76584,7 +76830,7 @@ paths: application/json: schema: type: array - items: &526 + items: &529 title: Porter Author description: Porter Author type: object @@ -76638,7 +76884,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76663,8 +76909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *332 - - *333 + - *335 + - *336 - name: author_id in: path required: true @@ -76694,7 +76940,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: default: value: @@ -76707,7 +76953,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76731,8 +76977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76773,7 +77019,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76801,8 +77047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -76829,11 +77075,11 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: *527 + default: *530 '422': *15 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76856,8 +77102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76865,8 +77111,8 @@ paths: application/json: schema: *22 examples: - default: *528 - '301': *336 + default: *531 + '301': *339 '404': *6 x-github: githubCloudOnly: false @@ -76886,8 +77132,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76895,12 +77141,12 @@ paths: application/json: schema: anyOf: - - *224 + - *227 - type: object properties: {} additionalProperties: false examples: - default: &530 + default: &533 value: limit: collaborators_only origin: repository @@ -76925,13 +77171,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *529 + schema: *532 examples: default: summary: Example request body @@ -76943,9 +77189,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: *530 + default: *533 '409': description: Response x-github: @@ -76967,8 +77213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -76991,8 +77237,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -77002,9 +77248,9 @@ paths: application/json: schema: type: array - items: *531 + items: *534 examples: - default: &688 + default: &691 value: - id: 1 repository: @@ -77118,7 +77364,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77135,9 +77381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *332 - - *333 - - *228 + - *335 + - *336 + - *231 requestBody: required: false content: @@ -77166,7 +77412,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: default: value: @@ -77297,9 +77543,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *332 - - *333 - - *228 + - *335 + - *336 + - *231 responses: '204': description: Response @@ -77330,8 +77576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *332 - - *333 + - *335 + - *336 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -77379,7 +77625,7 @@ paths: required: false schema: type: string - - *235 + - *238 - name: sort description: What to sort results by. in: query @@ -77391,8 +77637,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -77402,9 +77648,9 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: &543 + default: &546 value: - id: 1 node_id: MDU6SXNzdWUx @@ -77552,8 +77798,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '422': *15 '404': *6 x-github: @@ -77582,8 +77828,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -77665,9 +77911,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: &540 + default: &543 value: id: 1 node_id: MDU6SXNzdWUx @@ -77822,9 +78068,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *114 + '503': *116 '404': *6 - '410': *532 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -77852,9 +78098,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *332 - - *333 - - *101 + - *335 + - *336 + - *103 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -77864,7 +78110,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -77874,9 +78120,9 @@ paths: application/json: schema: type: array - items: *533 + items: *536 examples: - default: &542 + default: &545 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -77907,7 +78153,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '422': *15 '404': *6 x-github: @@ -77934,17 +78180,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: &534 + default: &537 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -77999,9 +78245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -78023,9 +78269,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: *534 + default: *537 '422': *15 x-github: githubCloudOnly: false @@ -78043,9 +78289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -78073,15 +78319,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *533 + schema: *536 examples: default: value: @@ -78137,7 +78383,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -78154,17 +78400,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *532 - '503': *114 + '410': *535 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78181,9 +78427,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue comment. @@ -78209,11 +78455,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -78232,9 +78478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -78266,16 +78512,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -78297,10 +78543,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *332 - - *333 - - *93 - - *536 + - *335 + - *336 + - *95 + - *539 responses: '204': description: Response @@ -78320,8 +78566,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -78331,7 +78577,7 @@ paths: application/json: schema: type: array - items: &539 + items: &542 title: Issue Event description: Issue Event type: object @@ -78374,8 +78620,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *537 - required: *538 + properties: *540 + required: *541 nullable: true label: title: Issue Event Label @@ -78419,7 +78665,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *190 + requested_team: *193 dismissed_review: title: Issue Event Dismissed Review type: object @@ -78484,7 +78730,7 @@ paths: required: - from - to - author_association: *74 + author_association: *76 lock_reason: type: string nullable: true @@ -78497,8 +78743,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -78665,7 +78911,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -78683,8 +78929,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *332 - - *333 + - *335 + - *336 - name: event_id in: path required: true @@ -78695,7 +78941,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *542 examples: default: value: @@ -78888,7 +79134,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *532 + '410': *535 '403': *29 x-github: githubCloudOnly: false @@ -78922,9 +79168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *332 - - *333 - - &541 + - *335 + - *336 + - &544 name: issue_number description: The number that identifies the issue. in: path @@ -78936,11 +79182,11 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: default: summary: Issue - value: *540 + value: *543 pinned_comment: summary: Issue with pinned comment value: @@ -79139,9 +79385,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 '304': *37 x-github: githubCloudOnly: false @@ -79166,9 +79412,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -79292,15 +79538,15 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 '422': *15 - '503': *114 + '503': *116 '403': *29 - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79318,9 +79564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -79346,9 +79592,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79364,9 +79610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: content: application/json: @@ -79391,9 +79637,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79415,9 +79661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: assignee in: path required: true @@ -79457,10 +79703,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *332 - - *333 - - *541 - - *84 + - *335 + - *336 + - *544 + - *86 - *17 - *19 responses: @@ -79470,13 +79716,13 @@ paths: application/json: schema: type: array - items: *533 + items: *536 examples: - default: *542 + default: *545 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79505,9 +79751,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -79529,16 +79775,16 @@ paths: description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: *534 + default: *537 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -79566,9 +79812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79578,14 +79824,14 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79613,9 +79859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -79637,17 +79883,17 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *336 + '301': *339 '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -79678,9 +79924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -79692,15 +79938,15 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 - '301': *336 + default: *543 + '301': *339 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *532 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -79726,9 +79972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79738,14 +79984,14 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79762,9 +80008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79778,7 +80024,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &546 + - &549 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79809,8 +80055,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 label: type: object properties: @@ -79832,7 +80078,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &547 + - &550 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -79863,8 +80109,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 label: type: object properties: @@ -79952,8 +80198,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 assigner: *4 required: @@ -79968,7 +80214,7 @@ paths: - performed_via_github_app - assignee - assigner - - &548 + - &551 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -79999,8 +80245,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 milestone: type: object properties: @@ -80019,7 +80265,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &549 + - &552 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -80050,8 +80296,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 milestone: type: object properties: @@ -80070,7 +80316,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &550 + - &553 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -80101,8 +80347,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 rename: type: object properties: @@ -80124,7 +80370,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &551 + - &554 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -80155,10 +80401,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 review_requester: *4 - requested_team: *190 + requested_team: *193 requested_reviewer: *4 required: - review_requester @@ -80171,7 +80417,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &555 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -80202,10 +80448,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 review_requester: *4 - requested_team: *190 + requested_team: *193 requested_reviewer: *4 required: - review_requester @@ -80218,7 +80464,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &556 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -80249,8 +80495,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 dismissed_review: type: object properties: @@ -80278,7 +80524,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &557 title: Locked Issue Event description: Locked Issue Event type: object @@ -80309,8 +80555,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 lock_reason: type: string example: '"off-topic"' @@ -80326,7 +80572,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &558 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -80357,8 +80603,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -80392,7 +80638,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &559 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -80423,8 +80669,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -80458,7 +80704,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &560 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80489,8 +80735,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -80524,7 +80770,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &561 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80614,8 +80860,8 @@ paths: name: label color: red headers: - Link: *59 - '410': *532 + Link: *61 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80632,9 +80878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -80644,9 +80890,9 @@ paths: application/json: schema: type: array - items: *544 + items: *547 examples: - default: &657 + default: &660 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -80669,10 +80915,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80689,9 +80935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -80701,9 +80947,9 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: &545 + default: &548 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80720,10 +80966,10 @@ paths: color: a2eeef default: false headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80739,9 +80985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80784,12 +81030,12 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 - '301': *336 + default: *548 + '301': *339 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -80806,9 +81052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80868,12 +81114,12 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 - '301': *336 + default: *548 + '301': *339 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -80890,15 +81136,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '204': description: Response - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80917,9 +81163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: name in: path required: true @@ -80932,7 +81178,7 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: default: value: @@ -80943,9 +81189,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80965,9 +81211,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80995,7 +81241,7 @@ paths: '204': description: Response '403': *29 - '410': *532 + '410': *535 '404': *6 '422': *15 x-github: @@ -81013,9 +81259,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '204': description: Response @@ -81045,20 +81291,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '200': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 - '301': *336 + default: *543 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81075,9 +81321,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -81103,13 +81349,13 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81127,9 +81373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -81161,16 +81407,16 @@ paths: description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -81192,10 +81438,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *332 - - *333 - - *541 - - *536 + - *335 + - *336 + - *544 + - *539 responses: '204': description: Response @@ -81224,9 +81470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -81248,9 +81494,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -81283,9 +81529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -81295,13 +81541,13 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81329,9 +81575,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -81358,16 +81604,16 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -81387,9 +81633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -81420,13 +81666,13 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 '403': *29 '404': *6 '422': *7 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -81444,9 +81690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -81461,9 +81707,6 @@ paths: description: Timeline Event type: object anyOf: - - *546 - - *547 - - *548 - *549 - *550 - *551 @@ -81474,6 +81717,9 @@ paths: - *556 - *557 - *558 + - *559 + - *560 + - *561 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81516,7 +81762,7 @@ paths: issue_url: type: string format: uri - author_association: *74 + author_association: *76 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -81526,16 +81772,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - reactions: *75 + properties: *74 + required: *75 + reactions: *77 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true required: - event @@ -81567,7 +81813,7 @@ paths: properties: type: type: string - issue: *77 + issue: *79 required: - event - created_at @@ -81767,7 +82013,7 @@ paths: type: string body_text: type: string - author_association: *74 + author_association: *76 required: - event - id @@ -81790,7 +82036,7 @@ paths: type: string comments: type: array - items: &580 + items: &583 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81885,7 +82131,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *74 + author_association: *76 _links: type: object properties: @@ -81969,7 +82215,7 @@ paths: enum: - line - file - reactions: *75 + reactions: *77 body_html: type: string example: '"

comment body

"' @@ -82005,7 +82251,7 @@ paths: type: string comments: type: array - items: *463 + items: *466 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -82036,8 +82282,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 required: - id @@ -82080,8 +82326,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 required: - id @@ -82124,8 +82370,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 state_reason: type: string nullable: true @@ -82292,9 +82538,9 @@ paths: type: User site_admin: true headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82311,8 +82557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -82322,7 +82568,7 @@ paths: application/json: schema: type: array - items: &561 + items: &564 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -82372,7 +82618,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82388,8 +82634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82425,9 +82671,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: &562 + default: &565 value: id: 1 key: ssh-rsa AAA... @@ -82461,9 +82707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *332 - - *333 - - &563 + - *335 + - *336 + - &566 name: key_id description: The unique identifier of the key. in: path @@ -82475,9 +82721,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '404': *6 x-github: githubCloudOnly: false @@ -82495,9 +82741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *332 - - *333 - - *563 + - *335 + - *336 + - *566 responses: '204': description: Response @@ -82517,8 +82763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -82528,11 +82774,11 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 + default: *548 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -82551,8 +82797,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82588,9 +82834,9 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: &564 + default: &567 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82622,8 +82868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82634,9 +82880,9 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: *564 + default: *567 '404': *6 x-github: githubCloudOnly: false @@ -82653,8 +82899,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82693,7 +82939,7 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: default: value: @@ -82719,8 +82965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82746,8 +82992,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -82786,9 +83032,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *332 - - *333 - - *436 + - *335 + - *336 + - *439 responses: '200': description: Response @@ -82850,8 +83096,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true required: - _links @@ -82933,8 +83179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82999,8 +83245,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83034,9 +83280,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *466 + schema: *469 examples: - default: *565 + default: *568 '204': description: Response when already merged '404': @@ -83061,8 +83307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *332 - - *333 + - *335 + - *336 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -83103,12 +83349,12 @@ paths: application/json: schema: type: array - items: &566 + items: &569 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 examples: default: value: @@ -83147,7 +83393,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -83164,8 +83410,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83205,9 +83451,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: &567 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -83266,9 +83512,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *332 - - *333 - - &568 + - *335 + - *336 + - &571 name: milestone_number description: The number that identifies the milestone. in: path @@ -83280,9 +83526,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *567 + default: *570 '404': *6 x-github: githubCloudOnly: false @@ -83299,9 +83545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 requestBody: required: false content: @@ -83339,9 +83585,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *567 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83357,9 +83603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 responses: '204': description: Response @@ -83380,9 +83626,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 - *17 - *19 responses: @@ -83392,11 +83638,11 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 + default: *548 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83413,12 +83659,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *332 - - *333 - - *569 - - *570 - - *84 - - *571 + - *335 + - *336 + - *572 + - *573 + - *86 + - *574 - *17 - *19 responses: @@ -83428,11 +83674,11 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: *572 + default: *575 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -83454,8 +83700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -83513,14 +83759,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &573 + schema: &576 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83645,7 +83891,7 @@ paths: - custom_404 - public examples: - default: &574 + default: &577 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83686,8 +83932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83741,11 +83987,11 @@ paths: description: Response content: application/json: - schema: *573 + schema: *576 examples: - default: *574 + default: *577 '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83766,8 +84012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83845,7 +84091,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83866,14 +84112,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83893,8 +84139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -83904,7 +84150,7 @@ paths: application/json: schema: type: array - items: &575 + items: &578 title: Page Build description: Page Build type: object @@ -83979,7 +84225,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83998,8 +84244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response @@ -84044,16 +84290,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: &576 + default: &579 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -84101,8 +84347,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *332 - - *333 + - *335 + - *336 - name: build_id in: path required: true @@ -84113,9 +84359,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: *576 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84135,8 +84381,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -84241,9 +84487,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *332 - - *333 - - &577 + - *335 + - *336 + - &580 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -84301,11 +84547,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *332 - - *333 - - *577 + - *335 + - *336 + - *580 responses: - '204': *184 + '204': *187 '404': *6 x-github: githubCloudOnly: false @@ -84330,8 +84576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -84562,7 +84808,7 @@ paths: description: Empty response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -84589,8 +84835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Private vulnerability reporting status @@ -84627,10 +84873,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 + '204': *187 '422': *14 x-github: githubCloudOnly: false @@ -84649,10 +84895,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 + '204': *187 '422': *14 x-github: githubCloudOnly: false @@ -84672,8 +84918,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -84681,7 +84927,7 @@ paths: application/json: schema: type: array - items: *284 + items: *287 examples: default: value: @@ -84712,8 +84958,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -84725,7 +84971,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *284 + items: *287 required: - properties examples: @@ -84775,8 +85021,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *332 - - *333 + - *335 + - *336 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -84836,11 +85082,11 @@ paths: application/json: schema: type: array - items: *470 + items: *473 examples: - default: *578 + default: *581 headers: - Link: *59 + Link: *61 '304': *37 '422': *15 x-github: @@ -84870,8 +85116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -84936,7 +85182,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &585 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -85047,8 +85293,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true active_lock_reason: type: string @@ -85091,7 +85337,7 @@ paths: items: *4 requested_teams: type: array - items: *321 + items: *324 head: type: object properties: @@ -85099,7 +85345,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: *4 @@ -85116,7 +85362,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: *4 @@ -85129,14 +85375,14 @@ paths: _links: type: object properties: - comments: *271 - commits: *271 - statuses: *271 - html: *271 - issue: *271 - review_comments: *271 - review_comment: *271 - self: *271 + comments: *274 + commits: *274 + statuses: *274 + html: *274 + issue: *274 + review_comments: *274 + review_comment: *274 + self: *274 required: - comments - commits @@ -85146,8 +85392,8 @@ paths: - review_comments - review_comment - self - author_association: *74 - auto_merge: *579 + author_association: *76 + auto_merge: *582 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -85239,7 +85485,7 @@ paths: - merged_by - review_comments examples: - default: &583 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -85766,8 +86012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: sort in: query required: false @@ -85786,7 +86032,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -85796,9 +86042,9 @@ paths: application/json: schema: type: array - items: *580 + items: *583 examples: - default: &585 + default: &588 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85850,7 +86096,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85875,17 +86121,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: &581 + default: &584 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85960,9 +86206,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -85984,9 +86230,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: *581 + default: *584 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86002,9 +86248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -86025,9 +86271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a pull request review comment. @@ -86053,11 +86299,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -86076,9 +86322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -86110,16 +86356,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -86141,10 +86387,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *332 - - *333 - - *93 - - *536 + - *335 + - *336 + - *95 + - *539 responses: '204': description: Response @@ -86187,9 +86433,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *332 - - *333 - - &584 + - *335 + - *336 + - &587 name: pull_number description: The number that identifies the pull request. in: path @@ -86202,9 +86448,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *582 + schema: *585 examples: - default: *583 + default: *586 '304': *37 '404': *6 '406': @@ -86212,8 +86458,8 @@ paths: content: application/json: schema: *3 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86239,9 +86485,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -86283,9 +86529,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: - default: *583 + default: *586 '422': *15 '403': *29 x-github: @@ -86307,9 +86553,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -86369,21 +86615,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86409,10 +86655,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *332 - - *333 - - *584 - - *101 + - *335 + - *336 + - *587 + - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -86422,7 +86668,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -86432,11 +86678,11 @@ paths: application/json: schema: type: array - items: *580 + items: *583 examples: - default: *585 + default: *588 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86467,9 +86713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -86574,7 +86820,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: example-for-a-multi-line-comment: value: @@ -86662,10 +86908,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *332 - - *333 - - *584 - - *93 + - *335 + - *336 + - *587 + - *95 requestBody: required: true content: @@ -86687,7 +86933,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: default: value: @@ -86773,9 +87019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -86785,11 +87031,11 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: *586 + default: *589 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86817,9 +87063,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -86829,7 +87075,7 @@ paths: application/json: schema: type: array - items: *479 + items: *482 examples: default: value: @@ -86845,10 +87091,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *59 + Link: *61 '422': *15 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86867,9 +87113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 responses: '204': description: Response if pull request has been merged @@ -86892,9 +87138,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -87005,9 +87251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 responses: '200': description: Response @@ -87023,7 +87269,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 required: - users - teams @@ -87064,7 +87310,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87082,9 +87328,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -87121,7 +87367,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -87657,9 +87903,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -87693,7 +87939,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -88198,9 +88444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -88210,7 +88456,7 @@ paths: application/json: schema: type: array - items: &587 + items: &590 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -88279,7 +88525,7 @@ paths: type: string body_text: type: string - author_association: *74 + author_association: *76 required: - id - node_id @@ -88328,7 +88574,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88361,9 +88607,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -88449,9 +88695,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: &589 + default: &592 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88514,10 +88760,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - &588 + - *335 + - *336 + - *587 + - &591 name: review_id description: The unique identifier of the review. in: path @@ -88529,9 +88775,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: &590 + default: &593 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88590,10 +88836,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -88616,7 +88862,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -88678,18 +88924,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 responses: '200': description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: *589 + default: *592 '422': *7 '404': *6 x-github: @@ -88716,10 +88962,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 - *17 - *19 responses: @@ -88798,13 +89044,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *74 + author_association: *76 _links: type: object properties: - self: *271 - html: *271 - pull_request: *271 + self: *274 + html: *274 + pull_request: *274 required: - self - html @@ -88813,7 +89059,7 @@ paths: type: string body_html: type: string - reactions: *75 + reactions: *77 side: description: The side of the first line of the range for a multi-line comment. @@ -88925,7 +89171,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -88954,10 +89200,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -88985,7 +89231,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -89048,10 +89294,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -89086,9 +89332,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: *590 + default: *593 '404': *6 '422': *7 '403': *29 @@ -89110,9 +89356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -89175,8 +89421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -89189,9 +89435,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: &592 + default: &595 value: type: file encoding: base64 @@ -89233,8 +89479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *332 - - *333 + - *335 + - *336 - name: dir description: The alternate path to look for a README file in: path @@ -89254,9 +89500,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: *592 + default: *595 '404': *6 '422': *15 x-github: @@ -89278,8 +89524,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -89289,7 +89535,7 @@ paths: application/json: schema: type: array - items: *593 + items: *596 examples: default: value: @@ -89363,7 +89609,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -89383,8 +89629,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -89460,9 +89706,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: &597 + default: &600 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89567,9 +89813,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *332 - - *333 - - &595 + - *335 + - *336 + - &598 name: asset_id description: The unique identifier of the asset. in: path @@ -89581,9 +89827,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: &596 + default: &599 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -89618,7 +89864,7 @@ paths: type: User site_admin: false '404': *6 - '302': *481 + '302': *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89634,9 +89880,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *332 - - *333 - - *595 + - *335 + - *336 + - *598 requestBody: required: false content: @@ -89664,9 +89910,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *596 + default: *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89682,9 +89928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *332 - - *333 - - *595 + - *335 + - *336 + - *598 responses: '204': description: Response @@ -89708,8 +89954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -89794,16 +90040,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89820,8 +90066,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *332 - - *333 + - *335 + - *336 - name: tag description: tag parameter in: path @@ -89834,9 +90080,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 '404': *6 x-github: githubCloudOnly: false @@ -89858,9 +90104,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *332 - - *333 - - &598 + - *335 + - *336 + - &601 name: release_id description: The unique identifier of the release. in: path @@ -89874,9 +90120,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 '401': description: Unauthorized x-github: @@ -89894,9 +90140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 requestBody: required: false content: @@ -89960,9 +90206,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 '404': description: Not Found if the discussion category name is invalid content: @@ -89983,9 +90229,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 responses: '204': description: Response @@ -90005,9 +90251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - *17 - *19 responses: @@ -90017,7 +90263,7 @@ paths: application/json: schema: type: array - items: *594 + items: *597 examples: default: value: @@ -90054,7 +90300,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90098,9 +90344,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - name: name in: query required: true @@ -90126,7 +90372,7 @@ paths: description: Response for successful upload content: application/json: - schema: *594 + schema: *597 examples: response-for-successful-upload: value: @@ -90181,9 +90427,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -90207,11 +90453,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -90230,9 +90476,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 requestBody: required: true content: @@ -90262,16 +90508,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -90293,10 +90539,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *332 - - *333 - - *598 - - *536 + - *335 + - *336 + - *601 + - *539 responses: '204': description: Response @@ -90320,9 +90566,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 - *17 - *19 responses: @@ -90338,8 +90584,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *293 - - &599 + - *296 + - &602 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -90358,69 +90604,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *294 - - *599 - - allOf: - - *295 - - *599 - - allOf: - - *296 - - *599 - - allOf: - - *600 - - *599 - allOf: - *297 - - *599 + - *602 - allOf: - *298 - - *599 + - *602 - allOf: - *299 - - *599 + - *602 + - allOf: + - *603 + - *602 - allOf: - *300 - - *599 + - *602 - allOf: - *301 - - *599 + - *602 - allOf: - *302 - - *599 + - *602 - allOf: - *303 - - *599 + - *602 - allOf: - *304 - - *599 + - *602 - allOf: - *305 - - *599 + - *602 - allOf: - *306 - - *599 + - *602 - allOf: - *307 - - *599 + - *602 - allOf: - *308 - - *599 + - *602 - allOf: - *309 - - *599 + - *602 - allOf: - *310 - - *599 + - *602 - allOf: - *311 - - *599 + - *602 - allOf: - *312 - - *599 + - *602 - allOf: - *313 - - *599 + - *602 + - allOf: + - *314 + - *602 + - allOf: + - *315 + - *602 + - allOf: + - *316 + - *602 examples: default: value: @@ -90459,8 +90705,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - name: includes_parents @@ -90471,7 +90717,7 @@ paths: schema: type: boolean default: true - - *601 + - *604 responses: '200': description: Response @@ -90479,7 +90725,7 @@ paths: application/json: schema: type: array - items: *314 + items: *317 examples: default: value: @@ -90510,7 +90756,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -90526,8 +90772,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 requestBody: description: Request body required: true @@ -90547,16 +90793,16 @@ paths: - tag - push default: branch - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *288 + items: *294 + conditions: *291 rules: type: array description: An array of rules within the ruleset. - items: *602 + items: *605 required: - name - enforcement @@ -90587,9 +90833,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: &612 + default: &615 value: id: 42 name: super cool ruleset @@ -90623,7 +90869,7 @@ paths: updated_at: '2023-08-23T16:29:47Z' '404': *6 '422': *15 - '500': *113 + '500': *115 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -90637,12 +90883,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *332 - - *333 - - *603 - - *604 - - *605 + - *335 + - *336 - *606 + - *607 + - *608 + - *609 - *17 - *19 responses: @@ -90650,11 +90896,11 @@ paths: description: Response content: application/json: - schema: *607 + schema: *610 examples: - default: *608 + default: *611 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90673,19 +90919,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *332 - - *333 - - *609 + - *335 + - *336 + - *612 responses: '200': description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: *611 + default: *614 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90711,8 +90957,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90732,11 +90978,11 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *612 + default: *615 '404': *6 - '500': *113 + '500': *115 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -90752,8 +90998,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90778,16 +91024,16 @@ paths: - branch - tag - push - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *288 + items: *294 + conditions: *291 rules: description: An array of rules within the ruleset. type: array - items: *602 + items: *605 examples: default: value: @@ -90815,12 +91061,12 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *612 + default: *615 '404': *6 '422': *15 - '500': *113 + '500': *115 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -90836,8 +91082,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90848,7 +91094,7 @@ paths: '204': description: Response '404': *6 - '500': *113 + '500': *115 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -90860,8 +91106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - name: ruleset_id @@ -90877,11 +91123,11 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *613 + default: *616 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90898,8 +91144,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90917,7 +91163,7 @@ paths: description: Response content: application/json: - schema: *614 + schema: *617 examples: default: value: @@ -90950,7 +91196,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90972,22 +91218,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *332 - - *333 - - *615 - - *616 - - *617 + - *335 + - *336 - *618 - *619 - - *53 - - *19 - - *17 - *620 - *621 - *622 + - *55 + - *19 + - *17 - *623 - *624 - *625 + - *626 + - *627 + - *628 responses: '200': description: Response @@ -90995,11 +91241,11 @@ paths: application/json: schema: type: array - items: &629 + items: &632 type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -91007,15 +91253,15 @@ paths: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *626 - resolution: *627 + state: *629 + resolution: *630 resolved_at: type: string format: date-time @@ -91111,7 +91357,7 @@ paths: pull request. ' - oneOf: *628 + oneOf: *631 nullable: true has_more_locations: type: boolean @@ -91238,7 +91484,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91260,16 +91506,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 - - *625 + - *335 + - *336 + - *433 + - *628 responses: '200': description: Response content: application/json: - schema: *629 + schema: *632 examples: default: value: @@ -91300,7 +91546,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91323,9 +91569,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: true content: @@ -91333,8 +91579,8 @@ paths: schema: type: object properties: - state: *626 - resolution: *627 + state: *629 + resolution: *630 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -91368,7 +91614,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *632 examples: default: value: @@ -91441,7 +91687,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91463,9 +91709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 - *19 - *17 responses: @@ -91476,7 +91722,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &788 + items: &791 type: object properties: type: @@ -91502,9 +91748,6 @@ paths: example: commit details: oneOf: - - *630 - - *631 - - *632 - *633 - *634 - *635 @@ -91515,6 +91758,9 @@ paths: - *640 - *641 - *642 + - *643 + - *644 + - *645 examples: default: value: @@ -91574,11 +91820,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *59 + Link: *61 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91600,8 +91846,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -91609,14 +91855,14 @@ paths: schema: type: object properties: - reason: &644 + reason: &647 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *643 + placeholder_id: *646 required: - reason - placeholder_id @@ -91633,7 +91879,7 @@ paths: schema: type: object properties: - reason: *644 + reason: *647 expire_at: type: string format: date-time @@ -91656,7 +91902,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91679,13 +91925,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *114 + '503': *116 '200': description: Response content: @@ -91695,7 +91941,7 @@ paths: properties: incremental_scans: type: array - items: &645 + items: &648 description: Information on a single scan performed by secret scanning on the repository type: object @@ -91721,15 +91967,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *645 + items: *648 backfill_scans: type: array - items: *645 + items: *648 custom_pattern_backfill_scans: type: array items: allOf: - - *645 + - *648 - type: object properties: pattern_name: @@ -91799,9 +92045,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *332 - - *333 - - *53 + - *335 + - *336 + - *55 - name: sort description: The property to sort the results by. in: query @@ -91813,8 +92059,8 @@ paths: - updated - published default: created - - *45 - - *46 + - *47 + - *48 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -91844,9 +92090,9 @@ paths: application/json: schema: type: array - items: *646 + items: *649 examples: - default: *647 + default: *650 '400': *14 '404': *6 x-github: @@ -91869,8 +92115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -91943,7 +92189,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 required: - login - type @@ -92030,9 +92276,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: &649 + default: &652 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -92265,8 +92511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -92370,7 +92616,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: default: value: @@ -92517,17 +92763,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '200': description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: *649 + default: *652 '403': *29 '404': *6 x-github: @@ -92551,9 +92797,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 requestBody: required: true content: @@ -92626,7 +92872,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 required: - login - type @@ -92712,17 +92958,17 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: *649 - add_credit: *649 + default: *652 + add_credit: *652 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *122 + schema: *124 examples: invalid_state_transition: value: @@ -92753,9 +92999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '202': *39 '400': *14 @@ -92782,17 +93028,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '202': description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 '400': *14 '422': *15 '403': *29 @@ -92818,8 +93064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -92896,7 +93142,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -92918,8 +93164,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -92928,7 +93174,7 @@ paths: application/json: schema: type: array - items: &650 + items: &653 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -92941,7 +93187,7 @@ paths: - 1124 - -435 '202': *39 - '204': *184 + '204': *187 '422': description: Repository contains more than 10,000 commits x-github: @@ -92961,8 +93207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -93011,7 +93257,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93038,8 +93284,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -93113,7 +93359,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93135,8 +93381,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -93290,8 +93536,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -93301,7 +93547,7 @@ paths: application/json: schema: type: array - items: *650 + items: *653 examples: default: value: @@ -93314,7 +93560,7 @@ paths: - - 0 - 2 - 21 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93334,8 +93580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *332 - - *333 + - *335 + - *336 - name: sha in: path required: true @@ -93389,7 +93635,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *654 examples: default: value: @@ -93443,8 +93689,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93456,9 +93702,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93476,14 +93722,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &652 + schema: &655 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93551,8 +93797,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -93578,7 +93824,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *655 examples: default: value: @@ -93605,8 +93851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -93626,8 +93872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93683,7 +93929,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93706,8 +93952,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *332 - - *333 + - *335 + - *336 - name: ref in: path required: true @@ -93743,8 +93989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93754,11 +94000,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -93776,8 +94022,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 responses: @@ -93785,7 +94031,7 @@ paths: description: Response content: application/json: - schema: &653 + schema: &656 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -93797,7 +94043,7 @@ paths: required: - names examples: - default: &654 + default: &657 value: names: - octocat @@ -93820,8 +94066,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -93852,9 +94098,9 @@ paths: description: Response content: application/json: - schema: *653 + schema: *656 examples: - default: *654 + default: *657 '404': *6 '422': *7 x-github: @@ -93875,9 +94121,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *332 - - *333 - - &655 + - *335 + - *336 + - &658 name: per description: The time frame to display results for. in: query @@ -93906,7 +94152,7 @@ paths: example: 128 clones: type: array - items: &656 + items: &659 title: Traffic type: object properties: @@ -93993,8 +94239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -94084,8 +94330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -94145,9 +94391,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *332 - - *333 - - *655 + - *335 + - *336 + - *658 responses: '200': description: Response @@ -94166,7 +94412,7 @@ paths: example: 3782 views: type: array - items: *656 + items: *659 required: - uniques - count @@ -94243,8 +94489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -94280,7 +94526,7 @@ paths: description: Response content: application/json: - schema: *153 + schema: *156 examples: default: value: @@ -94518,8 +94764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -94542,8 +94788,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -94565,8 +94811,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -94592,8 +94838,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *332 - - *333 + - *335 + - *336 - name: ref in: path required: true @@ -94685,9 +94931,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -94728,7 +94974,7 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: default: value: @@ -94834,8 +95080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *142 - - *541 + - *145 + - *544 requestBody: required: true content: @@ -94899,14 +95145,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *544 + items: *547 examples: - default: *657 + default: *660 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -94937,8 +95183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *142 - - *541 + - *145 + - *544 requestBody: required: true content: @@ -95003,14 +95249,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *544 + items: *547 examples: - default: *657 + default: *660 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -95036,16 +95282,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *142 - - *541 - - *231 + - *145 + - *544 + - *234 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -95159,7 +95405,7 @@ paths: html_url: type: string format: uri - repository: *153 + repository: *156 score: type: number file_size: @@ -95177,7 +95423,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &658 + text_matches: &661 title: Search Result Text Matches type: array items: @@ -95291,7 +95537,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *114 + '503': *116 '422': *15 '403': *29 x-github: @@ -95339,7 +95585,7 @@ paths: enum: - author-date - committer-date - - &659 + - &662 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -95410,7 +95656,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true comment_count: type: integer @@ -95430,7 +95676,7 @@ paths: url: type: string format: uri - verification: *518 + verification: *521 required: - author - committer @@ -95449,7 +95695,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true parents: type: array @@ -95462,12 +95708,12 @@ paths: type: string sha: type: string - repository: *153 + repository: *156 score: type: number node_id: type: string - text_matches: *658 + text_matches: *661 required: - sha - node_id @@ -95659,7 +95905,7 @@ paths: - interactions - created - updated - - *659 + - *662 - *17 - *19 - name: advanced_search @@ -95756,11 +96002,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: type: string state_reason: @@ -95777,8 +96023,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true comments: type: integer @@ -95792,7 +96038,7 @@ paths: type: string format: date-time nullable: true - text_matches: *658 + text_matches: *661 pull_request: type: object properties: @@ -95825,10 +96071,10 @@ paths: type: string score: type: number - author_association: *74 + author_association: *76 draft: type: boolean - repository: *71 + repository: *73 body_html: type: string body_text: @@ -95836,7 +96082,7 @@ paths: timeline_url: type: string format: uri - type: *232 + type: *235 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -95846,17 +96092,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - reactions: *75 + reactions: *77 required: - assignee - closed_at @@ -95972,7 +96218,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *114 + '503': *116 '422': *15 '304': *37 '403': *29 @@ -96025,7 +96271,7 @@ paths: enum: - created - updated - - *659 + - *662 - *17 - *19 responses: @@ -96069,7 +96315,7 @@ paths: nullable: true score: type: number - text_matches: *658 + text_matches: *661 required: - id - node_id @@ -96154,7 +96400,7 @@ paths: - forks - help-wanted-issues - updated - - *659 + - *662 - *17 - *19 responses: @@ -96384,8 +96630,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true permissions: type: object @@ -96404,7 +96650,7 @@ paths: - admin - pull - push - text_matches: *658 + text_matches: *661 temp_clone_token: type: string allow_merge_commit: @@ -96606,7 +96852,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *114 + '503': *116 '422': *15 '304': *37 x-github: @@ -96704,7 +96950,7 @@ paths: type: string format: uri nullable: true - text_matches: *658 + text_matches: *661 related: type: array nullable: true @@ -96895,7 +97141,7 @@ paths: - followers - repositories - joined - - *659 + - *662 - *17 - *19 responses: @@ -96999,7 +97245,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *658 + text_matches: *661 blog: type: string nullable: true @@ -97058,7 +97304,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *114 + '503': *116 '422': *15 x-github: githubCloudOnly: false @@ -97078,7 +97324,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &662 + - &665 name: team_id description: The unique identifier of the team. in: path @@ -97090,9 +97336,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 x-github: githubCloudOnly: false @@ -97119,7 +97365,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *662 + - *665 requestBody: required: true content: @@ -97182,16 +97428,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '201': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 '422': *15 '403': *29 @@ -97219,7 +97465,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *662 + - *665 responses: '204': description: Response @@ -97248,7 +97494,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -97258,11 +97504,11 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97286,7 +97532,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *662 + - *665 - name: role description: Filters members returned by their role in the team. in: query @@ -97309,9 +97555,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -97337,8 +97583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: if user is a member @@ -97374,8 +97620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -97414,8 +97660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -97451,16 +97697,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '200': description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-user-is-a-team-maintainer: *663 + response-if-user-is-a-team-maintainer: *666 '404': *6 x-github: githubCloudOnly: false @@ -97493,8 +97739,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 requestBody: required: false content: @@ -97519,9 +97765,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-users-membership-with-team-is-now-pending: *664 + response-if-users-membership-with-team-is-now-pending: *667 '403': description: Forbidden if team synchronization is set up '422': @@ -97555,8 +97801,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -97583,7 +97829,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -97593,11 +97839,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -97625,15 +97871,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *665 + schema: *668 examples: alternative-response-with-extra-repository-information: value: @@ -97784,9 +98030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 requestBody: required: false content: @@ -97836,9 +98082,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 responses: '204': description: Response @@ -97863,7 +98109,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -97873,11 +98119,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - response-if-child-teams-exist: *666 + response-if-child-teams-exist: *669 headers: - Link: *59 + Link: *61 '404': *6 '403': *29 '422': *15 @@ -97908,7 +98154,7 @@ paths: application/json: schema: oneOf: - - &668 + - &671 title: Private User description: Private User type: object @@ -98111,7 +98357,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *667 + - *670 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -98264,7 +98510,7 @@ paths: description: Response content: application/json: - schema: *668 + schema: *671 examples: default: value: @@ -98343,7 +98589,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '304': *37 '404': *6 '403': *29 @@ -98366,7 +98612,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *63 + - *65 responses: '204': description: If the user is blocked @@ -98394,7 +98640,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -98418,7 +98664,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -98467,11 +98713,11 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -98608,21 +98854,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98662,7 +98908,7 @@ paths: type: integer secrets: type: array - items: &669 + items: &672 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -98702,9 +98948,9 @@ paths: - visibility - selected_repositories_url examples: - default: *456 + default: *459 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98772,13 +99018,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 responses: '200': description: Response content: application/json: - schema: *669 + schema: *672 examples: default: value: @@ -98808,7 +99054,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 requestBody: required: true content: @@ -98853,7 +99099,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -98881,7 +99127,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 responses: '204': description: Response @@ -98906,7 +99152,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *161 + - *164 responses: '200': description: Response @@ -98922,13 +99168,13 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *670 + default: *673 '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98949,7 +99195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *161 + - *164 requestBody: required: true content: @@ -98981,7 +99227,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99003,7 +99249,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *161 + - *164 - name: repository_id in: path required: true @@ -99015,7 +99261,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99036,7 +99282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *161 + - *164 - name: repository_id in: path required: true @@ -99048,7 +99294,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99068,17 +99314,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99102,7 +99348,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 requestBody: required: false content: @@ -99132,9 +99378,9 @@ paths: description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 @@ -99156,11 +99402,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '202': *39 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99185,13 +99431,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '202': description: Response content: application/json: - schema: &671 + schema: &674 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -99232,7 +99478,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &672 + default: &675 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -99240,7 +99486,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99264,7 +99510,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *239 + - *242 - name: export_id in: path required: true @@ -99277,9 +99523,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *674 examples: - default: *672 + default: *675 '404': *6 x-github: githubCloudOnly: false @@ -99300,7 +99546,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *239 + - *242 responses: '200': description: Response @@ -99316,11 +99562,11 @@ paths: type: integer machines: type: array - items: *673 + items: *676 examples: - default: *674 + default: *677 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99347,7 +99593,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *239 + - *242 requestBody: required: true content: @@ -99397,13 +99643,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *335 + repository: *338 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *454 - required: *455 + properties: *457 + required: *458 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -100177,17 +100423,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '304': *37 - '500': *113 + '500': *115 '400': *14 '401': *25 '402': @@ -100197,7 +100443,7 @@ paths: schema: *3 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100217,16 +100463,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 - '500': *113 + default: *456 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -100255,9 +100501,9 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: &685 + default: &688 value: - id: 197 name: hello_docker @@ -100358,7 +100604,7 @@ paths: application/json: schema: type: array - items: &675 + items: &678 title: Email description: Email type: object @@ -100423,16 +100669,16 @@ paths: application/json: schema: type: array - items: *675 + items: *678 examples: - default: &687 + default: &690 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -100500,7 +100746,7 @@ paths: application/json: schema: type: array - items: *675 + items: *678 examples: default: value: @@ -100610,9 +100856,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -100643,9 +100889,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -100665,7 +100911,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *63 + - *65 responses: '204': description: if the person is followed by the authenticated user @@ -100695,7 +100941,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -100720,7 +100966,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -100756,7 +101002,7 @@ paths: application/json: schema: type: array - items: &676 + items: &679 title: GPG Key description: A unique encryption key type: object @@ -100887,7 +101133,7 @@ paths: - subkeys - revoked examples: - default: &703 + default: &706 value: - id: 3 name: Octocat's GPG Key @@ -100919,7 +101165,7 @@ paths: revoked: false raw_key: string headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -100972,9 +101218,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *679 examples: - default: &677 + default: &680 value: id: 3 name: Octocat's GPG Key @@ -101031,7 +101277,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &678 + - &681 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -101043,9 +101289,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *679 examples: - default: *677 + default: *680 '404': *6 '304': *37 '403': *29 @@ -101068,7 +101314,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *678 + - *681 responses: '204': description: Response @@ -101211,7 +101457,7 @@ paths: suspended_at: suspended_by: headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -101259,11 +101505,11 @@ paths: type: array items: allOf: - - *71 + - *73 examples: - default: *145 + default: *148 headers: - Link: *59 + Link: *61 '404': *6 '403': *29 '304': *37 @@ -101286,7 +101532,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *142 + - *145 responses: '204': description: Response @@ -101312,7 +101558,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *142 + - *145 responses: '204': description: Response @@ -101346,12 +101592,12 @@ paths: application/json: schema: anyOf: - - *224 + - *227 - type: object properties: {} additionalProperties: false examples: - default: *225 + default: *228 '204': description: Response when there are no restrictions x-github: @@ -101375,7 +101621,7 @@ paths: required: true content: application/json: - schema: *529 + schema: *532 examples: default: value: @@ -101386,7 +101632,7 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: default: value: @@ -101467,7 +101713,7 @@ paths: - closed - all default: open - - *235 + - *238 - name: sort description: What to sort results by. in: query @@ -101479,8 +101725,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -101490,11 +101736,11 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *236 + default: *239 headers: - Link: *59 + Link: *61 '404': *6 '304': *37 x-github: @@ -101525,7 +101771,7 @@ paths: application/json: schema: type: array - items: &679 + items: &682 title: Key description: Key type: object @@ -101576,7 +101822,7 @@ paths: verified: false read_only: false headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -101626,9 +101872,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *682 examples: - default: &680 + default: &683 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -101661,15 +101907,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *566 responses: '200': description: Response content: application/json: - schema: *679 + schema: *682 examples: - default: *680 + default: *683 '404': *6 '304': *37 '403': *29 @@ -101692,7 +101938,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *566 responses: '204': description: Response @@ -101725,7 +101971,7 @@ paths: application/json: schema: type: array - items: &681 + items: &684 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -101782,7 +102028,7 @@ paths: - id - type - login - plan: *95 + plan: *97 required: - billing_cycle - next_billing_date @@ -101793,7 +102039,7 @@ paths: - account - plan examples: - default: &682 + default: &685 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -101826,7 +102072,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '304': *37 '401': *25 '404': *6 @@ -101855,11 +102101,11 @@ paths: application/json: schema: type: array - items: *681 + items: *684 examples: - default: *682 + default: *685 headers: - Link: *59 + Link: *61 '304': *37 '401': *25 x-github: @@ -101897,7 +102143,7 @@ paths: application/json: schema: type: array - items: *241 + items: *244 examples: default: value: @@ -101980,7 +102226,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102005,13 +102251,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -102073,7 +102319,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *67 + - *69 requestBody: required: true content: @@ -102098,7 +102344,7 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -102170,7 +102416,7 @@ paths: application/json: schema: type: array - items: *243 + items: *246 examples: default: value: @@ -102323,7 +102569,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102423,7 +102669,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -102603,7 +102849,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *244 + - *247 - name: exclude in: query required: false @@ -102616,7 +102862,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -102810,7 +103056,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *244 + - *247 responses: '302': description: Response @@ -102836,7 +103082,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *244 + - *247 responses: '204': description: Response @@ -102865,8 +103111,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *244 - - *683 + - *247 + - *686 responses: '204': description: Response @@ -102890,7 +103136,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *244 + - *247 - *17 - *19 responses: @@ -102900,11 +103146,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -102937,11 +103183,11 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102981,7 +103227,7 @@ paths: - docker - nuget - container - - *684 + - *687 - *19 - *17 responses: @@ -102991,10 +103237,10 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *685 - '400': *686 + default: *688 + '400': *689 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103014,16 +103260,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: - default: &704 + default: &707 value: id: 40201 name: octo-name @@ -103136,8 +103382,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 responses: '204': description: Response @@ -103167,8 +103413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 - name: token description: package token schema: @@ -103200,8 +103446,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 - *19 - *17 - name: state @@ -103221,7 +103467,7 @@ paths: application/json: schema: type: array - items: *254 + items: *257 examples: default: value: @@ -103270,15 +103516,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '200': description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -103314,9 +103560,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '204': description: Response @@ -103346,9 +103592,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '204': description: Response @@ -103385,11 +103631,11 @@ paths: application/json: schema: type: array - items: *675 + items: *678 examples: - default: *687 + default: *690 headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103498,9 +103744,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: &694 + default: &697 summary: Default response value: - id: 1296269 @@ -103621,7 +103867,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '403': *29 @@ -103804,9 +104050,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -103844,11 +104090,11 @@ paths: application/json: schema: type: array - items: *531 + items: *534 examples: - default: *688 + default: *691 headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103869,12 +104115,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *228 + - *231 responses: '204': description: Response '403': *29 - '409': *52 + '409': *54 '404': *6 '304': *37 x-github: @@ -103892,11 +104138,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *228 + - *231 responses: '204': description: Response - '409': *52 + '409': *54 '304': *37 '404': *6 '403': *29 @@ -103925,7 +104171,7 @@ paths: application/json: schema: type: array - items: &689 + items: &692 title: Social account description: Social media account type: object @@ -103940,12 +104186,12 @@ paths: - provider - url examples: - default: &690 + default: &693 value: - provider: twitter url: https://twitter.com/github headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104002,9 +104248,9 @@ paths: application/json: schema: type: array - items: *689 + items: *692 examples: - default: *690 + default: *693 '422': *15 '304': *37 '404': *6 @@ -104091,7 +104337,7 @@ paths: application/json: schema: type: array - items: &691 + items: &694 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -104111,7 +104357,7 @@ paths: - title - created_at examples: - default: &722 + default: &725 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104122,7 +104368,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104175,9 +104421,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *694 examples: - default: &692 + default: &695 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -104207,7 +104453,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &693 + - &696 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -104219,9 +104465,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *694 examples: - default: *692 + default: *695 '404': *6 '304': *37 '403': *29 @@ -104244,7 +104490,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *693 + - *696 responses: '204': description: Response @@ -104273,7 +104519,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &723 + - &726 name: sort description: The property to sort the results by. `created` means when the repository was starred. `updated` means when the repository was last pushed @@ -104286,7 +104532,7 @@ paths: - created - updated default: created - - *53 + - *55 - *17 - *19 responses: @@ -104296,13 +104542,13 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default-response: *694 + default-response: *697 application/vnd.github.v3.star+json: schema: type: array - items: &724 + items: &727 title: Starred Repository description: Starred Repository type: object @@ -104310,7 +104556,7 @@ paths: starred_at: type: string format: date-time - repo: *71 + repo: *73 required: - starred_at - repo @@ -104438,7 +104684,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -104458,8 +104704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response if this repository is starred by you @@ -104487,8 +104733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -104512,8 +104758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -104546,11 +104792,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -104585,7 +104831,7 @@ paths: application/json: schema: type: array - items: *328 + items: *331 examples: default: value: @@ -104636,7 +104882,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104663,7 +104909,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *97 + - *99 responses: '200': description: Response @@ -104671,10 +104917,10 @@ paths: application/json: schema: oneOf: - - *668 - - *667 + - *671 + - *670 examples: - default-response: &698 + default-response: &701 summary: Default response value: login: octocat @@ -104709,7 +104955,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &699 + response-with-git-hub-plan-information: &702 summary: Response with GitHub plan information value: login: octocat @@ -104766,14 +105012,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &696 + - &699 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *268 + - *271 requestBody: required: true description: Details of the draft item to create in the project. @@ -104807,9 +105053,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: - draft_issue: *275 + draft_issue: *278 '304': *37 '403': *29 '401': *25 @@ -104832,7 +105078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *695 + - *698 - *17 responses: '200': @@ -104843,7 +105089,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: Link: example: ; rel="next" @@ -104867,8 +105113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *696 - - *268 + - *699 + - *271 requestBody: required: true content: @@ -104939,17 +105185,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *697 + schema: *700 examples: table_view: summary: Response for creating a table view - value: *279 + value: *282 board_view: summary: Response for creating a board view with filter - value: *279 + value: *282 roadmap_view: summary: Response for creating a roadmap view - value: *279 + value: *282 '304': *37 '403': *29 '401': *25 @@ -104983,7 +105229,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *63 + - *65 responses: '200': description: Response @@ -104991,11 +105237,11 @@ paths: application/json: schema: oneOf: - - *668 - - *667 + - *671 + - *670 examples: - default-response: *698 - response-with-git-hub-plan-information: *699 + default-response: *701 + response-with-git-hub-plan-information: *702 '404': *6 x-github: githubCloudOnly: false @@ -105019,9 +105265,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *45 - - *46 - - *63 + - *47 + - *48 + - *65 requestBody: required: true content: @@ -105045,8 +105291,8 @@ paths: required: - subject_digests examples: - default: *700 - withPredicateType: *701 + default: *703 + withPredicateType: *704 responses: '200': description: Response @@ -105099,7 +105345,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *702 + default: *705 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105117,7 +105363,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *63 + - *65 requestBody: required: true content: @@ -105182,7 +105428,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *63 + - *65 - name: subject_digest description: Subject Digest in: path @@ -105213,7 +105459,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *63 + - *65 - name: attestation_id description: Attestation ID in: path @@ -105249,9 +105495,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations parameters: - *17 - - *45 - - *46 - - *63 + - *47 + - *48 + - *65 - name: subject_digest description: Subject Digest in: path @@ -105304,12 +105550,12 @@ paths: initiator: type: string examples: - default: *393 + default: *396 '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -105335,7 +105581,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *63 + - *65 responses: '200': description: Response @@ -105343,9 +105589,9 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *685 + default: *688 '403': *29 '401': *25 x-github: @@ -105368,7 +105614,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105378,7 +105624,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105440,8 +105686,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *63 - - *67 + - *65 + - *69 - *17 - *19 responses: @@ -105451,7 +105697,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105528,7 +105774,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105538,7 +105784,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105596,7 +105842,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105608,9 +105854,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105627,7 +105873,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105639,9 +105885,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105658,7 +105904,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *63 + - *65 - name: target_user in: path required: true @@ -105685,8 +105931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *63 - - *84 + - *65 + - *86 - *17 - *19 responses: @@ -105696,11 +105942,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -105719,7 +105965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105729,11 +105975,11 @@ paths: application/json: schema: type: array - items: *676 + items: *679 examples: - default: *703 + default: *706 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105755,7 +106001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *63 + - *65 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -105827,7 +106073,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *63 + - *65 responses: '200': description: Response @@ -105835,7 +106081,7 @@ paths: application/json: schema: *22 examples: - default: *528 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105853,7 +106099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105888,7 +106134,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105908,7 +106154,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105918,11 +106164,11 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105959,8 +106205,8 @@ paths: - docker - nuget - container - - *684 - - *63 + - *687 + - *65 - *19 - *17 responses: @@ -105970,12 +106216,12 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *685 + default: *688 '403': *29 '401': *25 - '400': *686 + '400': *689 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105995,17 +106241,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: - default: *704 + default: *707 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106026,9 +106272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '204': description: Response @@ -106060,9 +106306,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 - name: token description: package token schema: @@ -106094,9 +106340,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '200': description: Response @@ -106104,7 +106350,7 @@ paths: application/json: schema: type: array - items: *254 + items: *257 examples: default: value: @@ -106162,16 +106408,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *252 - - *253 - *255 - - *63 + - *256 + - *258 + - *65 responses: '200': description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -106206,10 +106452,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *252 - - *253 - - *63 - *255 + - *256 + - *65 + - *258 responses: '204': description: Response @@ -106241,10 +106487,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *252 - - *253 - - *63 - *255 + - *256 + - *65 + - *258 responses: '204': description: Response @@ -106268,15 +106514,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *63 + - *65 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -106285,11 +106531,11 @@ paths: application/json: schema: type: array - items: *266 + items: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106309,18 +106555,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *268 - - *63 + - *271 + - *65 responses: '200': description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106340,11 +106586,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *268 - - *63 + - *271 + - *65 - *17 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -106352,11 +106598,11 @@ paths: application/json: schema: type: array - items: *272 + items: *275 examples: - default: *705 + default: *708 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106375,8 +106621,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *63 - - *268 + - *65 + - *271 requestBody: required: true content: @@ -106414,7 +106660,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *706 + items: *709 required: - name - data_type @@ -106430,7 +106676,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *707 + iteration_configuration: *710 required: - name - data_type @@ -106452,20 +106698,20 @@ paths: value: name: Due date data_type: date - single_select_field: *708 - iteration_field: *709 + single_select_field: *711 + iteration_field: *712 responses: '201': description: Response content: application/json: - schema: *272 + schema: *275 examples: - text_field: *710 - number_field: *711 - date_field: *712 - single_select_field: *713 - iteration_field: *714 + text_field: *713 + number_field: *714 + date_field: *715 + single_select_field: *716 + iteration_field: *717 '304': *37 '403': *29 '401': *25 @@ -106486,19 +106732,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *268 - - *715 - - *63 + - *271 + - *718 + - *65 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: *716 + default: *719 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106519,10 +106765,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *268 - - *63 - - *45 - - *46 + - *271 + - *65 + - *47 + - *48 - *17 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -106552,11 +106798,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106575,8 +106821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *63 - - *268 + - *65 + - *271 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -106646,22 +106892,22 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *275 + value: *278 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *275 + value: *278 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *275 + value: *278 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *275 + value: *278 '304': *37 '403': *29 '401': *25 @@ -106681,9 +106927,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -106703,11 +106949,11 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106726,9 +106972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -106798,13 +107044,13 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - text_field: *277 - number_field: *277 - date_field: *277 - single_select_field: *277 - iteration_field: *277 + text_field: *280 + number_field: *280 + date_field: *280 + single_select_field: *280 + iteration_field: *280 '401': *25 '403': *29 '404': *6 @@ -106824,9 +107070,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 responses: '204': description: Response @@ -106848,9 +107094,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *268 - - *63 - - *717 + - *271 + - *65 + - *720 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -106866,8 +107112,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -106876,11 +107122,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106906,7 +107152,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106916,7 +107162,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -106981,7 +107227,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106991,7 +107237,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -107054,7 +107300,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *63 + - *65 - name: type description: Limit results to repositories of the specified type. in: query @@ -107097,11 +107343,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107121,12 +107367,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *63 - - *116 + - *65 - *118 - - *117 - - *718 + - *120 - *119 + - *721 + - *121 responses: '200': description: Response when getting a billing premium request usage report @@ -107233,8 +107479,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107254,10 +107500,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *63 - - *116 - - *719 - - *117 + - *65 + - *118 + - *722 + - *119 responses: '200': description: Response when getting a billing usage report @@ -107327,8 +107573,8 @@ paths: repositoryName: user/example '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107351,13 +107597,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *63 - - *116 + - *65 - *118 - - *117 - - *720 + - *120 - *119 - - *721 + - *723 + - *121 + - *724 responses: '200': description: Response when getting a billing usage summary @@ -107462,8 +107708,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107481,7 +107727,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107491,11 +107737,11 @@ paths: application/json: schema: type: array - items: *689 + items: *692 examples: - default: *690 + default: *693 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107513,7 +107759,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107523,11 +107769,11 @@ paths: application/json: schema: type: array - items: *691 + items: *694 examples: - default: *722 + default: *725 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107549,9 +107795,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *63 - - *723 - - *53 + - *65 + - *726 + - *55 - *17 - *19 responses: @@ -107562,13 +107808,13 @@ paths: schema: anyOf: - type: array - items: *724 + items: *727 - type: array - items: *71 + items: *73 examples: - default-response: *694 + default-response: *697 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107585,7 +107831,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107595,11 +107841,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *256 + default: *259 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107725,7 +107971,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &725 + enterprise: &728 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -107783,7 +108029,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &726 + installation: &729 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -107802,7 +108048,7 @@ x-webhooks: required: - id - node_id - organization: &727 + organization: &730 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -107862,13 +108108,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &728 + repository: &731 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &760 + properties: &763 id: description: Unique identifier of the repository example: 42 @@ -107888,8 +108134,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true organization: title: Simple User @@ -108568,7 +108814,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &761 + required: &764 - archive_url - assignees_url - blobs_url @@ -108719,10 +108965,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -108798,11 +109044,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: &729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: &732 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -109025,11 +109271,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: *729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: *732 sender: *4 required: - action @@ -109212,11 +109458,11 @@ x-webhooks: - everyone required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: *729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: *732 sender: *4 required: - action @@ -109300,7 +109546,7 @@ x-webhooks: type: string enum: - completed - check_run: &731 + check_run: &734 title: CheckRun description: A check performed on the code of a given code change type: object @@ -109353,8 +109599,8 @@ x-webhooks: type: string pull_requests: type: array - items: *82 - repository: *153 + items: *84 + repository: *156 status: example: completed type: string @@ -109391,7 +109637,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *730 + deployment: *733 details_url: example: https://example.com type: string @@ -109441,7 +109687,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *82 + items: *84 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -109476,10 +109722,10 @@ x-webhooks: - output - app - pull_requests - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -109870,11 +110116,11 @@ x-webhooks: type: string enum: - created - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -110268,11 +110514,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 requested_action: description: The action requested by the user. type: object @@ -110675,11 +110921,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -111649,10 +111895,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -112341,10 +112587,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -113027,10 +113273,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -113196,7 +113442,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -113341,20 +113587,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &732 + commit_oid: &735 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *725 - installation: *726 - organization: *727 - ref: &733 + enterprise: *728 + installation: *729 + organization: *730 + ref: &736 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *728 + repository: *731 sender: *4 required: - action @@ -113519,7 +113765,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -113749,12 +113995,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -113849,7 +114095,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114020,12 +114266,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -114191,7 +114437,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -114357,12 +114603,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -114461,7 +114707,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114636,16 +114882,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *728 + repository: *731 sender: *4 required: - action @@ -114742,7 +114988,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114882,12 +115128,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -115053,7 +115299,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -115198,10 +115444,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -115456,10 +115702,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -115539,18 +115785,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *727 - pusher_type: &734 + organization: *730 + pusher_type: &737 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &735 + ref: &738 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -115560,7 +115806,7 @@ x-webhooks: enum: - tag - branch - repository: *728 + repository: *731 sender: *4 required: - ref @@ -115642,10 +115888,10 @@ x-webhooks: type: string enum: - created - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115730,9 +115976,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115809,10 +116055,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115889,10 +116135,10 @@ x-webhooks: type: string enum: - updated - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115969,19 +116215,19 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - repository: *728 - organization: *727 + enterprise: *728 + installation: *729 + repository: *731 + organization: *730 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *284 + items: *287 old_property_values: type: array description: The old custom property values for the repository. - items: *284 + items: *287 required: - action - repository @@ -116057,18 +116303,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - pusher_type: *734 - ref: *735 + enterprise: *728 + installation: *729 + organization: *730 + pusher_type: *737 + ref: *738 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *728 + repository: *731 sender: *4 required: - ref @@ -116148,11 +116394,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116232,11 +116478,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116317,11 +116563,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116402,11 +116648,11 @@ x-webhooks: type: string enum: - created - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116485,11 +116731,11 @@ x-webhooks: type: string enum: - dismissed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116568,11 +116814,11 @@ x-webhooks: type: string enum: - fixed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116652,11 +116898,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116735,11 +116981,11 @@ x-webhooks: type: string enum: - reopened - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116816,9 +117062,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - key: &736 + enterprise: *728 + installation: *729 + key: &739 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -116854,8 +117100,8 @@ x-webhooks: - verified - created_at - read_only - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -116932,11 +117178,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - key: *736 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + key: *739 + organization: *730 + repository: *731 sender: *4 required: - action @@ -117492,12 +117738,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: &742 + workflow: &745 title: Workflow type: object nullable: true @@ -118238,15 +118484,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *737 - required: *738 + properties: *740 + required: *741 nullable: true pull_requests: type: array - items: *582 - repository: *728 - organization: *727 - installation: *726 + items: *585 + repository: *731 + organization: *730 + installation: *729 sender: *4 responses: '200': @@ -118317,7 +118563,7 @@ x-webhooks: type: string enum: - approved - approver: &739 + approver: &742 type: object properties: avatar_url: @@ -118360,11 +118606,11 @@ x-webhooks: type: string comment: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - reviewers: &740 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + reviewers: &743 type: array items: type: object @@ -118443,7 +118689,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &741 + workflow_job_run: &744 type: object properties: conclusion: @@ -119174,18 +119420,18 @@ x-webhooks: type: string enum: - rejected - approver: *739 + approver: *742 comment: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - reviewers: *740 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + reviewers: *743 sender: *4 since: type: string - workflow_job_run: *741 + workflow_job_run: *744 workflow_job_runs: type: array items: @@ -119889,13 +120135,13 @@ x-webhooks: type: string enum: - requested - enterprise: *725 + enterprise: *728 environment: type: string - installation: *726 - organization: *727 - repository: *728 - requestor: &747 + installation: *729 + organization: *730 + repository: *731 + requestor: &750 title: User type: object nullable: true @@ -121784,12 +122030,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Deployment Workflow Run type: object @@ -122469,7 +122715,7 @@ x-webhooks: type: string enum: - answered - answer: &745 + answer: &748 type: object properties: author_association: @@ -122626,11 +122872,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122757,11 +123003,11 @@ x-webhooks: - from required: - category - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122844,11 +123090,11 @@ x-webhooks: type: string enum: - closed - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122930,7 +123176,7 @@ x-webhooks: type: string enum: - created - comment: &744 + comment: &747 type: object properties: author_association: @@ -123087,11 +123333,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123174,12 +123420,12 @@ x-webhooks: type: string enum: - deleted - comment: *744 - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + comment: *747 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123274,12 +123520,12 @@ x-webhooks: - from required: - body - comment: *744 - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + comment: *747 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123363,11 +123609,11 @@ x-webhooks: type: string enum: - created - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123449,11 +123695,11 @@ x-webhooks: type: string enum: - deleted - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123553,11 +123799,11 @@ x-webhooks: type: string required: - from - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123639,10 +123885,10 @@ x-webhooks: type: string enum: - labeled - discussion: *743 - enterprise: *725 - installation: *726 - label: &746 + discussion: *746 + enterprise: *728 + installation: *729 + label: &749 title: Label type: object properties: @@ -123674,8 +123920,8 @@ x-webhooks: - color - default - description - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123758,11 +124004,11 @@ x-webhooks: type: string enum: - locked - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123844,11 +124090,11 @@ x-webhooks: type: string enum: - pinned - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123930,11 +124176,11 @@ x-webhooks: type: string enum: - reopened - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124019,16 +124265,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *743 - new_repository: *728 + new_discussion: *746 + new_repository: *731 required: - new_discussion - new_repository - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124111,10 +124357,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *743 - old_answer: *745 - organization: *727 - repository: *728 + discussion: *746 + old_answer: *748 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124196,12 +124442,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *743 - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124284,11 +124530,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124370,11 +124616,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124447,7 +124693,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *725 + enterprise: *728 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -125107,9 +125353,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *726 - organization: *727 - repository: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - forkee @@ -125255,9 +125501,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pages: description: The pages that were updated. type: array @@ -125294,7 +125540,7 @@ x-webhooks: - action - sha - html_url - repository: *728 + repository: *731 sender: *4 required: - pages @@ -125370,10 +125616,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: &748 + organization: *730 + repositories: &751 description: An array of repository objects that the installation can access. type: array @@ -125399,8 +125645,8 @@ x-webhooks: - name - full_name - private - repository: *728 - requester: *747 + repository: *731 + requester: *750 sender: *4 required: - action @@ -125475,11 +125721,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125555,11 +125801,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125635,10 +125881,10 @@ x-webhooks: type: string enum: - added - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories_added: &749 + organization: *730 + repositories_added: &752 description: An array of repository objects, which were added to the installation. type: array @@ -125684,15 +125930,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *728 - repository_selection: &750 + repository: *731 + repository_selection: &753 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *747 + requester: *750 sender: *4 required: - action @@ -125771,10 +126017,10 @@ x-webhooks: type: string enum: - removed - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories_added: *749 + organization: *730 + repositories_added: *752 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -125801,9 +126047,9 @@ x-webhooks: - name - full_name - private - repository: *728 - repository_selection: *750 - requester: *747 + repository: *731 + repository_selection: *753 + requester: *750 sender: *4 required: - action @@ -125882,11 +126128,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -126064,10 +126310,10 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 target_type: type: string @@ -126146,11 +126392,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -126274,8 +126520,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 reactions: title: Reactions type: object @@ -126324,8 +126570,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true user: title: User @@ -126410,8 +126656,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -127200,8 +127446,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -127217,7 +127463,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -127550,8 +127796,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -127631,7 +127877,7 @@ x-webhooks: type: string enum: - deleted - comment: &751 + comment: &754 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -127788,8 +128034,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true required: - url @@ -127804,8 +128050,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128590,8 +128836,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128607,7 +128853,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -128942,8 +129188,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -129023,7 +129269,7 @@ x-webhooks: type: string enum: - edited - changes: &780 + changes: &783 description: The changes to the comment. type: object properties: @@ -129035,9 +129281,9 @@ x-webhooks: type: string required: - from - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129825,8 +130071,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129842,7 +130088,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -130175,8 +130421,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -130257,9 +130503,9 @@ x-webhooks: type: string enum: - pinned - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131049,8 +131295,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131066,7 +131312,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -131401,8 +131647,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -131482,9 +131728,9 @@ x-webhooks: type: string enum: - unpinned - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132274,8 +132520,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132291,7 +132537,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -132626,8 +132872,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132710,15 +132956,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 + blocked_issue: *79 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - blocking_issue_repo: *71 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + blocking_issue_repo: *73 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132801,15 +133047,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 + blocked_issue: *79 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - blocking_issue_repo: *71 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + blocking_issue_repo: *73 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132891,15 +133137,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 - blocked_issue_repo: *71 + blocked_issue: *79 + blocked_issue_repo: *73 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132982,15 +133228,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 - blocked_issue_repo: *71 + blocked_issue: *79 + blocked_issue_repo: *73 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -133070,10 +133316,10 @@ x-webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *725 - installation: *726 - issue: &754 + assignee: *750 + enterprise: *728 + installation: *729 + issue: &757 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133862,14 +134108,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133885,7 +134131,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -133986,8 +134232,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -134067,8 +134313,8 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -134862,14 +135108,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134885,7 +135131,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -135121,8 +135367,8 @@ x-webhooks: required: - state - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -135201,8 +135447,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135987,14 +136233,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136010,7 +136256,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -136110,8 +136356,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -136190,8 +136436,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136998,14 +137244,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137021,7 +137267,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -137100,7 +137346,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &752 + milestone: &755 title: Milestone description: A collection of related issues and pull requests. type: object @@ -137238,8 +137484,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -137338,8 +137584,8 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138128,14 +138374,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138148,7 +138394,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -138252,9 +138498,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *727 - repository: *728 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -138334,8 +138580,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139123,14 +139369,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139143,7 +139389,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -139247,9 +139493,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *727 - repository: *728 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -139329,8 +139575,8 @@ x-webhooks: type: string enum: - locked - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140142,14 +140388,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140162,7 +140408,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -140243,8 +140489,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -140323,8 +140569,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141130,14 +141376,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141153,7 +141399,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -141231,9 +141477,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *752 - organization: *727 - repository: *728 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -142096,11 +142342,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142128,8 +142374,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true user: title: User @@ -142201,7 +142447,7 @@ x-webhooks: required: - login - id - type: *232 + type: *235 required: - id - number @@ -142685,8 +142931,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143470,11 +143716,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143490,7 +143736,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -143503,8 +143749,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true user: title: User @@ -143598,8 +143844,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -143679,9 +143925,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *725 - installation: *726 - issue: &753 + enterprise: *728 + installation: *729 + issue: &756 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144464,14 +144710,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144487,7 +144733,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -144587,8 +144833,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -144667,8 +144913,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145478,14 +145724,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145579,9 +145825,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *232 - organization: *727 - repository: *728 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -146447,14 +146693,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146470,7 +146716,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -147053,11 +147299,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *725 - installation: *726 - issue: *753 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *756 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147137,12 +147383,12 @@ x-webhooks: type: string enum: - typed - enterprise: *725 - installation: *726 - issue: *754 - type: *232 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147223,7 +147469,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &783 + assignee: &786 title: User type: object nullable: true @@ -147293,11 +147539,11 @@ x-webhooks: required: - login - id - enterprise: *725 - installation: *726 - issue: *754 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147376,12 +147622,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *725 - installation: *726 - issue: *754 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147461,8 +147707,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148272,14 +148518,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148295,7 +148541,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -148373,8 +148619,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148454,11 +148700,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *725 - installation: *726 - issue: *753 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *756 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148537,12 +148783,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *725 - installation: *726 - issue: *754 - type: *232 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148622,11 +148868,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148704,11 +148950,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148818,11 +149064,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148904,9 +149150,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: &755 + enterprise: *728 + installation: *729 + marketplace_purchase: &758 title: Marketplace Purchase type: object required: @@ -148989,8 +149235,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *727 - previous_marketplace_purchase: &756 + organization: *730 + previous_marketplace_purchase: &759 title: Marketplace Purchase type: object properties: @@ -149070,7 +149316,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -149150,10 +149396,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -149236,7 +149482,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -149318,10 +149564,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -149403,7 +149649,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -149484,8 +149730,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 marketplace_purchase: title: Marketplace Purchase type: object @@ -149567,9 +149813,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *727 - previous_marketplace_purchase: *756 - repository: *728 + organization: *730 + previous_marketplace_purchase: *759 + repository: *731 sender: *4 required: - action @@ -149649,12 +149895,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 - previous_marketplace_purchase: *756 - repository: *728 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 + previous_marketplace_purchase: *759 + repository: *731 sender: *4 required: - action @@ -149756,11 +150002,11 @@ x-webhooks: type: string required: - to - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -149860,11 +150106,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -149943,11 +150189,11 @@ x-webhooks: type: string enum: - removed - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150025,11 +150271,11 @@ x-webhooks: type: string enum: - added - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150105,7 +150351,7 @@ x-webhooks: required: - login - id - team: &757 + team: &760 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -150328,11 +150574,11 @@ x-webhooks: type: string enum: - removed - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150409,7 +150655,7 @@ x-webhooks: required: - login - id - team: *757 + team: *760 required: - action - scope @@ -150491,8 +150737,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *726 - merge_group: &759 + installation: *729 + merge_group: &762 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -150511,15 +150757,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *758 + head_commit: *761 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150605,10 +150851,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *726 - merge_group: *759 - organization: *727 - repository: *728 + installation: *729 + merge_group: *762 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150681,7 +150927,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 + enterprise: *728 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -150790,16 +151036,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *726 - organization: *727 + installation: *729 + organization: *730 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -150880,11 +151126,11 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150963,9 +151209,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - milestone: &762 + enterprise: *728 + installation: *729 + milestone: &765 title: Milestone description: A collection of related issues and pull requests. type: object @@ -151102,8 +151348,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151182,11 +151428,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151296,11 +151542,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151380,11 +151626,11 @@ x-webhooks: type: string enum: - opened - enterprise: *725 - installation: *726 - milestone: *762 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *765 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151463,11 +151709,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *747 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + blocked_user: *750 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151546,11 +151792,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *747 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + blocked_user: *750 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151629,9 +151875,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - membership: &763 + enterprise: *728 + installation: *729 + membership: &766 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -151738,8 +151984,8 @@ x-webhooks: - role - organization_url - user - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151817,11 +152063,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151900,8 +152146,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -152017,10 +152263,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 - user: *747 + user: *750 required: - action - invitation @@ -152098,11 +152344,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -152189,11 +152435,11 @@ x-webhooks: properties: from: type: string - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -152270,9 +152516,9 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 package: description: Information about the package. type: object @@ -152771,7 +153017,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &764 + items: &767 title: Ruby Gems metadata type: object properties: @@ -152866,7 +153112,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -152942,9 +153188,9 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 package: description: Information about the package. type: object @@ -153297,7 +153543,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *767 source_url: type: string format: uri @@ -153367,7 +153613,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -153543,12 +153789,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *725 + enterprise: *728 id: type: integer - installation: *726 - organization: *727 - repository: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - id @@ -153625,7 +153871,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &765 + personal_access_token_request: &768 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -153771,10 +154017,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *725 - organization: *727 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153851,11 +154097,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *765 - enterprise: *725 - organization: *727 + personal_access_token_request: *768 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153931,11 +154177,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *765 - enterprise: *725 - organization: *727 + personal_access_token_request: *768 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -154010,11 +154256,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *765 - organization: *727 - enterprise: *725 + personal_access_token_request: *768 + organization: *730 + enterprise: *728 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -154119,7 +154365,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *766 + last_response: *769 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -154151,8 +154397,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 zen: description: Random string of GitHub zen. @@ -154397,10 +154643,10 @@ x-webhooks: - from required: - note - enterprise: *725 - installation: *726 - organization: *727 - project_card: &767 + enterprise: *728 + installation: *729 + organization: *730 + project_card: &770 title: Project Card type: object properties: @@ -154519,7 +154765,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -154600,11 +154846,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project_card: *767 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_card: *770 + repository: *731 sender: *4 required: - action @@ -154684,9 +154930,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 project_card: title: Project Card type: object @@ -154814,8 +155060,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -154909,11 +155155,11 @@ x-webhooks: - from required: - note - enterprise: *725 - installation: *726 - organization: *727 - project_card: *767 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_card: *770 + repository: *731 sender: *4 required: - action @@ -155007,9 +155253,9 @@ x-webhooks: - from required: - column_id - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 project_card: allOf: - title: Project Card @@ -155199,7 +155445,7 @@ x-webhooks: type: string required: - after_id - repository: *728 + repository: *731 sender: *4 required: - action @@ -155279,10 +155525,10 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - organization: *727 - project: &769 + enterprise: *728 + installation: *729 + organization: *730 + project: &772 title: Project type: object properties: @@ -155406,7 +155652,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -155486,10 +155732,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project_column: &768 + enterprise: *728 + installation: *729 + organization: *730 + project_column: &771 title: Project Column type: object properties: @@ -155528,7 +155774,7 @@ x-webhooks: - name - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -155607,18 +155853,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -155708,11 +155954,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 + repository: *731 sender: *4 required: - action @@ -155792,11 +156038,11 @@ x-webhooks: type: string enum: - moved - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 + repository: *731 sender: *4 required: - action @@ -155876,11 +156122,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -155960,18 +156206,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - project: *769 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -156073,11 +156319,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -156156,11 +156402,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -156241,9 +156487,9 @@ x-webhooks: type: string enum: - closed - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156324,9 +156570,9 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156407,9 +156653,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156526,9 +156772,9 @@ x-webhooks: type: string to: type: string - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156611,7 +156857,7 @@ x-webhooks: type: string enum: - archived - changes: &773 + changes: &776 type: object properties: archived_at: @@ -156625,9 +156871,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *726 - organization: *727 - projects_v2_item: &770 + installation: *729 + organization: *730 + projects_v2_item: &773 title: Projects v2 Item description: An item belonging to a project type: object @@ -156645,7 +156891,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *273 + content_type: *276 creator: *4 created_at: type: string @@ -156762,9 +157008,9 @@ x-webhooks: nullable: true to: type: string - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156846,9 +157092,9 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156929,9 +157175,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -157037,7 +157283,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &771 + - &774 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -157059,7 +157305,7 @@ x-webhooks: required: - id - name - - &772 + - &775 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -157093,8 +157339,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *771 - - *772 + - *774 + - *775 required: - field_value - type: object @@ -157110,9 +157356,9 @@ x-webhooks: nullable: true required: - body - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -157207,9 +157453,9 @@ x-webhooks: to: type: string nullable: true - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -157292,10 +157538,10 @@ x-webhooks: type: string enum: - restored - changes: *773 - installation: *726 - organization: *727 - projects_v2_item: *770 + changes: *776 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -157377,9 +157623,9 @@ x-webhooks: type: string enum: - reopened - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -157460,14 +157706,14 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2_status_update: &776 + installation: *729 + organization: *730 + projects_v2_status_update: &779 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *774 - required: *775 + properties: *777 + required: *778 sender: *4 required: - action @@ -157548,9 +157794,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2_status_update: *776 + installation: *729 + organization: *730 + projects_v2_status_update: *779 sender: *4 required: - action @@ -157686,9 +157932,9 @@ x-webhooks: type: string format: date nullable: true - installation: *726 - organization: *727 - projects_v2_status_update: *776 + installation: *729 + organization: *730 + projects_v2_status_update: *779 sender: *4 required: - action @@ -157759,10 +158005,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - repository @@ -157839,13 +158085,13 @@ x-webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *725 - installation: *726 - number: &777 + assignee: *750 + enterprise: *728 + installation: *729 + number: &780 description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -160158,7 +160404,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -160240,11 +160486,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -162552,7 +162798,7 @@ x-webhooks: - draft reason: type: string - repository: *728 + repository: *731 sender: *4 required: - action @@ -162634,11 +162880,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -164946,7 +165192,7 @@ x-webhooks: - draft reason: type: string - repository: *728 + repository: *731 sender: *4 required: - action @@ -165028,13 +165274,13 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: &778 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: &781 allOf: - - *582 + - *585 - type: object properties: allow_auto_merge: @@ -165096,7 +165342,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *728 + repository: *731 sender: *4 required: - action @@ -165177,12 +165423,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -165262,11 +165508,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *725 - milestone: *566 - number: *777 - organization: *727 - pull_request: &779 + enterprise: *728 + milestone: *569 + number: *780 + organization: *730 + pull_request: &782 title: Pull Request type: object properties: @@ -167559,7 +167805,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -167638,11 +167884,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -169954,7 +170200,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *728 + repository: *731 sender: *4 required: - action @@ -170078,12 +170324,12 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -170163,11 +170409,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -172464,7 +172710,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -172544,11 +172790,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *725 - installation: *726 - label: *746 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + label: *749 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -174860,7 +175106,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -174941,10 +175187,10 @@ x-webhooks: type: string enum: - locked - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -177254,7 +177500,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -177334,12 +177580,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *725 - milestone: *566 - number: *777 - organization: *727 - pull_request: *779 - repository: *728 + enterprise: *728 + milestone: *569 + number: *780 + organization: *730 + pull_request: *782 + repository: *731 sender: *4 required: - action @@ -177418,12 +177664,12 @@ x-webhooks: type: string enum: - opened - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177504,12 +177750,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177589,12 +177835,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177960,9 +178206,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -180162,7 +180408,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -180242,7 +180488,7 @@ x-webhooks: type: string enum: - deleted - comment: &781 + comment: &784 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -180527,9 +180773,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -182717,7 +182963,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -182797,11 +183043,11 @@ x-webhooks: type: string enum: - edited - changes: *780 - comment: *781 - enterprise: *725 - installation: *726 - organization: *727 + changes: *783 + comment: *784 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -184992,7 +185238,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -185073,9 +185319,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -187278,7 +187524,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 review: description: The review that was affected. type: object @@ -187525,9 +187771,9 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -189581,8 +189827,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 - review: &782 + repository: *731 + review: &785 description: The review that was affected. type: object properties: @@ -189815,12 +190061,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -192133,7 +192379,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_reviewer: title: User type: object @@ -192217,12 +192463,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -194542,7 +194788,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194734,12 +194980,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -197054,7 +197300,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_reviewer: title: User type: object @@ -197139,12 +197385,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -199450,7 +199696,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199631,9 +199877,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -201838,8 +202084,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 - review: *782 + repository: *731 + review: *785 sender: *4 required: - action @@ -201919,9 +202165,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -204021,7 +204267,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 sender: *4 thread: type: object @@ -204408,9 +204654,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -206496,7 +206742,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 sender: *4 thread: type: object @@ -206886,10 +207132,10 @@ x-webhooks: type: string before: type: string - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -209190,7 +209436,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -209272,11 +209518,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *783 - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + assignee: *786 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -211589,7 +211835,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -211668,11 +211914,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *725 - installation: *726 - label: *746 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + label: *749 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -213975,7 +214221,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -214056,10 +214302,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -216354,7 +216600,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -216554,7 +216800,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *725 + enterprise: *728 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -216646,8 +216892,8 @@ x-webhooks: - url - author - committer - installation: *726 - organization: *727 + installation: *729 + organization: *730 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -217237,9 +217483,9 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 registry_package: type: object properties: @@ -217685,7 +217931,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *764 + items: *767 summary: type: string tag_name: @@ -217739,7 +217985,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -217817,9 +218063,9 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 registry_package: type: object properties: @@ -218127,7 +218373,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *767 summary: type: string tag_name: @@ -218176,7 +218422,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -218253,10 +218499,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - release: &784 + enterprise: *728 + installation: *729 + organization: *730 + release: &787 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218574,7 +218820,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *728 + repository: *731 sender: *4 required: - action @@ -218651,11 +218897,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -218772,11 +219018,11 @@ x-webhooks: type: boolean required: - to - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -218854,9 +219100,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -219178,7 +219424,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *728 + repository: *731 sender: *4 required: - action @@ -219254,10 +219500,10 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - release: &785 + enterprise: *728 + installation: *729 + organization: *730 + release: &788 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -219576,7 +219822,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *728 + repository: *731 sender: *4 required: - action @@ -219652,11 +219898,11 @@ x-webhooks: type: string enum: - released - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -219732,11 +219978,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *725 - installation: *726 - organization: *727 - release: *785 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *788 + repository: *731 sender: *4 required: - action @@ -219812,11 +220058,11 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_advisory: *646 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_advisory: *649 sender: *4 required: - action @@ -219892,11 +220138,11 @@ x-webhooks: type: string enum: - reported - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_advisory: *646 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_advisory: *649 sender: *4 required: - action @@ -219972,10 +220218,10 @@ x-webhooks: type: string enum: - archived - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220052,10 +220298,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220133,10 +220379,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220220,10 +220466,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220335,10 +220581,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220410,10 +220656,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 status: type: string @@ -220494,10 +220740,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220574,10 +220820,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220671,10 +220917,10 @@ x-webhooks: - name required: - repository - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220754,11 +221000,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 sender: *4 required: - action @@ -220836,11 +221082,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 sender: *4 required: - action @@ -220918,11 +221164,11 @@ x-webhooks: type: string enum: - edited - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 changes: type: object properties: @@ -220941,16 +221187,16 @@ x-webhooks: properties: added: type: array - items: *288 + items: *291 deleted: type: array - items: *288 + items: *291 updated: type: array items: type: object properties: - condition: *288 + condition: *291 changes: type: object properties: @@ -220983,16 +221229,16 @@ x-webhooks: properties: added: type: array - items: *602 + items: *605 deleted: type: array - items: *602 + items: *605 updated: type: array items: type: object properties: - rule: *602 + rule: *605 changes: type: object properties: @@ -221226,10 +221472,10 @@ x-webhooks: - from required: - owner - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221307,10 +221553,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221388,7 +221634,7 @@ x-webhooks: type: string enum: - create - alert: &786 + alert: &789 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -221510,10 +221756,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221719,10 +221965,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221800,11 +222046,11 @@ x-webhooks: type: string enum: - reopen - alert: *786 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222003,10 +222249,10 @@ x-webhooks: enum: - fixed - open - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222084,11 +222330,11 @@ x-webhooks: type: string enum: - assigned - alert: &787 + alert: &790 type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -222096,8 +222342,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri @@ -222203,10 +222449,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222284,11 +222530,11 @@ x-webhooks: type: string enum: - created - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222369,11 +222615,11 @@ x-webhooks: type: string enum: - created - alert: *787 - installation: *726 - location: *788 - organization: *727 - repository: *728 + alert: *790 + installation: *729 + location: *791 + organization: *730 + repository: *731 sender: *4 required: - location @@ -222611,11 +222857,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222693,11 +222939,11 @@ x-webhooks: type: string enum: - reopened - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222775,11 +223021,11 @@ x-webhooks: type: string enum: - resolved - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222857,12 +223103,12 @@ x-webhooks: type: string enum: - unassigned - alert: *787 + alert: *790 assignee: *4 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222940,11 +223186,11 @@ x-webhooks: type: string enum: - validated - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -223070,10 +223316,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *728 - enterprise: *725 - installation: *726 - organization: *727 + repository: *731 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -223151,11 +223397,11 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - security_advisory: &789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + security_advisory: &792 description: The details of the security advisory, including summary, description, and severity. type: object @@ -223171,7 +223417,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *55 + cvss_severities: *57 cwes: type: array items: @@ -223338,11 +223584,11 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - security_advisory: *789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + security_advisory: *792 sender: *4 required: - action @@ -223415,10 +223661,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -223435,7 +223681,7 @@ x-webhooks: required: - vector_string - score - cvss_severities: *55 + cvss_severities: *57 cwes: type: array items: @@ -223602,11 +223848,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *287 - enterprise: *725 - installation: *726 - organization: *727 - repository: *335 + security_and_analysis: *290 + enterprise: *728 + installation: *729 + organization: *730 + repository: *338 sender: *4 required: - changes @@ -223684,12 +223930,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: &790 + sponsorship: &793 type: object properties: created_at: @@ -223990,12 +224236,12 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -224083,12 +224329,12 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -224165,17 +224411,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &791 + effective_date: &794 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -224249,7 +224495,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &792 + changes: &795 type: object properties: tier: @@ -224293,13 +224539,13 @@ x-webhooks: - from required: - tier - effective_date: *791 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + effective_date: *794 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -224376,13 +224622,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *792 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + changes: *795 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -224456,10 +224702,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224542,10 +224788,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224965,15 +225211,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *725 + enterprise: *728 id: description: The unique identifier of the status. type: integer - installation: *726 + installation: *729 name: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 sha: description: The Commit SHA. @@ -225082,15 +225328,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - parent_issue_repo: *71 + parent_issue: *79 + parent_issue_repo: *73 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - installation: *726 - organization: *727 - repository: *728 + sub_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -225174,15 +225420,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - parent_issue_repo: *71 + parent_issue: *79 + parent_issue_repo: *73 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - installation: *726 - organization: *727 - repository: *728 + sub_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -225266,15 +225512,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - sub_issue_repo: *71 + sub_issue: *79 + sub_issue_repo: *73 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - installation: *726 - organization: *727 - repository: *728 + parent_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -225358,15 +225604,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - sub_issue_repo: *71 + sub_issue: *79 + sub_issue_repo: *73 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - installation: *726 - organization: *727 - repository: *728 + parent_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -225443,12 +225689,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - team: &793 + team: &796 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -225671,9 +225917,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -226131,7 +226377,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -226207,9 +226453,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -226667,7 +226913,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -226744,9 +226990,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -227204,7 +227450,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -227348,9 +227594,9 @@ x-webhooks: - from required: - permissions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -227808,7 +228054,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - changes @@ -227886,9 +228132,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -228346,7 +228592,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -228422,10 +228668,10 @@ x-webhooks: type: string enum: - started - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -228498,16 +228744,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *725 + enterprise: *728 inputs: type: object nullable: true additionalProperties: true - installation: *726 - organization: *727 + installation: *729 + organization: *730 ref: type: string - repository: *728 + repository: *731 sender: *4 workflow: type: string @@ -228589,10 +228835,10 @@ x-webhooks: type: string enum: - completed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: allOf: @@ -228829,7 +229075,7 @@ x-webhooks: type: string required: - conclusion - deployment: *493 + deployment: *496 required: - action - repository @@ -228908,10 +229154,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: allOf: @@ -229171,7 +229417,7 @@ x-webhooks: required: - status - steps - deployment: *493 + deployment: *496 required: - action - repository @@ -229250,10 +229496,10 @@ x-webhooks: type: string enum: - queued - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: type: object @@ -229388,7 +229634,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *493 + deployment: *496 required: - action - repository @@ -229467,10 +229713,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: type: object @@ -229606,7 +229852,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *493 + deployment: *496 required: - action - repository @@ -229686,12 +229932,12 @@ x-webhooks: type: string enum: - completed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object @@ -230690,12 +230936,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object @@ -231679,12 +231925,12 @@ x-webhooks: type: string enum: - requested - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 90e86ca98..52f06435c 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -17111,6 +17111,345 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -73294,6 +73633,340 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/orgs/{org}/actions/oidc/customization/sub": { "get": { "summary": "Get the customization template for an OIDC subject claim for an organization", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 07266e45a..93038a9de 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -428,7 +428,7 @@ paths: The EPSS percentile represents the relative rank of the CVE's likelihood of being exploited compared to other CVEs. schema: type: string - - &45 + - &47 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For @@ -437,7 +437,7 @@ paths: required: false schema: type: string - - &46 + - &48 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For @@ -446,7 +446,7 @@ paths: required: false schema: type: string - - &53 + - &55 name: direction description: The direction to sort the results by. in: query @@ -649,7 +649,7 @@ paths: - vulnerable_version_range - first_patched_version - vulnerable_functions - cvss_severities: &55 + cvss_severities: &57 type: object nullable: true properties: @@ -689,7 +689,7 @@ paths: required: - vector_string - score - epss: &56 + epss: &58 type: object nullable: true readOnly: true @@ -827,7 +827,7 @@ paths: - subscriptions_url - type - url - type: &320 + type: &323 type: string description: The type of credit the user is receiving. enum: @@ -959,7 +959,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &123 + schema: &125 title: Validation Error Simple description: Validation Error Simple type: object @@ -992,7 +992,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &648 + - &651 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1110,7 +1110,7 @@ paths: GitHub. type: object nullable: true - properties: &72 + properties: &74 id: description: Unique identifier of the GitHub app example: 37 @@ -1243,7 +1243,7 @@ paths: about itself. example: 5 type: integer - required: &73 + required: &75 - id - node_id - owner @@ -1548,7 +1548,7 @@ paths: schema: type: integer default: 30 - - &207 + - &210 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1564,7 +1564,7 @@ paths: application/json: schema: type: array - items: &208 + items: &211 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1644,7 +1644,7 @@ paths: - installation_id - repository_id examples: - default: &209 + default: &212 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1703,7 +1703,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &122 + schema: &124 title: Validation Error description: Validation Error type: object @@ -1772,7 +1772,7 @@ paths: description: Response content: application/json: - schema: &210 + schema: &213 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1886,7 +1886,7 @@ paths: - request - response examples: - default: &211 + default: &214 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2087,7 +2087,7 @@ paths: parameters: - *17 - *19 - - &84 + - &86 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2662,7 +2662,7 @@ paths: suspended_at: suspended_by: headers: - Link: &59 + Link: &61 example: ; rel="next", ; rel="last" schema: @@ -2851,11 +2851,11 @@ paths: - selected repositories: type: array - items: &71 + items: &73 title: Repository description: A repository on GitHub. type: object - properties: &285 + properties: &288 id: description: Unique identifier of the repository example: 42 @@ -2875,7 +2875,7 @@ paths: title: License Simple description: License Simple type: object - properties: &80 + properties: &82 key: type: string example: mit @@ -2897,7 +2897,7 @@ paths: html_url: type: string format: uri - required: &81 + required: &83 - key - name - url @@ -3296,7 +3296,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &286 + required: &289 - archive_url - assignees_url - blobs_url @@ -5082,7 +5082,7 @@ paths: responses: '202': *39 '422': *7 - '500': &113 + '500': &115 description: Internal Error content: application/json: @@ -7155,6 +7155,147 @@ paths: enabledForGitHubApps: true category: actions subcategory: cache + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an enterprise + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise + parameters: + - *40 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: &45 + title: Actions OIDC Custom Property Inclusion + description: An OIDC custom property inclusion for repository properties + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property that is included + in the OIDC token + inclusion_source: + type: string + description: Whether the inclusion was defined at the organization + or enterprise level + enum: + - organization + - enterprise + example: organization + required: + - custom_property_name + - inclusion_source + examples: + default: + value: + - custom_property_name: environment + inclusion_source: enterprise + - custom_property_name: team + inclusion_source: enterprise + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an enterprise + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *40 + requestBody: + required: true + content: + application/json: + schema: &137 + title: Actions OIDC Custom Property Inclusion Input + description: Input for creating an OIDC custom property inclusion + type: object + properties: + custom_property_name: + type: string + description: The name of the custom property to include in the OIDC + token + required: + - custom_property_name + examples: + default: &46 + value: + custom_property_name: environment + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *45 + examples: + default: *46 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an enterprise + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise. + + OAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-enterprise + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise + parameters: + - *40 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + githubCloudOnly: false + category: actions + subcategory: oidc "/enterprises/{enterprise}/code-security/configurations": get: summary: Get code security configurations for an enterprise @@ -7180,8 +7321,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -7189,7 +7330,7 @@ paths: application/json: schema: type: array - items: &47 + items: &49 type: object description: A code security configuration properties: @@ -7579,7 +7720,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: &51 + code_scanning_options: &53 type: object description: Security Configuration feature options for code scanning nullable: true @@ -7596,7 +7737,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: &50 + code_scanning_default_setup_options: &52 type: object description: Feature options for code scanning default setup nullable: true @@ -7721,9 +7862,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *47 + schema: *49 examples: - default: &48 + default: &50 value: id: 1325 target_type: enterprise @@ -7781,7 +7922,7 @@ paths: description: Response content: application/json: - schema: &182 + schema: &185 type: array description: A list of default code security configurations items: @@ -7795,9 +7936,9 @@ paths: description: The visibility of newly created repositories for which the code security configuration will be applied to by default - configuration: *47 + configuration: *49 examples: - default: &183 + default: &186 value: - default_for_new_repos: public configuration: @@ -7886,7 +8027,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#retrieve-a-code-security-configuration-of-an-enterprise parameters: - *40 - - &49 + - &51 name: configuration_id description: The unique identifier of the code security configuration. in: path @@ -7898,9 +8039,9 @@ paths: description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *48 + default: *50 '304': *37 '403': *29 '404': *6 @@ -7925,7 +8066,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#update-a-custom-code-security-configuration-for-an-enterprise parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8004,8 +8145,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *50 - code_scanning_options: *51 + code_scanning_default_setup_options: *52 + code_scanning_options: *53 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -8101,13 +8242,13 @@ paths: description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *48 + default: *50 '304': *37 '403': *29 '404': *6 - '409': &52 + '409': &54 description: Conflict content: application/json: @@ -8135,14 +8276,14 @@ paths: url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration-for-an-enterprise parameters: - *40 - - *49 + - *51 responses: - '204': &184 + '204': &187 description: A header with no content is returned. '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -8167,7 +8308,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#attach-an-enterprise-configuration-to-repositories parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8194,7 +8335,7 @@ paths: '202': *39 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -8219,7 +8360,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-enterprise parameters: - *40 - - *49 + - *51 requestBody: required: true content: @@ -8259,12 +8400,12 @@ paths: - none - private_and_internal - public - configuration: *47 + configuration: *49 examples: default: value: default_for_new_repos: all - configuration: &181 + configuration: &184 value: id: 1325 target_type: organization @@ -8321,7 +8462,7 @@ paths: url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-an-enterprise-code-security-configuration parameters: - *40 - - *49 + - *51 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -8330,8 +8471,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -8349,7 +8490,7 @@ paths: application/json: schema: type: array - items: &185 + items: &188 type: object description: Repositories associated with a code security configuration and attachment status @@ -8367,11 +8508,11 @@ paths: - failed - updating - removed_by_enterprise - repository: &58 + repository: &60 title: Simple Repository description: A GitHub repository. type: object - properties: &111 + properties: &113 id: type: integer format: int64 @@ -8598,7 +8739,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &112 + required: &114 - archive_url - assignees_url - blobs_url @@ -8650,7 +8791,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &186 + repository: &189 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8744,7 +8885,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *40 - - &191 + - &194 name: state in: query description: |- @@ -8753,7 +8894,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &192 + - &195 name: severity in: query description: |- @@ -8762,7 +8903,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &193 + - &196 name: ecosystem in: query description: |- @@ -8771,14 +8912,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &194 + - &197 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &195 + - &198 name: epss_percentage in: query description: |- @@ -8790,7 +8931,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &483 + - &486 name: has in: query description: |- @@ -8804,7 +8945,7 @@ paths: type: string enum: - patch - - &196 + - &199 name: assignee in: query description: |- @@ -8813,7 +8954,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &197 + - &200 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8823,7 +8964,7 @@ paths: enum: - development - runtime - - &198 + - &201 name: sort in: query description: |- @@ -8838,9 +8979,9 @@ paths: - updated - epss_percentage default: created - - *53 - - *45 - - *46 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -8849,11 +8990,11 @@ paths: application/json: schema: type: array - items: &199 + items: &202 type: object description: A Dependabot alert. properties: - number: &171 + number: &174 type: integer description: The security alert number. readOnly: true @@ -8871,7 +9012,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: &54 + package: &56 type: object description: Details for the vulnerable package. readOnly: true @@ -8915,7 +9056,7 @@ paths: - unknown - direct - transitive - security_advisory: &484 + security_advisory: &487 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -8945,13 +9086,13 @@ paths: description: Vulnerable version range information for the advisory. readOnly: true - items: &57 + items: &59 type: object description: Details pertaining to one vulnerable version range for the advisory. readOnly: true properties: - package: *54 + package: *56 severity: type: string description: The severity of the vulnerability. @@ -8996,8 +9137,8 @@ paths: - medium - high - critical - cvss_severities: *55 - epss: *56 + cvss_severities: *57 + epss: *58 cwes: type: array description: Details for the advisory pertaining to Common @@ -9095,30 +9236,30 @@ paths: - updated_at - withdrawn_at additionalProperties: false - security_vulnerability: *57 - url: &174 + security_vulnerability: *59 + url: &177 type: string description: The REST API URL of the alert resource. format: uri readOnly: true - html_url: &175 + html_url: &178 type: string description: The GitHub URL of the alert resource. format: uri readOnly: true - created_at: &172 + created_at: &175 type: string description: 'The time that the alert was created in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - updated_at: &173 + updated_at: &176 type: string description: 'The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_at: &177 + dismissed_at: &180 type: string description: 'The time that the alert was dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -9148,21 +9289,21 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: &176 + fixed_at: &179 type: string description: 'The time that the alert was no longer detected and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - auto_dismissed_at: &485 + auto_dismissed_at: &488 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &486 + dismissal_request: &489 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -9205,7 +9346,7 @@ paths: description: The users assigned to this alert. readOnly: true items: *4 - repository: *58 + repository: *60 required: - number - state @@ -9224,7 +9365,7 @@ paths: - repository additionalProperties: false examples: - default: &200 + default: &203 value: - number: 2 state: dismissed @@ -9593,7 +9734,7 @@ paths: application/json: schema: type: array - items: &60 + items: &62 title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -9664,7 +9805,7 @@ paths: created_at: '2019-01-26T19:01:12Z' updated_at: '2019-01-26T19:14:43Z' headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -9737,9 +9878,9 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: &68 + default: &70 value: id: 1 name: Justice League @@ -9768,7 +9909,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#list-members-in-an-enterprise-team parameters: - *40 - - &61 + - &63 name: enterprise-team description: The slug version of the enterprise team name. You can also substitute this value with the enterprise team id. @@ -9787,7 +9928,7 @@ paths: type: array items: *4 examples: - default: &62 + default: &64 value: - login: octocat id: 1 @@ -9808,7 +9949,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9826,7 +9967,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-add-team-members parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -9857,7 +9998,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9875,7 +10016,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#bulk-remove-team-members parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -9906,7 +10047,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -9924,8 +10065,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#get-enterprise-team-membership parameters: - *40 - - *61 - - &63 + - *63 + - &65 name: username description: The handle for the GitHub user account. in: path @@ -9939,7 +10080,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: &64 + exampleKey1: &66 value: login: octocat id: 1 @@ -9975,8 +10116,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#add-team-member parameters: - *40 - - *61 - *63 + - *65 responses: '201': description: Successfully added team member @@ -9984,7 +10125,7 @@ paths: application/json: schema: *4 examples: - exampleKey1: *64 + exampleKey1: *66 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10002,8 +10143,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-members#remove-team-membership parameters: - *40 - - *61 - *63 + - *65 responses: '204': description: Response @@ -10025,7 +10166,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignments parameters: - *40 - - *61 + - *63 - *17 - *19 responses: @@ -10035,11 +10176,11 @@ paths: application/json: schema: type: array - items: &65 + items: &67 title: Organization Simple description: A GitHub organization. type: object - properties: &188 + properties: &191 login: type: string example: github @@ -10080,7 +10221,7 @@ paths: type: string example: A great organization nullable: true - required: &189 + required: &192 - login - url - id @@ -10094,7 +10235,7 @@ paths: - avatar_url - description examples: - default: &66 + default: &68 value: login: github id: 1 @@ -10125,7 +10266,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-organization-assignments parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10153,9 +10294,9 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: &108 + default: &110 value: - login: github id: 1 @@ -10186,7 +10327,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#remove-organization-assignments parameters: - *40 - - *61 + - *63 requestBody: required: true content: @@ -10227,8 +10368,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#get-organization-assignment parameters: - *40 - - *61 - - &67 + - *63 + - &69 name: org description: The organization name. The name is not case sensitive. in: path @@ -10240,9 +10381,9 @@ paths: description: The team is assigned to the organization content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 '404': description: The team is not assigned to the organization x-github: @@ -10261,16 +10402,16 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#add-an-organization-assignment parameters: - *40 - - *61 - - *67 + - *63 + - *69 responses: '201': description: Successfully assigned the enterprise team to the organization. content: application/json: - schema: *65 + schema: *67 examples: - default: *66 + default: *68 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -10287,8 +10428,8 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-team-organizations#delete-an-organization-assignment parameters: - *40 - - *61 - - *67 + - *63 + - *69 responses: '204': description: Successfully unassigned the enterprise team from the organization. @@ -10312,7 +10453,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#get-an-enterprise-team parameters: - *40 - - &69 + - &71 name: team_slug description: The slug of the team name. in: path @@ -10324,11 +10465,11 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *68 + default: *70 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -10346,7 +10487,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#update-an-enterprise-team parameters: - *40 - - *69 + - *71 requestBody: required: true content: @@ -10401,11 +10542,11 @@ paths: description: Response content: application/json: - schema: *60 + schema: *62 examples: - default: *68 + default: *70 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -10426,7 +10567,7 @@ paths: url: https://docs.github.com/rest/enterprise-teams/enterprise-teams#delete-an-enterprise-team parameters: - *40 - - *69 + - *71 responses: '204': description: Response @@ -10464,7 +10605,7 @@ paths: application/json: schema: type: array - items: &103 + items: &105 title: Event description: Event type: object @@ -10474,7 +10615,7 @@ paths: type: type: string nullable: true - actor: &70 + actor: &72 title: Actor description: Actor type: object @@ -10514,7 +10655,7 @@ paths: - id - name - url - org: *70 + org: *72 payload: oneOf: - title: CreateEvent @@ -10560,7 +10701,7 @@ paths: properties: action: type: string - discussion: &743 + discussion: &746 title: Discussion description: A Discussion in a repository. type: object @@ -10847,7 +10988,7 @@ paths: - id labels: type: array - items: &76 + items: &78 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -10922,12 +11063,12 @@ paths: properties: action: type: string - issue: &77 + issue: &79 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &537 + properties: &540 id: type: integer format: int64 @@ -11033,7 +11174,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &269 + properties: &272 url: type: string format: uri @@ -11103,7 +11244,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &270 + required: &273 - closed_issues - creator - description @@ -11182,7 +11323,7 @@ paths: timeline_url: type: string format: uri - type: &232 + type: &235 title: Issue Type description: The type of issue. type: object @@ -11232,7 +11373,7 @@ paths: - node_id - name - description - repository: *71 + repository: *73 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -11243,9 +11384,9 @@ paths: actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - author_association: &74 + properties: *74 + required: *75 + author_association: &76 title: author_association type: string example: OWNER @@ -11260,7 +11401,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &75 + reactions: &77 title: Reaction Rollup type: object properties: @@ -11296,7 +11437,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &660 + sub_issues_summary: &663 title: Sub-issues Summary type: object properties: @@ -11321,7 +11462,7 @@ paths: description: Comments provide a way for people to collaborate on an issue. type: object - properties: &78 + properties: &80 id: description: Unique identifier of the issue comment example: 42 @@ -11364,7 +11505,7 @@ paths: issue_url: type: string format: uri - author_association: *74 + author_association: *76 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend @@ -11375,15 +11516,15 @@ paths: class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - reactions: *75 + properties: *74 + required: *75 + reactions: *77 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &559 + properties: &562 pinned_at: type: string format: date-time @@ -11395,11 +11536,11 @@ paths: properties: *20 required: *21 nullable: true - required: &560 + required: &563 - pinned_at - pinned_by nullable: true - required: &79 + required: &81 - id - node_id - html_url @@ -11409,7 +11550,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &661 + issue_dependencies_summary: &664 title: Issue Dependencies Summary type: object properties: @@ -11428,7 +11569,7 @@ paths: - total_blocking issue_field_values: type: array - items: &544 + items: &547 title: Issue Field Value description: A value assigned to an issue field type: object @@ -11489,7 +11630,7 @@ paths: - node_id - data_type - value - required: &538 + required: &541 - closed_at - comments - comments_url @@ -11513,10 +11654,10 @@ paths: assignees: type: array items: *4 - label: *76 + label: *78 labels: type: array - items: *76 + items: *78 required: - action - issue @@ -11525,14 +11666,14 @@ paths: properties: action: type: string - issue: *77 - comment: &533 + issue: *79 + comment: &536 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 required: - action - issue @@ -11707,8 +11848,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true allow_forking: type: boolean @@ -11797,7 +11938,7 @@ paths: type: string number: type: integer - pull_request: &82 + pull_request: &84 title: Pull Request Minimal type: object properties: @@ -11868,10 +12009,10 @@ paths: assignees: type: array items: *4 - label: *76 + label: *78 labels: type: array - items: *76 + items: *78 required: - action - number @@ -11881,7 +12022,7 @@ paths: properties: action: type: string - pull_request: *82 + pull_request: *84 comment: type: object properties: @@ -12132,7 +12273,7 @@ paths: - pull_request updated_at: type: string - pull_request: *82 + pull_request: *84 required: - action - review @@ -12181,7 +12322,7 @@ paths: updated_at: type: string format: date-time - reactions: *75 + reactions: *77 required: - action - comment @@ -12192,7 +12333,7 @@ paths: type: string release: allOf: - - &593 + - &596 title: Release description: A release. type: object @@ -12263,7 +12404,7 @@ paths: author: *4 assets: type: array - items: &594 + items: &597 title: Release Asset description: Data related to a release. type: object @@ -12338,7 +12479,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *75 + reactions: *77 required: - assets_url - upload_url @@ -12430,7 +12571,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': &114 + '503': &116 description: Service unavailable content: application/json: @@ -12523,7 +12664,7 @@ paths: _links: type: object properties: - timeline: &83 + timeline: &85 title: Link With Type description: Hypermedia Link with Type type: object @@ -12535,17 +12676,17 @@ paths: required: - href - type - user: *83 - security_advisories: *83 - current_user: *83 - current_user_public: *83 - current_user_actor: *83 - current_user_organization: *83 + user: *85 + security_advisories: *85 + current_user: *85 + current_user_public: *85 + current_user_actor: *85 + current_user_organization: *85 current_user_organizations: type: array - items: *83 - repository_discussions: *83 - repository_discussions_category: *83 + items: *85 + repository_discussions: *85 + repository_discussions_category: *85 required: - timeline - user @@ -12607,7 +12748,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *84 + - *86 - *17 - *19 responses: @@ -12617,7 +12758,7 @@ paths: application/json: schema: type: array - items: &85 + items: &87 title: Base Gist description: Base Gist type: object @@ -12702,7 +12843,7 @@ paths: - created_at - updated_at examples: - default: &86 + default: &88 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -12747,7 +12888,7 @@ paths: site_admin: false truncated: false headers: - Link: *59 + Link: *61 '304': *37 '403': *29 x-github: @@ -12823,7 +12964,7 @@ paths: description: Response content: application/json: - schema: &87 + schema: &89 title: Gist Simple description: Gist Simple type: object @@ -12991,7 +13132,7 @@ paths: truncated: type: boolean examples: - default: &88 + default: &90 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -13095,7 +13236,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-public-gists parameters: - - *84 + - *86 - *17 - *19 responses: @@ -13105,11 +13246,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '403': *29 @@ -13129,7 +13270,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-starred-gists parameters: - - *84 + - *86 - *17 - *19 responses: @@ -13139,11 +13280,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '401': *25 '304': *37 '403': *29 @@ -13169,7 +13310,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist parameters: - - &89 + - &91 name: gist_id description: The unique identifier of the gist. in: path @@ -13181,10 +13322,10 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - default: *88 - '403': &92 + default: *90 + '403': &94 description: Forbidden Gist content: application/json: @@ -13232,7 +13373,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#update-a-gist parameters: - - *89 + - *91 requestBody: required: true content: @@ -13292,9 +13433,9 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - updateGist: *88 + updateGist: *90 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -13452,7 +13593,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#delete-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -13481,7 +13622,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#list-gist-comments parameters: - - *89 + - *91 - *17 - *19 responses: @@ -13491,7 +13632,7 @@ paths: application/json: schema: type: array - items: &90 + items: &92 title: Gist Comment description: A comment made to a gist. type: object @@ -13526,7 +13667,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *74 + author_association: *76 required: - url - id @@ -13566,7 +13707,7 @@ paths: updated_at: '2011-04-18T23:23:56Z' author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -13591,7 +13732,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#create-a-gist-comment parameters: - - *89 + - *91 requestBody: required: true content: @@ -13616,9 +13757,9 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: &91 + default: &93 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -13676,8 +13817,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#get-a-gist-comment parameters: - - *89 - - &93 + - *91 + - &95 name: comment_id description: The unique identifier of the comment. in: path @@ -13690,12 +13831,12 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '304': *37 '404': *6 - '403': *92 + '403': *94 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -13717,8 +13858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#update-a-gist-comment parameters: - - *89 - - *93 + - *91 + - *95 requestBody: required: true content: @@ -13743,9 +13884,9 @@ paths: description: Response content: application/json: - schema: *90 + schema: *92 examples: - default: *91 + default: *93 '404': *6 x-github: githubCloudOnly: false @@ -13762,8 +13903,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/comments#delete-a-gist-comment parameters: - - *89 - - *93 + - *91 + - *95 responses: '204': description: Response @@ -13786,7 +13927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-commits parameters: - - *89 + - *91 - *17 - *19 responses: @@ -13887,7 +14028,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gist-forks parameters: - - *89 + - *91 - *17 - *19 responses: @@ -13897,7 +14038,7 @@ paths: application/json: schema: type: array - items: *87 + items: *89 examples: default: value: @@ -13943,7 +14084,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 '304': *37 '403': *29 @@ -13962,13 +14103,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#fork-a-gist parameters: - - *89 + - *91 responses: '201': description: Response content: application/json: - schema: *85 + schema: *87 examples: default: value: @@ -14039,7 +14180,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#check-if-a-gist-is-starred parameters: - - *89 + - *91 responses: '204': description: Response if gist is starred @@ -14069,7 +14210,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#star-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14091,7 +14232,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#unstar-a-gist parameters: - - *89 + - *91 responses: '204': description: Response @@ -14120,7 +14261,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#get-a-gist-revision parameters: - - *89 + - *91 - name: sha in: path required: true @@ -14131,9 +14272,9 @@ paths: description: Response content: application/json: - schema: *87 + schema: *89 examples: - default: *88 + default: *90 '422': *15 '404': *6 '403': *29 @@ -14294,7 +14435,7 @@ paths: type: array items: allOf: - - *71 + - *73 repository_selection: type: string example: selected @@ -14417,7 +14558,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '403': *29 '304': *37 '401': *25 @@ -14501,7 +14642,7 @@ paths: - closed - all default: open - - &235 + - &238 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -14519,8 +14660,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - name: collab in: query required: false @@ -14550,9 +14691,9 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: &236 + default: &239 value: - id: 1 node_id: MDU6SXNzdWUx @@ -14797,7 +14938,7 @@ paths: watchers: 1 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '404': *6 @@ -14836,8 +14977,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 examples: default: value: @@ -15122,7 +15263,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &94 + X-CommonMarker-Version: &96 example: 0.17.4 schema: type: string @@ -15177,7 +15318,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *94 + X-CommonMarker-Version: *96 content: text/html: schema: @@ -15206,7 +15347,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &97 + - &99 name: account_id description: account_id parameter in: path @@ -15218,7 +15359,7 @@ paths: description: Response content: application/json: - schema: &96 + schema: &98 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -15248,7 +15389,7 @@ paths: nullable: true id: type: integer - plan: &95 + plan: &97 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -15337,7 +15478,7 @@ paths: nullable: true updated_at: type: string - plan: *95 + plan: *97 required: - url - id @@ -15345,7 +15486,7 @@ paths: - login - marketplace_purchase examples: - default: &98 + default: &100 value: url: https://api.github.com/orgs/github type: Organization @@ -15430,9 +15571,9 @@ paths: application/json: schema: type: array - items: *95 + items: *97 examples: - default: &99 + default: &101 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -15450,7 +15591,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '404': *6 '401': *25 x-github: @@ -15472,14 +15613,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &100 + - &102 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &101 + - &103 name: sort description: The property to sort the results by. in: query @@ -15509,9 +15650,9 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: - default: &102 + default: &104 value: - url: https://api.github.com/orgs/github type: Organization @@ -15562,7 +15703,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '404': *6 '422': *15 '401': *25 @@ -15585,15 +15726,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *97 + - *99 responses: '200': description: Response content: application/json: - schema: *96 + schema: *98 examples: - default: *98 + default: *100 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -15625,11 +15766,11 @@ paths: application/json: schema: type: array - items: *95 + items: *97 examples: - default: *99 + default: *101 headers: - Link: *59 + Link: *61 '401': *25 x-github: githubCloudOnly: false @@ -15650,8 +15791,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *100 - - *101 + - *102 + - *103 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -15671,11 +15812,11 @@ paths: application/json: schema: type: array - items: *96 + items: *98 examples: - default: *102 + default: *104 headers: - Link: *59 + Link: *61 '401': *25 x-github: githubCloudOnly: false @@ -15937,14 +16078,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &332 + - &335 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &333 + - &336 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -15961,7 +16102,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -16006,7 +16147,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &336 + '301': &339 description: Moved permanently content: application/json: @@ -16028,7 +16169,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &569 + - &572 name: all description: If `true`, show notifications marked as read. in: query @@ -16036,7 +16177,7 @@ paths: schema: type: boolean default: false - - &570 + - &573 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -16045,8 +16186,8 @@ paths: schema: type: boolean default: false - - *84 - - &571 + - *86 + - &574 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -16071,18 +16212,18 @@ paths: application/json: schema: type: array - items: &104 + items: &106 title: Thread description: Thread type: object properties: id: type: string - repository: &153 + repository: &156 title: Minimal Repository description: Minimal Repository type: object - properties: &202 + properties: &205 id: type: integer format: int64 @@ -16368,7 +16509,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &287 + security_and_analysis: &290 nullable: true type: object properties: @@ -16481,7 +16622,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &203 + required: &206 - archive_url - assignees_url - blobs_url @@ -16569,7 +16710,7 @@ paths: - url - subscription_url examples: - default: &572 + default: &575 value: - id: '1' repository: @@ -16651,7 +16792,7 @@ paths: url: https://api.github.com/notifications/threads/1 subscription_url: https://api.github.com/notifications/threads/1/subscription headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -16735,7 +16876,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread parameters: - - &105 + - &107 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -16749,7 +16890,7 @@ paths: description: Response content: application/json: - schema: *104 + schema: *106 examples: default: value: @@ -16851,7 +16992,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-read parameters: - - *105 + - *107 responses: '205': description: Reset Content @@ -16873,7 +17014,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-a-thread-as-done parameters: - - *105 + - *107 responses: '204': description: No content @@ -16896,13 +17037,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *105 + - *107 responses: '200': description: Response content: application/json: - schema: &106 + schema: &108 title: Thread Subscription description: Thread Subscription type: object @@ -16939,7 +17080,7 @@ paths: - url - subscribed examples: - default: &107 + default: &109 value: subscribed: true ignored: false @@ -16970,7 +17111,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#set-a-thread-subscription parameters: - - *105 + - *107 requestBody: required: false content: @@ -16991,9 +17132,9 @@ paths: description: Response content: application/json: - schema: *106 + schema: *108 examples: - default: *107 + default: *109 '304': *37 '403': *29 '401': *25 @@ -17016,7 +17157,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#delete-a-thread-subscription parameters: - - *105 + - *107 responses: '204': description: Response @@ -17111,9 +17252,9 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: Link: example: ; rel="next" @@ -17140,13 +17281,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &109 + schema: &111 title: Actions cache retention limit for an organization description: GitHub Actions cache retention policy for an organization. type: object @@ -17179,12 +17320,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *109 + schema: *111 examples: selected_actions: *42 responses: @@ -17213,13 +17354,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &110 + schema: &112 title: Actions cache storage limit for an organization description: GitHub Actions cache storage policy for an organization. type: object @@ -17252,12 +17393,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *110 + schema: *112 examples: selected_actions: *44 responses: @@ -17286,7 +17427,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#lists-the-repositories-dependabot-can-access-in-an-organization parameters: - - *67 + - *69 - name: page in: query description: The page number of results to fetch. @@ -17330,8 +17471,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *111 - required: *112 + properties: *113 + required: *114 nullable: true additionalProperties: false examples: @@ -17437,7 +17578,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#updates-dependabots-repository-access-list-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -17503,7 +17644,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/repository-access#set-the-default-repository-access-level-for-dependabot parameters: - - *67 + - *69 requestBody: required: true content: @@ -17552,7 +17693,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-all-budgets-for-an-organization parameters: - - *67 + - *69 - name: page description: The page number of the results to fetch. in: query @@ -17703,7 +17844,7 @@ paths: total_count: 3 '404': *6 '403': *29 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -17724,8 +17865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#get-a-budget-by-id-for-an-organization parameters: - - *67 - - &115 + - *69 + - &117 name: budget_id description: The ID corresponding to the budget. in: path @@ -17821,8 +17962,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -17842,8 +17983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#update-a-budget-for-an-organization parameters: - - *67 - - *115 + - *69 + - *117 requestBody: required: true content: @@ -18034,8 +18175,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/budgets#delete-a-budget-for-an-organization parameters: - - *67 - - *115 + - *69 + - *117 responses: '200': description: Response when deleting a budget @@ -18061,8 +18202,8 @@ paths: '400': *14 '404': *6 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18082,8 +18223,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-an-organization parameters: - - *67 - - &116 + - *69 + - &118 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -18092,7 +18233,7 @@ paths: required: false schema: type: integer - - &118 + - &120 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. Default value is the current @@ -18101,7 +18242,7 @@ paths: required: false schema: type: integer - - &117 + - &119 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -18116,14 +18257,14 @@ paths: required: false schema: type: string - - &718 + - &721 name: model description: The model name to query usage for. The name is not case sensitive. in: query required: false schema: type: string - - &119 + - &121 name: product description: The product name to query usage for. The name is not case sensitive. in: query @@ -18239,8 +18380,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18260,9 +18401,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-an-organization parameters: - - *67 - - *116 - - &719 + - *69 + - *118 + - &722 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -18271,7 +18412,7 @@ paths: required: false schema: type: integer - - *117 + - *119 responses: '200': description: Billing usage report response for an organization @@ -18346,8 +18487,8 @@ paths: repositoryName: github/example '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18370,19 +18511,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-an-organization parameters: - - *67 - - *116 + - *69 - *118 - - *117 - - &720 + - *120 + - *119 + - &723 name: repository description: The repository name to query for usage in the format owner/repository. in: query required: false schema: type: string - - *119 - - &721 + - *121 + - &724 name: sku description: The SKU to query for usage. in: query @@ -18492,8 +18633,8 @@ paths: netAmount: 8.0 '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -18519,13 +18660,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &120 + schema: &122 title: Organization Full description: Organization Full type: object @@ -18839,7 +18980,7 @@ paths: - updated_at - archived_at examples: - default-response: &121 + default-response: &123 value: login: github id: 1 @@ -18938,7 +19079,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#update-an-organization parameters: - - *67 + - *69 requestBody: required: false content: @@ -19150,18 +19291,18 @@ paths: description: Response content: application/json: - schema: *120 + schema: *122 examples: - default: *121 + default: *123 '422': description: Validation failed content: application/json: schema: oneOf: - - *122 - - *123 - '409': *52 + - *124 + - *125 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19184,7 +19325,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#delete-an-organization parameters: - - *67 + - *69 responses: '202': *39 '404': *6 @@ -19210,7 +19351,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -19236,7 +19377,7 @@ paths: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19257,7 +19398,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -19275,7 +19416,7 @@ paths: type: integer repository_cache_usages: type: array - items: &343 + items: &346 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -19310,7 +19451,7 @@ paths: active_caches_size_in_bytes: 1022142 active_caches_count: 2 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19330,7 +19471,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -19348,7 +19489,7 @@ paths: type: integer runners: type: array - items: &124 + items: &126 title: GitHub-hosted hosted runner description: A Github-hosted hosted runner. type: object @@ -19402,7 +19543,7 @@ paths: - display_name - source nullable: true - machine_size_details: &132 + machine_size_details: &134 title: Github-owned VM details. description: Provides details of a particular machine spec. type: object @@ -19498,7 +19639,7 @@ paths: - public_ip_enabled - platform examples: - default: &152 + default: &155 value: total_count: 2 runners: @@ -19540,7 +19681,7 @@ paths: public_ips: [] last_active_on: '2023-04-26T15:23:37Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19558,7 +19699,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -19635,9 +19776,9 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: &133 + default: &135 value: id: 5 name: My hosted ubuntu runner @@ -19678,7 +19819,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-custom-images-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -19694,7 +19835,7 @@ paths: type: integer images: type: array - items: &125 + items: &127 title: GitHub-hosted runner custom image details description: Provides details of a custom runner image type: object @@ -19745,7 +19886,7 @@ paths: - latest_version - state examples: - default: &127 + default: &129 value: total_count: 2 image_versions: @@ -19776,8 +19917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-custom-image-definition-for-github-actions-hosted-runners parameters: - - *67 - - &126 + - *69 + - &128 name: image_definition_id description: Image definition ID of custom image in: path @@ -19789,7 +19930,7 @@ paths: description: Response content: application/json: - schema: *125 + schema: *127 examples: default: value: @@ -19819,8 +19960,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-custom-image-from-the-organization parameters: - - *67 - - *126 + - *69 + - *128 responses: '204': description: Response @@ -19843,8 +19984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#list-image-versions-of-a-custom-image-for-an-organization parameters: - - *126 - - *67 + - *128 + - *69 responses: '200': description: Response @@ -19860,7 +20001,7 @@ paths: type: integer image_versions: type: array - items: &128 + items: &130 title: GitHub-hosted runner custom image version details. description: Provides details of a hosted runner custom image version @@ -19893,7 +20034,7 @@ paths: - created_on - state_details examples: - default: *127 + default: *129 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -19913,9 +20054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-an-image-version-of-a-custom-image-for-github-actions-hosted-runners parameters: - - *67 - - *126 - - &129 + - *69 + - *128 + - &131 name: version description: Version of a custom image in: path @@ -19928,7 +20069,7 @@ paths: description: Response content: application/json: - schema: *128 + schema: *130 examples: default: value: @@ -19954,9 +20095,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-an-image-version-of-custom-image-from-the-organization parameters: - - *67 - - *126 - - *129 + - *69 + - *128 + - *131 responses: '204': description: Response @@ -19977,7 +20118,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -19993,7 +20134,7 @@ paths: type: integer images: type: array - items: &130 + items: &132 title: GitHub-hosted runner image details. description: Provides details of a hosted runner image type: object @@ -20029,7 +20170,7 @@ paths: - display_name - source examples: - default: &131 + default: &133 value: id: ubuntu-20.04 platform: linux-x64 @@ -20053,7 +20194,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20069,9 +20210,9 @@ paths: type: integer images: type: array - items: *130 + items: *132 examples: - default: *131 + default: *133 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20088,7 +20229,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20141,7 +20282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20157,7 +20298,7 @@ paths: type: integer machine_specs: type: array - items: *132 + items: *134 examples: default: value: @@ -20182,7 +20323,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20226,8 +20367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization parameters: - - *67 - - &134 + - *69 + - &136 name: hosted_runner_id description: Unique identifier of the GitHub-hosted runner. in: path @@ -20239,11 +20380,11 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20261,8 +20402,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization parameters: - - *67 - - *134 + - *69 + - *136 requestBody: required: true content: @@ -20314,9 +20455,9 @@ paths: description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -20332,21 +20473,126 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization parameters: - - *67 - - *134 + - *69 + - *136 responses: '202': description: Response content: application/json: - schema: *124 + schema: *126 examples: - default: *133 + default: *135 x-github: githubCloudOnly: false enabledForGitHubApps: false category: actions subcategory: hosted-runners + "/orgs/{org}/actions/oidc/customization/properties/repo": + get: + summary: List OIDC custom property inclusions for an organization + description: |- + Lists the repository custom properties that are included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/list-oidc-custom-property-inclusions-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization + parameters: + - *69 + responses: + '200': + description: A JSON array of OIDC custom property inclusions + content: + application/json: + schema: + type: array + items: *45 + examples: + default: + value: + - property_name: environment + - property_name: team + '404': *6 + '403': *29 + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + post: + summary: Create an OIDC custom property inclusion for an organization + description: |- + Adds a repository custom property to be included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/create-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *69 + requestBody: + required: true + content: + application/json: + schema: *137 + examples: + default: *46 + responses: + '201': + description: OIDC custom property inclusion created + content: + application/json: + schema: *45 + examples: + default: *46 + '400': + description: Invalid input + '403': *29 + '422': + description: Property inclusion already exists + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": + delete: + summary: Delete an OIDC custom property inclusion for an organization + description: |- + Removes a repository custom property from being included in the OIDC token for repository actions in an organization. + + OAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint. + tags: + - oidc + operationId: oidc/delete-oidc-custom-property-inclusion-for-org + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization + parameters: + - *69 + - name: custom_property_name + in: path + required: true + schema: + type: string + description: The name of the custom property to remove from OIDC token inclusion + responses: + '204': + description: OIDC custom property inclusion deleted + '400': + description: Invalid input + '403': *29 + '404': + description: Property inclusion not found + x-github: + enabledForGitHubApps: true + category: actions + subcategory: oidc "/orgs/{org}/actions/oidc/customization/sub": get: summary: Get the customization template for an OIDC subject claim for an organization @@ -20361,13 +20607,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *67 + - *69 responses: '200': description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &135 + schema: &138 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -20381,7 +20627,7 @@ paths: required: - include_claim_keys examples: - default: &136 + default: &139 value: include_claim_keys: - repo @@ -20403,20 +20649,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: *135 + schema: *138 examples: - default: *136 + default: *139 responses: '201': description: Empty response content: application/json: - schema: &162 + schema: &165 title: Empty Object description: An object without any properties. type: object @@ -20446,7 +20692,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -20455,7 +20701,7 @@ paths: schema: type: object properties: - enabled_repositories: &137 + enabled_repositories: &140 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -20468,7 +20714,7 @@ paths: description: The API URL to use to get or set the selected repositories that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. - allowed_actions: &138 + allowed_actions: &141 type: string description: The permissions policy that controls the actions and reusable workflows that are allowed to run. @@ -20476,12 +20722,12 @@ paths: - all - local_only - selected - selected_actions_url: &349 + selected_actions_url: &352 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` is set to `selected`. - sha_pinning_required: &139 + sha_pinning_required: &142 type: boolean description: Whether actions must be pinned to a full-length commit SHA. @@ -20512,7 +20758,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -20523,9 +20769,9 @@ paths: schema: type: object properties: - enabled_repositories: *137 - allowed_actions: *138 - sha_pinning_required: *139 + enabled_repositories: *140 + allowed_actions: *141 + sha_pinning_required: *142 required: - enabled_repositories examples: @@ -20553,13 +20799,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &353 + schema: &356 type: object properties: days: @@ -20596,12 +20842,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &354 + schema: &357 type: object properties: days: @@ -20618,7 +20864,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -20638,13 +20884,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &140 + schema: &143 type: object properties: approval_policy: @@ -20658,7 +20904,7 @@ paths: required: - approval_policy examples: - default: &355 + default: &358 value: approval_policy: first_time_contributors '404': *6 @@ -20679,7 +20925,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -20689,7 +20935,7 @@ paths: required: true content: application/json: - schema: *140 + schema: *143 examples: default: summary: Set approval policy to first time contributors @@ -20711,13 +20957,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &356 + schema: &359 type: object required: - run_workflows_from_fork_pull_requests @@ -20743,7 +20989,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: &141 + default: &144 value: run_workflows_from_fork_pull_requests: true send_write_tokens_to_workflows: false @@ -20766,12 +21012,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &357 + schema: &360 type: object required: - run_workflows_from_fork_pull_requests @@ -20794,7 +21040,7 @@ paths: description: Whether workflows triggered by pull requests from forks require approval from a repository administrator to run. examples: - default: *141 + default: *144 responses: '204': description: Empty response for successful settings update @@ -20824,7 +21070,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#list-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -20842,9 +21088,9 @@ paths: type: number repositories: type: array - items: *71 + items: *73 examples: - default: &145 + default: &148 value: total_count: 1 repositories: @@ -20984,7 +21230,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-selected-repositories-enabled-for-github-actions-in-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21028,8 +21274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *67 - - &142 + - *69 + - &145 name: repository_id description: The unique identifier of the repository. in: path @@ -21057,8 +21303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -21081,13 +21327,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &143 + schema: &146 type: object properties: github_owned_allowed: @@ -21109,7 +21355,7 @@ paths: items: type: string examples: - default: &144 + default: &147 value: github_owned_allowed: true verified_allowed: false @@ -21134,7 +21380,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -21142,9 +21388,9 @@ paths: required: false content: application/json: - schema: *143 + schema: *146 examples: - selected_actions: *144 + selected_actions: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21164,7 +21410,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-self-hosted-runners-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -21212,7 +21458,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-self-hosted-runners-settings-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21239,7 +21485,7 @@ paths: description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21259,7 +21505,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#list-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -21274,9 +21520,9 @@ paths: type: integer repositories: type: array - items: *71 + items: *73 examples: - default: *145 + default: *148 '403': *29 '404': *6 x-github: @@ -21296,7 +21542,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21344,14 +21590,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#add-a-repository-to-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21371,14 +21617,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#remove-a-repository-from-the-list-of-repositories-allowed-to-use-self-hosted-runners-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: No content '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 x-github: enabledForGitHubApps: true @@ -21400,23 +21646,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &358 + schema: &361 type: object properties: - default_workflow_permissions: &146 + default_workflow_permissions: &149 type: string description: The default workflow permissions granted to the GITHUB_TOKEN when running workflows. enum: - read - write - can_approve_pull_request_reviews: &147 + can_approve_pull_request_reviews: &150 type: boolean description: Whether GitHub Actions can approve pull requests. Enabling this can be a security risk. @@ -21424,7 +21670,7 @@ paths: - default_workflow_permissions - can_approve_pull_request_reviews examples: - default: &148 + default: &151 summary: Give read-only permission, and allow approving PRs. value: default_workflow_permissions: read @@ -21449,7 +21695,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Success response @@ -21457,13 +21703,13 @@ paths: required: false content: application/json: - schema: &359 + schema: &362 type: object properties: - default_workflow_permissions: *146 - can_approve_pull_request_reviews: *147 + default_workflow_permissions: *149 + can_approve_pull_request_reviews: *150 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -21483,7 +21729,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runner-groups-for-an-organization parameters: - - *67 + - *69 - *17 - *19 - name: visible_to_repository @@ -21508,7 +21754,7 @@ paths: type: number runner_groups: type: array - items: &149 + items: &152 type: object properties: id: @@ -21624,7 +21870,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#create-a-self-hosted-runner-group-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -21696,9 +21942,9 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: &151 + default: &154 value: id: 2 name: octo-runner-group @@ -21733,8 +21979,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#get-a-self-hosted-runner-group-for-an-organization parameters: - - *67 - - &150 + - *69 + - &153 name: runner_group_id description: Unique identifier of the self-hosted runner group. in: path @@ -21746,7 +21992,7 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: default: value: @@ -21782,8 +22028,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -21837,9 +22083,9 @@ paths: description: Response content: application/json: - schema: *149 + schema: *152 examples: - default: *151 + default: *154 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21858,8 +22104,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#delete-a-self-hosted-runner-group-from-an-organization parameters: - - *67 - - *150 + - *69 + - *153 responses: '204': description: Response @@ -21882,8 +22128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *17 - *19 responses: @@ -21901,11 +22147,11 @@ paths: type: number runners: type: array - items: *124 + items: *126 examples: - default: *152 + default: *155 headers: - Link: *59 + Link: *61 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -21925,8 +22171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *19 - *17 responses: @@ -21944,9 +22190,9 @@ paths: type: number repositories: type: array - items: *153 + items: *156 examples: - default: &669 + default: &672 value: total_count: 1 repositories: @@ -22198,8 +22444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-repository-access-for-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22243,9 +22489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 - - *142 + - *69 + - *153 + - *145 responses: '204': description: Response @@ -22267,9 +22513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-repository-access-to-a-self-hosted-runner-group-in-an-organization parameters: - - *67 - - *150 - - *142 + - *69 + - *153 + - *145 responses: '204': description: Response @@ -22292,8 +22538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#list-self-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 - *17 - *19 responses: @@ -22311,7 +22557,7 @@ paths: type: number runners: type: array - items: &155 + items: &158 title: Self hosted runners description: A self hosted runner type: object @@ -22340,7 +22586,7 @@ paths: type: boolean labels: type: array - items: &158 + items: &161 title: Self hosted runner label description: A label for a self hosted runner type: object @@ -22370,7 +22616,7 @@ paths: - busy - labels examples: - default: &156 + default: &159 value: total_count: 2 runners: @@ -22410,7 +22656,7 @@ paths: name: no-gpu type: custom headers: - Link: *59 + Link: *61 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -22429,8 +22675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#set-self-hosted-runners-in-a-group-for-an-organization parameters: - - *67 - - *150 + - *69 + - *153 requestBody: required: true content: @@ -22474,9 +22720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#add-a-self-hosted-runner-to-a-group-for-an-organization parameters: - - *67 - - *150 - - &154 + - *69 + - *153 + - &157 name: runner_id description: Unique identifier of the self-hosted runner. in: path @@ -22504,9 +22750,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runner-groups#remove-a-self-hosted-runner-from-a-group-for-an-organization parameters: - - *67 - - *150 - - *154 + - *69 + - *153 + - *157 responses: '204': description: Response @@ -22536,7 +22782,7 @@ paths: in: query schema: type: string - - *67 + - *69 - *17 - *19 responses: @@ -22554,11 +22800,11 @@ paths: type: integer runners: type: array - items: *155 + items: *158 examples: - default: *156 + default: *159 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22580,7 +22826,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -22588,7 +22834,7 @@ paths: application/json: schema: type: array - items: &360 + items: &363 title: Runner Application description: Runner Application type: object @@ -22613,7 +22859,7 @@ paths: - download_url - filename examples: - default: &361 + default: &364 value: - os: osx architecture: x64 @@ -22656,7 +22902,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -22699,7 +22945,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &362 + '201': &365 description: Response content: application/json: @@ -22709,7 +22955,7 @@ paths: - runner - encoded_jit_config properties: - runner: *155 + runner: *158 encoded_jit_config: type: string description: The base64 encoded runner configuration. @@ -22738,7 +22984,7 @@ paths: encoded_jit_config: abc123 '404': *6 '422': *7 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -22766,13 +23012,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-an-organization parameters: - - *67 + - *69 responses: '201': description: Response content: application/json: - schema: &157 + schema: &160 title: Authentication Token description: Authentication Token type: object @@ -22794,7 +23040,7 @@ paths: repositories: description: The repositories this token has access to type: array - items: *71 + items: *73 single_file: type: string example: config.yaml @@ -22810,7 +23056,7 @@ paths: - token - expires_at examples: - default: &363 + default: &366 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -22841,15 +23087,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-an-organization parameters: - - *67 + - *69 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: &364 + default: &367 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -22874,16 +23120,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: '200': description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: &365 + default: &368 value: id: 23 name: MBP @@ -22924,8 +23170,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: '204': description: Response @@ -22951,10 +23197,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: - '200': &159 + '200': &162 description: Response content: application/json: @@ -22968,7 +23214,7 @@ paths: type: integer labels: type: array - items: *158 + items: *161 examples: default: value: @@ -23007,8 +23253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 requestBody: required: true content: @@ -23032,7 +23278,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23056,8 +23302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 requestBody: required: true content: @@ -23082,7 +23328,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23106,10 +23352,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 + - *69 + - *157 responses: - '200': &366 + '200': &369 description: Response content: application/json: @@ -23123,7 +23369,7 @@ paths: type: integer labels: type: array - items: *158 + items: *161 examples: default: value: @@ -23164,9 +23410,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-an-organization parameters: - - *67 - - *154 - - &367 + - *69 + - *157 + - &370 name: name description: The name of a self-hosted runner's custom label. in: path @@ -23174,7 +23420,7 @@ paths: schema: type: string responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -23199,7 +23445,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -23217,7 +23463,7 @@ paths: type: integer secrets: type: array - items: &160 + items: &163 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -23267,7 +23513,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/secrets/SUPER_SECRET/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23290,13 +23536,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &379 + schema: &382 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -23325,7 +23571,7 @@ paths: - key_id - key examples: - default: &380 + default: &383 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23350,8 +23596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-organization-secret parameters: - - *67 - - &161 + - *69 + - &164 name: secret_name description: The name of the secret. in: path @@ -23363,7 +23609,7 @@ paths: description: Response content: application/json: - schema: *160 + schema: *163 examples: default: value: @@ -23393,8 +23639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -23451,7 +23697,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -23477,8 +23723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -23504,8 +23750,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -23523,9 +23769,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: &165 + default: &168 value: total_count: 1 repositories: @@ -23617,8 +23863,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -23670,8 +23916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -23704,8 +23950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -23737,8 +23983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - - *67 - - &348 + - *69 + - &351 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -23762,7 +24008,7 @@ paths: type: integer variables: type: array - items: &163 + items: &166 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -23826,7 +24072,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/actions/variables/ADMIN_EMAIL/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23847,7 +24093,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-organization-variable parameters: - - *67 + - *69 requestBody: required: true content: @@ -23895,7 +24141,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -23920,8 +24166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-organization-variable parameters: - - *67 - - &164 + - *69 + - &167 name: name description: The name of the variable. in: path @@ -23933,7 +24179,7 @@ paths: description: Response content: application/json: - schema: *163 + schema: *166 examples: default: value: @@ -23963,8 +24209,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 requestBody: required: true content: @@ -24026,8 +24272,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 responses: '204': description: Response @@ -24053,8 +24299,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - *19 - *17 responses: @@ -24072,9 +24318,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 '409': description: Response when the visibility of the variable is not set to `selected` @@ -24100,8 +24346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 requestBody: required: true content: @@ -24150,8 +24396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - name: repository_id in: path required: true @@ -24185,8 +24431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - - *67 - - *164 + - *69 + - *167 - name: repository_id in: path required: true @@ -24227,7 +24473,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-an-artifact-deployment-record parameters: - - *67 + - *69 requestBody: required: true content: @@ -24343,7 +24589,7 @@ paths: type: integer deployment_records: type: array - items: &166 + items: &169 title: Artifact Deployment Record description: Artifact Metadata Deployment Record type: object @@ -24387,7 +24633,7 @@ paths: with the deployment record. nullable: true examples: - default: &167 + default: &170 value: total_count: 1 deployment_records: @@ -24422,7 +24668,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#set-cluster-deployment-records parameters: - - *67 + - *69 - name: cluster in: path description: The cluster name. @@ -24558,9 +24804,9 @@ paths: type: integer deployment_records: type: array - items: *166 + items: *169 examples: - default: *167 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24580,7 +24826,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#create-artifact-metadata-storage-record parameters: - - *67 + - *69 requestBody: required: true content: @@ -24732,7 +24978,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-deployment-records parameters: - - *67 + - *69 - name: subject_digest description: The SHA256 digest of the artifact, in the form `sha256:HEX_DIGEST`. in: path @@ -24757,9 +25003,9 @@ paths: type: integer deployment_records: type: array - items: *166 + items: *169 examples: - default: *167 + default: *170 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -24779,7 +25025,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/artifact-metadata#list-artifact-storage-records parameters: - - *67 + - *69 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -24862,9 +25108,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 requestBody: required: true content: @@ -24888,12 +25134,12 @@ paths: required: - subject_digests examples: - default: &700 + default: &703 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &701 + withPredicateType: &704 value: subject_digests: - sha256:abc123 @@ -24937,7 +25183,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &702 + default: &705 value: attestations_subject_digests: - sha256:abc: @@ -25046,7 +25292,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-in-bulk parameters: - - *67 + - *69 requestBody: required: true content: @@ -25111,7 +25357,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-subject-digest parameters: - - *67 + - *69 - name: subject_digest description: Subject Digest in: path @@ -25144,9 +25390,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestation-repositories parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 - name: predicate_type description: |- Optional filter for fetching attestations with a given predicate type. @@ -25194,7 +25440,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/attestations#delete-attestations-by-id parameters: - - *67 + - *69 - name: attestation_id description: Attestation ID in: path @@ -25230,9 +25476,9 @@ paths: url: https://docs.github.com/rest/orgs/attestations#list-attestations parameters: - *17 - - *45 - - *46 - - *67 + - *47 + - *48 + - *69 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -25270,7 +25516,7 @@ paths: initiator: type: string examples: - default: &393 + default: &396 value: attestations: - bundle: @@ -25377,7 +25623,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#list-users-blocked-by-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -25389,7 +25635,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25408,8 +25654,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: If the user is blocked @@ -25434,8 +25680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#block-a-user-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -25455,8 +25701,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -25481,15 +25727,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#list-campaigns-for-an-organization parameters: - - *67 + - *69 - *19 - *17 - - *53 + - *55 - name: state description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &168 + schema: &171 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -25515,7 +25761,7 @@ paths: application/json: schema: type: array - items: &169 + items: &172 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -25546,7 +25792,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &190 + items: &193 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -25621,7 +25867,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &247 + properties: &250 id: description: Unique identifier of the team type: integer @@ -25693,7 +25939,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &248 + required: &251 - id - node_id - url @@ -25736,7 +25982,7 @@ paths: type: string format: date-time nullable: true - state: *168 + state: *171 contact_link: description: The contact link of the campaign. type: string @@ -25831,9 +26077,9 @@ paths: closed_at: state: open headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25857,7 +26103,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#create-a-campaign-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -25956,9 +26202,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: &170 + default: &173 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -26007,7 +26253,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26029,7 +26275,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#get-a-campaign-for-an-organization parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26041,16 +26287,16 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: *170 + default: *173 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26071,7 +26317,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#update-a-campaign parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26120,7 +26366,7 @@ paths: type: string format: uri nullable: true - state: *168 + state: *171 examples: default: value: @@ -26130,9 +26376,9 @@ paths: description: Response content: application/json: - schema: *169 + schema: *172 examples: - default: *170 + default: *173 '400': description: Bad Request content: @@ -26144,7 +26390,7 @@ paths: content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26165,7 +26411,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/campaigns/campaigns#delete-a-campaign-for-an-organization parameters: - - *67 + - *69 - name: campaign_number description: The campaign number. in: path @@ -26176,7 +26422,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26198,18 +26444,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - - *67 - - &418 + - *69 + - &421 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, but not both. in: query required: false - schema: &178 + schema: &181 type: string description: The name of the tool used to generate the code scanning analysis. - - &419 + - &422 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -26217,22 +26463,22 @@ paths: or `tool_name`, but not both. in: query required: false - schema: &179 + schema: &182 nullable: true type: string description: The GUID of the tool used to generate the code scanning analysis, if provided in the uploaded SARIF data. - - *45 - - *46 + - *47 + - *48 - *19 - *17 - - *53 + - *55 - name: state description: If specified, only code scanning alerts with this state will be returned. in: query required: false - schema: &421 + schema: &424 type: string description: State of a code scanning alert. enum: @@ -26255,7 +26501,7 @@ paths: be returned. in: query required: false - schema: &422 + schema: &425 type: string description: Severity of a code scanning alert. enum: @@ -26284,18 +26530,18 @@ paths: items: type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: &423 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: &426 type: string description: The REST API URL for fetching the list of instances for an alert. format: uri readOnly: true - state: &180 + state: &183 type: string description: State of a code scanning alert. nullable: true @@ -26303,7 +26549,7 @@ paths: - open - dismissed - fixed - fixed_at: *176 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -26311,8 +26557,8 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: &424 + dismissed_at: *180 + dismissed_reason: &427 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -26321,13 +26567,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &425 + dismissed_comment: &428 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &426 + rule: &429 type: object properties: id: @@ -26380,42 +26626,42 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &427 + tool: &430 type: object properties: - name: *178 + name: *181 version: nullable: true type: string description: The version of the tool used to generate the code scanning analysis. - guid: *179 - most_recent_instance: &428 + guid: *182 + most_recent_instance: &431 type: object properties: - ref: &420 + ref: &423 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &438 + analysis_key: &441 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &439 + environment: &442 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &440 + category: &443 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. - state: *180 + state: *183 commit_sha: type: string message: @@ -26423,7 +26669,7 @@ paths: properties: text: type: string - location: &441 + location: &444 type: object description: Describe a region within a file for the alert. properties: @@ -26444,7 +26690,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &442 + items: &445 type: string description: A classification of the file. For example to identify it as generated. @@ -26454,7 +26700,7 @@ paths: - generated - test - library - repository: *58 + repository: *60 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -26709,9 +26955,9 @@ paths: trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha} hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -26733,7 +26979,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-code-security-configurations-for-an-organization parameters: - - *67 + - *69 - name: target_type in: query description: The target type of the code security configuration @@ -26752,8 +26998,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -26761,7 +27007,7 @@ paths: application/json: schema: type: array - items: *47 + items: *49 examples: default: value: @@ -26844,7 +27090,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#create-a-code-security-configuration parameters: - - *67 + - *69 requestBody: required: true content: @@ -26931,7 +27177,7 @@ paths: - disabled - not_set default: disabled - code_scanning_options: *51 + code_scanning_options: *53 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -26940,7 +27186,7 @@ paths: - disabled - not_set default: disabled - code_scanning_default_setup_options: *50 + code_scanning_default_setup_options: *52 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -27079,9 +27325,9 @@ paths: description: Successfully created code security configuration content: application/json: - schema: *47 + schema: *49 examples: - default: *181 + default: *184 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27103,15 +27349,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-default-code-security-configurations parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *182 + schema: *185 examples: - default: *183 + default: *186 '304': *37 '403': *29 '404': *6 @@ -27137,7 +27383,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#detach-configurations-from-repositories parameters: - - *67 + - *69 requestBody: required: true content: @@ -27163,11 +27409,11 @@ paths: - 32 - 91 responses: - '204': *184 + '204': *187 '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27189,16 +27435,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 responses: '200': description: Response content: application/json: - schema: *47 + schema: *49 examples: - default: *181 + default: *184 '304': *37 '403': *29 '404': *6 @@ -27222,8 +27468,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#update-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27310,8 +27556,8 @@ paths: - enabled - disabled - not_set - code_scanning_default_setup_options: *50 - code_scanning_options: *51 + code_scanning_default_setup_options: *52 + code_scanning_options: *53 code_scanning_delegated_alert_dismissal: type: string description: The enablement status of code scanning delegated alert @@ -27436,7 +27682,7 @@ paths: description: Response when a configuration is updated content: application/json: - schema: *47 + schema: *49 examples: default: value: @@ -27495,14 +27741,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#delete-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 responses: - '204': *184 + '204': *187 '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27526,8 +27772,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#attach-a-configuration-to-repositories parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27590,8 +27836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#set-a-code-security-configuration-as-a-default-for-an-organization parameters: - - *67 - - *49 + - *69 + - *51 requestBody: required: true content: @@ -27631,12 +27877,12 @@ paths: - none - private_and_internal - public - configuration: *47 + configuration: *49 examples: default: value: default_for_new_repos: all - configuration: *181 + configuration: *184 '403': *29 '404': *6 x-github: @@ -27660,8 +27906,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-repositories-associated-with-a-code-security-configuration parameters: - - *67 - - *49 + - *69 + - *51 - name: per_page description: The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -27670,8 +27916,8 @@ paths: schema: type: integer default: 30 - - *45 - - *46 + - *47 + - *48 - name: status description: |- A comma-separated list of statuses. If specified, only repositories with these attachment statuses will be returned. @@ -27689,13 +27935,13 @@ paths: application/json: schema: type: array - items: *185 + items: *188 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *186 + repository: *189 '403': *29 '404': *6 x-github: @@ -27719,7 +27965,7 @@ paths: parameters: - *17 - *19 - - *67 + - *69 responses: '200': description: Response @@ -27735,7 +27981,7 @@ paths: type: integer codespaces: type: array - items: &237 + items: &240 type: object title: Codespace description: A codespace. @@ -27760,12 +28006,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *153 + repository: *156 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &454 + properties: &457 name: type: string description: The name of the machine. @@ -27807,7 +28053,7 @@ paths: - ready - in_progress nullable: true - required: &455 + required: &458 - name - display_name - operating_system @@ -28012,7 +28258,7 @@ paths: - pulls_url - recent_folders examples: - default: &238 + default: &241 value: total_count: 3 codespaces: @@ -28422,7 +28668,7 @@ paths: stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-f8adfad99a/stop recent_folders: [] '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -28444,7 +28690,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#manage-access-control-for-organization-codespaces parameters: - - *67 + - *69 deprecated: true requestBody: required: true @@ -28488,7 +28734,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28511,7 +28757,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#add-users-to-codespaces-access-for-an-organization parameters: - - *67 + - *69 deprecated: true requestBody: required: true @@ -28543,7 +28789,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28566,7 +28812,7 @@ paths: url: https://docs.github.com/rest/codespaces/organizations#remove-users-from-codespaces-access-for-an-organization deprecated: true parameters: - - *67 + - *69 requestBody: required: true content: @@ -28597,7 +28843,7 @@ paths: description: Users are neither members nor collaborators of this organization. '404': *6 '422': *15 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28618,7 +28864,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -28636,7 +28882,7 @@ paths: type: integer secrets: type: array - items: &187 + items: &190 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -28675,7 +28921,7 @@ paths: - updated_at - visibility examples: - default: &456 + default: &459 value: total_count: 2 secrets: @@ -28688,7 +28934,7 @@ paths: updated_at: '2020-01-11T11:59:22Z' visibility: all headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28707,13 +28953,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &457 + schema: &460 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -28742,7 +28988,7 @@ paths: - key_id - key examples: - default: &458 + default: &461 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28765,23 +29011,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#get-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: Response content: application/json: - schema: *187 + schema: *190 examples: - default: &460 + default: &463 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' updated_at: '2020-01-10T14:59:22Z' visibility: all headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -28801,8 +29047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -28857,7 +29103,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -28883,8 +29129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -28909,8 +29155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -28928,9 +29174,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 '404': *6 x-github: githubCloudOnly: false @@ -28952,8 +29198,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -29003,8 +29249,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -29037,8 +29283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -29077,7 +29323,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-information-and-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: OK @@ -29186,7 +29432,7 @@ paths: cli: enabled public_code_suggestions: block plan_type: business - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29218,7 +29464,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#list-all-copilot-seat-assignments-for-an-organization parameters: - - *67 + - *69 - *19 - name: per_page description: The number of results per page (max 100). For more information, @@ -29241,7 +29487,7 @@ paths: currently being billed. seats: type: array - items: &240 + items: &243 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -29258,15 +29504,15 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *188 - required: *189 + properties: *191 + required: *192 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *190 - - *60 + - *193 + - *62 nullable: true pending_cancellation_date: type: string @@ -29390,8 +29636,8 @@ paths: type: User site_admin: false headers: - Link: *59 - '500': *113 + Link: *61 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29424,7 +29670,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#add-teams-to-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29466,7 +29712,7 @@ paths: default: value: seats_created: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29502,7 +29748,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#remove-teams-from-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29544,7 +29790,7 @@ paths: default: value: seats_cancelled: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29582,7 +29828,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#add-users-to-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29623,7 +29869,7 @@ paths: default: value: seats_created: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29659,7 +29905,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#remove-users-from-the-copilot-subscription-for-an-organization parameters: - - *67 + - *69 requestBody: content: application/json: @@ -29701,7 +29947,7 @@ paths: default: value: seats_cancelled: 5 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29741,7 +29987,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-content-exclusion-management#get-copilot-content-exclusion-rules-for-an-organization parameters: - - *67 + - *69 responses: '200': description: OK @@ -29761,7 +30007,7 @@ paths: value: octo-repo: - "/src/some-dir/kernel.rs" - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29794,7 +30040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-content-exclusion-management#set-copilot-content-exclusion-rules-for-an-organization parameters: - - *67 + - *69 requestBody: description: The content exclusion rules to set required: true @@ -29846,7 +30092,7 @@ paths: default: value: message: Content exclusion rules updated successfully. - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -29885,7 +30131,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-an-organization parameters: - - *67 + - *69 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -29917,7 +30163,7 @@ paths: application/json: schema: type: array - items: &325 + items: &328 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -30224,7 +30470,7 @@ paths: - date additionalProperties: true examples: - default: &326 + default: &329 value: - date: '2024-06-24' total_active_users: 24 @@ -30323,10 +30569,10 @@ paths: custom_model_training_date: '2024-02-01' total_pr_summaries_created: 10 total_engaged_users: 4 - '500': *113 + '500': *115 '403': *29 '404': *6 - '422': &327 + '422': &330 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -30353,12 +30599,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - - *67 - - *191 - - *192 - - *193 + - *69 - *194 - *195 + - *196 + - *197 + - *198 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -30388,7 +30634,7 @@ paths: enum: - patch - deployment - - *196 + - *199 - name: runtime_risk in: query description: |- @@ -30397,11 +30643,11 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *197 - - *198 - - *53 - - *45 - - *46 + - *200 + - *201 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -30410,9 +30656,9 @@ paths: application/json: schema: type: array - items: *199 + items: *202 examples: - default: *200 + default: *203 '304': *37 '400': *14 '403': *29 @@ -30438,7 +30684,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-organization-secrets parameters: - - *67 + - *69 - *17 - *19 responses: @@ -30456,7 +30702,7 @@ paths: type: integer secrets: type: array - items: &201 + items: &204 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -30506,7 +30752,7 @@ paths: visibility: selected selected_repositories_url: https://api.github.com/orgs/octo-org/dependabot/secrets/SUPER_SECRET/repositories headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30527,13 +30773,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-public-key parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: &489 + schema: &492 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -30550,7 +30796,7 @@ paths: - key_id - key examples: - default: &490 + default: &493 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -30573,14 +30819,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -30608,8 +30854,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -30664,7 +30910,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -30688,8 +30934,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -30713,8 +30959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - *19 - *17 responses: @@ -30732,9 +30978,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -30755,8 +31001,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -30806,8 +31052,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -30838,8 +31084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - - *67 - - *161 + - *69 + - *164 - name: repository_id in: path required: true @@ -30869,7 +31115,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -30877,7 +31123,7 @@ paths: application/json: schema: type: array - items: &250 + items: &253 title: Package description: A software package type: object @@ -30927,8 +31173,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *202 - required: *203 + properties: *205 + required: *206 nullable: true created_at: type: string @@ -30947,7 +31193,7 @@ paths: - created_at - updated_at examples: - default: &251 + default: &254 value: - id: 197 name: hello_docker @@ -31025,7 +31271,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-organization-events parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31035,7 +31281,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: 200-response: value: @@ -31107,7 +31353,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-failed-organization-invitations parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31117,7 +31363,7 @@ paths: application/json: schema: type: array - items: &226 + items: &229 title: Organization Invitation description: Organization Invitation type: object @@ -31164,7 +31410,7 @@ paths: - invitation_teams_url - node_id examples: - default: &227 + default: &230 value: - id: 1 login: monalisa @@ -31197,7 +31443,7 @@ paths: invitation_teams_url: https://api.github.com/organizations/2/invitations/1/teams invitation_source: member headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -31221,7 +31467,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-organization-webhooks parameters: - - *67 + - *69 - *17 - *19 responses: @@ -31231,7 +31477,7 @@ paths: application/json: schema: type: array - items: &204 + items: &207 title: Org Hook description: Org Hook type: object @@ -31319,7 +31565,7 @@ paths: created_at: '2011-09-06T17:26:27Z' type: Organization headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -31342,7 +31588,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#create-an-organization-webhook parameters: - - *67 + - *69 requestBody: required: true content: @@ -31402,9 +31648,9 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: - default: &205 + default: &208 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -31451,8 +31697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - - *67 - - &206 + - *69 + - &209 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -31465,9 +31711,9 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: - default: *205 + default: *208 '404': *6 x-github: githubCloudOnly: false @@ -31494,8 +31740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 requestBody: required: false content: @@ -31540,7 +31786,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *207 examples: default: value: @@ -31581,8 +31827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 responses: '204': description: Response @@ -31609,8 +31855,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - - *67 - - *206 + - *69 + - *209 responses: '200': description: Response @@ -31640,8 +31886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - - *67 - - *206 + - *69 + - *209 requestBody: required: false content: @@ -31691,10 +31937,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *17 - - *207 + - *210 responses: '200': description: Response @@ -31702,9 +31948,9 @@ paths: application/json: schema: type: array - items: *208 + items: *211 examples: - default: *209 + default: *212 '400': *14 '422': *15 x-github: @@ -31729,17 +31975,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *16 responses: '200': description: Response content: application/json: - schema: *210 + schema: *213 examples: - default: *211 + default: *214 '400': *14 '422': *15 x-github: @@ -31764,8 +32010,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 - *16 responses: '202': *39 @@ -31794,8 +32040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - - *67 - - *206 + - *69 + - *209 responses: '204': description: Response @@ -31817,8 +32063,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - - *67 - - &216 + - *69 + - &219 name: actor_type in: path description: The type of the actor @@ -31831,14 +32077,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &217 + - &220 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &212 + - &215 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -31846,7 +32092,7 @@ paths: required: true schema: type: string - - &213 + - &216 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -31857,7 +32103,7 @@ paths: type: string - *19 - *17 - - *53 + - *55 - name: sort description: The property to sort the results by. in: query @@ -31939,13 +32185,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - - *67 - - *212 - - *213 + - *69 + - *215 + - *216 - *19 - *17 - - *53 - - &222 + - *55 + - &225 name: sort description: The property to sort the results by. in: query @@ -32022,15 +32268,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - - *67 - - *212 - - *213 + - *69 + - *215 + - *216 responses: '200': description: Response content: application/json: - schema: &214 + schema: &217 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -32046,7 +32292,7 @@ paths: type: integer format: int64 examples: - default: &215 + default: &218 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -32066,24 +32312,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - - *67 - - &218 + - *69 + - &221 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *212 - - *213 + - *215 + - *216 responses: '200': description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: *215 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32101,19 +32347,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - - *67 - - *212 - - *213 + - *69 + - *215 - *216 - - *217 + - *219 + - *220 responses: '200': description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: *215 + default: *218 x-github: enabledForGitHubApps: true category: orgs @@ -32130,10 +32376,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - - *67 - - *212 - - *213 - - &219 + - *69 + - *215 + - *216 + - &222 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -32146,7 +32392,7 @@ paths: description: Response content: application/json: - schema: &220 + schema: &223 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -32162,7 +32408,7 @@ paths: type: integer format: int64 examples: - default: &221 + default: &224 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -32198,19 +32444,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - - *67 - - *218 - - *212 - - *213 - - *219 + - *69 + - *221 + - *215 + - *216 + - *222 responses: '200': description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 x-github: enabledForGitHubApps: true category: orgs @@ -32227,20 +32473,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - - *67 - - *216 - - *217 - - *212 - - *213 + - *69 - *219 + - *220 + - *215 + - *216 + - *222 responses: '200': description: Response content: application/json: - schema: *220 + schema: *223 examples: - default: *221 + default: *224 x-github: enabledForGitHubApps: true category: orgs @@ -32257,14 +32503,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - - *67 - - *218 - - *212 - - *213 + - *69 + - *221 + - *215 + - *216 - *19 - *17 - - *53 - - *222 + - *55 + - *225 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -32337,7 +32583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app parameters: - - *67 + - *69 responses: '200': description: Response @@ -32345,7 +32591,7 @@ paths: application/json: schema: *22 examples: - default: &528 + default: &531 value: id: 1 account: @@ -32414,7 +32660,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-app-installations-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -32484,7 +32730,7 @@ paths: suspended_at: suspended_by: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32503,7 +32749,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#get-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -32511,12 +32757,12 @@ paths: application/json: schema: anyOf: - - &224 + - &227 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &223 + limit: &226 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -32541,7 +32787,7 @@ paths: properties: {} additionalProperties: false examples: - default: &225 + default: &228 value: limit: collaborators_only origin: organization @@ -32565,18 +32811,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#set-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: application/json: - schema: &529 + schema: &532 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *223 + limit: *226 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -32600,9 +32846,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: *225 + default: *228 '422': *15 x-github: githubCloudOnly: false @@ -32620,7 +32866,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/orgs#remove-interaction-restrictions-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -32644,7 +32890,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-pending-organization-invitations parameters: - - *67 + - *69 - *17 - *19 - name: role @@ -32678,11 +32924,11 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -32703,7 +32949,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#create-an-organization-invitation parameters: - - *67 + - *69 requestBody: required: false content: @@ -32757,7 +33003,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: default: value: @@ -32811,8 +33057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - - *67 - - &228 + - *69 + - &231 name: invitation_id description: The unique identifier of the invitation. in: path @@ -32842,8 +33088,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - - *67 - - *228 + - *69 + - *231 - *17 - *19 responses: @@ -32853,9 +33099,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: &249 + default: &252 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -32871,7 +33117,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -32890,7 +33136,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#list-issue-fields-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -32898,7 +33144,7 @@ paths: application/json: schema: type: array - items: &229 + items: &232 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -33041,7 +33287,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#create-issue-field-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -33131,9 +33377,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - default: &230 + default: &233 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -33188,8 +33434,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - - *67 - - &231 + - *69 + - &234 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -33288,9 +33534,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *232 examples: - default: *230 + default: *233 '404': *6 '422': *7 x-github: @@ -33314,10 +33560,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - - *67 - - *231 + - *69 + - *234 responses: - '204': *184 + '204': *187 '404': *6 '422': *7 x-github: @@ -33337,7 +33583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -33345,7 +33591,7 @@ paths: application/json: schema: type: array - items: *232 + items: *235 examples: default: value: @@ -33383,7 +33629,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -33430,9 +33676,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *235 examples: - default: &233 + default: &236 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -33464,8 +33710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - - *67 - - &234 + - *69 + - &237 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -33518,9 +33764,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *235 examples: - default: *233 + default: *236 '404': *6 '422': *7 x-github: @@ -33544,8 +33790,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - - *67 - - *234 + - *69 + - *237 responses: '204': description: Response @@ -33578,7 +33824,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-organization-issues-assigned-to-the-authenticated-user parameters: - - *67 + - *69 - name: filter description: Indicates which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means @@ -33608,7 +33854,7 @@ paths: - closed - all default: open - - *235 + - *238 - name: type description: Can be the name of an issue type. in: query @@ -33626,8 +33872,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -33637,11 +33883,11 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *236 + default: *239 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -33661,7 +33907,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-organization-members parameters: - - *67 + - *69 - name: filter description: Filter members returned in the list. `2fa_disabled` means that only members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -33699,9 +33945,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -33719,8 +33965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response if requester is an organization member and user is @@ -33754,8 +34000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-an-organization-member parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -33782,8 +34028,8 @@ paths: parameters: - *17 - *19 - - *67 - - *63 + - *69 + - *65 responses: '200': description: Response @@ -33799,11 +34045,11 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -33826,9 +34072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - - *67 - - *63 - - &239 + - *69 + - *65 + - &242 name: codespace_name in: path required: true @@ -33838,7 +34084,7 @@ paths: responses: '202': *39 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -33861,17 +34107,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - - *67 - - *63 - - *239 + - *69 + - *65 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: &453 + default: &456 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -34013,7 +34259,7 @@ paths: recent_folders: [] template: '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34044,14 +34290,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '200': description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *240 + schema: *243 examples: default: value: @@ -34095,7 +34341,7 @@ paths: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -34120,14 +34366,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '200': description: Response content: application/json: - schema: &241 + schema: &244 title: Org Membership description: Org Membership type: object @@ -34171,7 +34417,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *65 + organization: *67 user: title: Simple User description: A GitHub user. @@ -34194,7 +34440,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &242 + response-if-user-has-an-active-admin-membership-with-organization: &245 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -34266,8 +34512,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 requestBody: required: false content: @@ -34295,9 +34541,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: - response-if-user-already-had-membership-with-organization: *242 + response-if-user-already-had-membership-with-organization: *245 '422': *15 '403': *29 '451': *15 @@ -34322,8 +34568,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -34348,7 +34594,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-organization-migrations parameters: - - *67 + - *69 - *17 - *19 - name: exclude @@ -34369,7 +34615,7 @@ paths: application/json: schema: type: array - items: &243 + items: &246 title: Migration description: A migration. type: object @@ -34410,7 +34656,7 @@ paths: type: array description: The repositories included in the migration. Only returned for export migrations. - items: *58 + items: *60 url: type: string format: uri @@ -34606,7 +34852,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -34622,7 +34868,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#start-an-organization-migration parameters: - - *67 + - *69 requestBody: required: true content: @@ -34698,7 +34944,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -34876,8 +35122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - - *67 - - &244 + - *69 + - &247 name: migration_id description: The unique identifier of the migration. in: path @@ -34904,7 +35150,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -35073,8 +35319,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - - *67 - - *244 + - *69 + - *247 responses: '302': description: Response @@ -35095,8 +35341,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - - *67 - - *244 + - *69 + - *247 responses: '204': description: Response @@ -35119,9 +35365,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - - *67 - - *244 - - &682 + - *69 + - *247 + - &685 name: repo_name description: repo_name parameter in: path @@ -35148,8 +35394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - - *67 - - *244 + - *69 + - *247 - *17 - *19 responses: @@ -35159,9 +35405,9 @@ paths: application/json: schema: type: array - items: *58 + items: *60 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -35187,7 +35433,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-all-organization-roles-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response - list of organization roles @@ -35203,7 +35449,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &246 + items: &249 title: Organization Role description: Organization roles type: object @@ -35350,8 +35596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -35376,9 +35622,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - - *67 - *69 - - &245 + - *71 + - &248 name: role_id description: The unique identifier of the role. in: path @@ -35413,9 +35659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - - *67 - *69 - - *245 + - *71 + - *248 responses: '204': description: Response @@ -35440,8 +35686,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -35466,9 +35712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - - *67 - - *63 - - *245 + - *69 + - *65 + - *248 responses: '204': description: Response @@ -35498,9 +35744,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - - *67 - - *63 - - *245 + - *69 + - *65 + - *248 responses: '204': description: Response @@ -35528,14 +35774,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 responses: '200': description: Response content: application/json: - schema: *246 + schema: *249 examples: default: value: @@ -35585,8 +35831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 - *17 - *19 responses: @@ -35664,8 +35910,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 nullable: true type: description: The ownership type of the team @@ -35697,9 +35943,9 @@ paths: - type - parent examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '404': description: Response if the organization or role does not exist. '422': @@ -35726,8 +35972,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - - *67 - - *245 + - *69 + - *248 - *17 - *19 responses: @@ -35755,13 +36001,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &321 + items: &324 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 name: nullable: true type: string @@ -35856,9 +36102,9 @@ paths: - type - url examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': description: Response if the organization or role does not exist. '422': @@ -35880,7 +36126,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#list-outside-collaborators-for-an-organization parameters: - - *67 + - *69 - name: filter description: Filter the list of outside collaborators. `2fa_disabled` means that only outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication) @@ -35907,9 +36153,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35932,8 +36178,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - - *67 - - *63 + - *69 + - *65 requestBody: required: false content: @@ -35990,8 +36236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -36048,8 +36294,8 @@ paths: - docker - nuget - container - - *67 - - &683 + - *69 + - &686 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -36085,12 +36331,12 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *251 + default: *254 '403': *29 '401': *25 - '400': &685 + '400': &688 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -36112,7 +36358,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &252 + - &255 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -36130,20 +36376,20 @@ paths: - docker - nuget - container - - &253 + - &256 name: package_name description: The name of the package. in: path required: true schema: type: string - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: default: value: @@ -36195,9 +36441,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 responses: '204': description: Response @@ -36229,9 +36475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 - name: token description: package token schema: @@ -36263,9 +36509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *252 - - *253 - - *67 + - *255 + - *256 + - *69 - *19 - *17 - name: state @@ -36285,7 +36531,7 @@ paths: application/json: schema: type: array - items: &254 + items: &257 title: Package Version description: A version of a software package type: object @@ -36410,10 +36656,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - - &255 + - *255 + - *256 + - *69 + - &258 name: package_version_id description: Unique identifier of the package version. in: path @@ -36425,7 +36671,7 @@ paths: description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -36461,10 +36707,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - *255 + - *256 + - *69 + - *258 responses: '204': description: Response @@ -36496,10 +36742,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *252 - - *253 - - *67 - *255 + - *256 + - *69 + - *258 responses: '204': description: Response @@ -36526,10 +36772,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *67 + - *69 - *17 - *19 - - &256 + - &259 name: sort description: The property by which to sort the results. in: query @@ -36539,8 +36785,8 @@ paths: enum: - created_at default: created_at - - *53 - - &257 + - *55 + - &260 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -36551,7 +36797,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &258 + - &261 name: repository description: The name of the repository to use to filter the results. in: query @@ -36559,7 +36805,7 @@ paths: schema: type: string example: Hello-World - - &259 + - &262 name: permission description: The permission to use to filter the results. in: query @@ -36567,7 +36813,7 @@ paths: schema: type: string example: issues_read - - &260 + - &263 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -36577,7 +36823,7 @@ paths: schema: type: string format: date-time - - &261 + - &264 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -36587,7 +36833,7 @@ paths: schema: type: string format: date-time - - &262 + - &265 name: token_id description: The ID of the token in: query @@ -36599,7 +36845,7 @@ paths: type: string example: token_id[]=1,token_id[]=2 responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -36731,7 +36977,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36751,7 +36997,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#review-requests-to-access-organization-resources-with-fine-grained-personal-access-tokens parameters: - - *67 + - *69 requestBody: required: true content: @@ -36792,7 +37038,7 @@ paths: action: deny reason: Access is too broad. responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -36817,7 +37063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#review-a-request-to-access-organization-resources-with-a-fine-grained-personal-access-token parameters: - - *67 + - *69 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -36853,11 +37099,11 @@ paths: action: deny reason: This request is denied because the access is too broad. responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36878,7 +37124,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-requested-to-be-accessed-by-a-fine-grained-personal-access-token parameters: - - *67 + - *69 - name: pat_request_id in: path description: Unique identifier of the request for access via fine-grained @@ -36889,7 +37135,7 @@ paths: - *17 - *19 responses: - '500': *113 + '500': *115 '404': *6 '403': *29 '200': @@ -36898,9 +37144,9 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: &263 + default: &266 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -37013,7 +37259,7 @@ paths: secret_scanning_delegated_alert_dismissal: status: disabled headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37034,19 +37280,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-fine-grained-personal-access-tokens-with-access-to-organization-resources parameters: - - *67 + - *69 - *17 - *19 - - *256 - - *53 - - *257 - - *258 - *259 + - *55 - *260 - *261 - *262 + - *263 + - *264 + - *265 responses: - '500': *113 + '500': *115 '422': *15 '404': *6 '403': *29 @@ -37173,7 +37419,7 @@ paths: token_expires_at: '2023-11-16T08:47:09.000-07:00' token_last_used_at: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37193,7 +37439,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-to-organization-resources-via-fine-grained-personal-access-tokens parameters: - - *67 + - *69 requestBody: required: true content: @@ -37228,7 +37474,7 @@ paths: - 1296269 - 1296280 responses: - '500': *113 + '500': *115 '404': *6 '202': *39 '403': *29 @@ -37253,7 +37499,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#update-the-access-a-fine-grained-personal-access-token-has-to-organization-resources parameters: - - *67 + - *69 - name: pat_id description: The unique identifier of the fine-grained personal access token. in: path @@ -37281,9 +37527,9 @@ paths: value: action: revoke responses: - '500': *113 + '500': *115 '404': *6 - '204': *184 + '204': *187 '403': *29 '422': *15 x-github: @@ -37305,7 +37551,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/personal-access-tokens#list-repositories-a-fine-grained-personal-access-token-has-access-to parameters: - - *67 + - *69 - name: pat_id in: path description: Unique identifier of the fine-grained personal access token. @@ -37315,7 +37561,7 @@ paths: - *17 - *19 responses: - '500': *113 + '500': *115 '404': *6 '403': *29 '200': @@ -37324,11 +37570,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37350,7 +37596,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#list-private-registries-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -37368,7 +37614,7 @@ paths: type: integer configurations: type: array - items: &264 + items: &267 title: Organization private registry description: Private registry configuration for an organization type: object @@ -37448,7 +37694,7 @@ paths: updated_at: '2020-01-10T14:59:22Z' visibility: selected headers: - Link: *59 + Link: *61 '400': *14 '404': *6 x-github: @@ -37470,7 +37716,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#create-a-private-registry-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -37658,7 +37904,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &265 + org-private-registry-with-selected-visibility: &268 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -37699,7 +37945,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-private-registries-public-key-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -37725,7 +37971,7 @@ paths: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -37747,16 +37993,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *264 + schema: *267 examples: - default: *265 + default: *268 '404': *6 x-github: githubCloudOnly: false @@ -37777,8 +38023,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 requestBody: required: true content: @@ -37882,8 +38128,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - - *67 - - *161 + - *69 + - *164 responses: '204': description: Response @@ -37906,15 +38152,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-organization parameters: - - *67 + - *69 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -37923,7 +38169,7 @@ paths: application/json: schema: type: array - items: &266 + items: &269 title: Projects v2 Project description: A projects v2 project type: object @@ -37993,7 +38239,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &774 + properties: &777 id: type: number description: The unique identifier of the status update. @@ -38041,7 +38287,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &775 + required: &778 - id - node_id - created_at @@ -38066,7 +38312,7 @@ paths: - deleted_at - deleted_by examples: - default: &267 + default: &270 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -38149,7 +38395,7 @@ paths: updated_at: '2025-07-11T16:19:28Z' is_template: true headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38169,24 +38415,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &268 + - &271 name: project_number description: The project's number. in: path required: true schema: type: integer - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38206,8 +38452,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true description: Details of the draft item to create in the project. @@ -38241,7 +38487,7 @@ paths: description: Response content: application/json: - schema: &274 + schema: &277 title: Projects v2 Item description: An item belonging to a project type: object @@ -38254,8 +38500,8 @@ paths: description: The node ID of the project item. content: oneOf: - - *77 - - &470 + - *79 + - &473 title: Pull Request Simple description: Pull Request Simple type: object @@ -38361,8 +38607,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true active_lock_reason: type: string @@ -38394,7 +38640,7 @@ paths: items: *4 requested_teams: type: array - items: *190 + items: *193 head: type: object properties: @@ -38402,7 +38648,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: @@ -38425,7 +38671,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: @@ -38444,7 +38690,7 @@ paths: _links: type: object properties: - comments: &271 + comments: &274 title: Link description: Hypermedia Link type: object @@ -38453,13 +38699,13 @@ paths: type: string required: - href - commits: *271 - statuses: *271 - html: *271 - issue: *271 - review_comments: *271 - review_comment: *271 - self: *271 + commits: *274 + statuses: *274 + html: *274 + issue: *274 + review_comments: *274 + review_comment: *274 + self: *274 required: - comments - commits @@ -38469,8 +38715,8 @@ paths: - review_comments - review_comment - self - author_association: *74 - auto_merge: &579 + author_association: *76 + auto_merge: &582 title: Auto merge description: The status of auto merging a pull request. type: object @@ -38570,7 +38816,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &273 + content_type: &276 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -38610,7 +38856,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &275 + draft_issue: &278 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -38684,11 +38930,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *268 - - *67 + - *271 + - *69 - *17 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -38696,7 +38942,7 @@ paths: application/json: schema: type: array - items: &272 + items: &275 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -38846,7 +39092,7 @@ paths: - updated_at - project_url examples: - default: &705 + default: &708 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -38957,7 +39203,7 @@ paths: created_at: '2022-06-20T16:45:00Z' updated_at: '2022-06-20T16:45:00Z' headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -38976,8 +39222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *268 - - *67 + - *271 + - *69 requestBody: required: true content: @@ -39023,7 +39269,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &706 + items: &709 type: object properties: name: @@ -39060,7 +39306,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &707 + iteration_configuration: &710 type: object description: The configuration for iteration fields. properties: @@ -39110,7 +39356,7 @@ paths: value: name: Due date data_type: date - single_select_field: &708 + single_select_field: &711 summary: Create a single select field value: name: Priority @@ -39137,7 +39383,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &709 + iteration_field: &712 summary: Create an iteration field value: name: Sprint @@ -39161,9 +39407,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *272 + schema: *275 examples: - text_field: &710 + text_field: &713 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -39172,7 +39418,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &711 + number_field: &714 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -39181,7 +39427,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &712 + date_field: &715 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -39190,7 +39436,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &713 + single_select_field: &716 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39224,7 +39470,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &714 + iteration_field: &717 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -39269,23 +39515,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *268 - - &715 + - *271 + - &718 name: field_id description: The unique identifier of the field. in: path required: true schema: type: integer - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: &716 + default: &719 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -39320,7 +39566,7 @@ paths: created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -39341,8 +39587,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *268 - - *67 + - *271 + - *69 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) for more information. @@ -39364,8 +39610,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -39374,7 +39620,7 @@ paths: application/json: schema: type: array - items: &276 + items: &279 title: Projects v2 Item description: An item belonging to a project type: object @@ -39390,7 +39636,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *273 + content_type: *276 content: type: object additionalProperties: true @@ -39433,7 +39679,7 @@ paths: - updated_at - archived_at examples: - default: &277 + default: &280 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -40110,7 +40356,7 @@ paths: data_type: sub_issues_progress value: headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40130,8 +40376,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -40201,22 +40447,22 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *275 + value: *278 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *275 + value: *278 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *275 + value: *278 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *275 + value: *278 '304': *37 '403': *29 '401': *25 @@ -40236,9 +40482,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *268 - - *67 - - &278 + - *271 + - *69 + - &281 name: item_id description: The unique identifier of the project item. in: path @@ -40264,11 +40510,11 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40287,9 +40533,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *268 - - *67 - - *278 + - *271 + - *69 + - *281 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -40359,13 +40605,13 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - text_field: *277 - number_field: *277 - date_field: *277 - single_select_field: *277 - iteration_field: *277 + text_field: *280 + number_field: *280 + date_field: *280 + single_select_field: *280 + iteration_field: *280 '401': *25 '403': *29 '404': *6 @@ -40385,9 +40631,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *268 - - *67 - - *278 + - *271 + - *69 + - *281 responses: '204': description: Response @@ -40410,8 +40656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - - *67 - - *268 + - *69 + - *271 requestBody: required: true content: @@ -40482,7 +40728,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &697 + schema: &700 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -40580,7 +40826,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &279 + value: &282 value: id: 1 number: 1 @@ -40626,10 +40872,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *279 + value: *282 roadmap_view: summary: Response for creating a roadmap view - value: *279 + value: *282 '304': *37 '403': *29 '401': *25 @@ -40657,9 +40903,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *268 - - *67 - - &717 + - *271 + - *69 + - &720 name: view_number description: The number that identifies the project view. in: path @@ -40681,8 +40927,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -40691,11 +40937,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -40718,7 +40964,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-all-custom-properties-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Response @@ -40726,7 +40972,7 @@ paths: application/json: schema: type: array - items: &280 + items: &283 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -40794,7 +41040,7 @@ paths: - property_name - value_type examples: - default: &281 + default: &284 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -40843,7 +41089,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-properties-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -40854,7 +41100,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *280 + items: *283 minItems: 1 maxItems: 100 required: @@ -40884,9 +41130,9 @@ paths: application/json: schema: type: array - items: *280 + items: *283 examples: - default: *281 + default: *284 '403': *29 '404': *6 x-github: @@ -40907,8 +41153,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - - *67 - - &282 + - *69 + - &285 name: custom_property_name description: The custom property name in: path @@ -40920,9 +41166,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: &283 + default: &286 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -40956,8 +41202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - - *67 - - *282 + - *69 + - *285 requestBody: required: true content: @@ -41028,9 +41274,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *283 examples: - default: *283 + default: *286 '403': *29 '404': *6 x-github: @@ -41053,10 +41299,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - - *67 - - *282 + - *69 + - *285 responses: - '204': *184 + '204': *187 '403': *29 '404': *6 x-github: @@ -41077,7 +41323,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories parameters: - - *67 + - *69 - *17 - *19 - name: repository_query @@ -41115,7 +41361,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &284 + items: &287 title: Custom Property Value description: Custom property name and associated value type: object @@ -41154,7 +41400,7 @@ paths: - property_name: team value: octocat headers: - Link: *59 + Link: *61 '403': *29 '404': *6 x-github: @@ -41182,7 +41428,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories parameters: - - *67 + - *69 requestBody: required: true content: @@ -41202,7 +41448,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *284 + items: *287 required: - repository_names - properties @@ -41243,7 +41489,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#list-public-organization-members parameters: - - *67 + - *69 - *17 - *19 responses: @@ -41255,9 +41501,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41274,8 +41520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#check-public-organization-membership-for-a-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response if user is a public member @@ -41299,8 +41545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -41321,8 +41567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - - *67 - - *63 + - *69 + - *65 responses: '204': description: Response @@ -41346,7 +41592,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-organization-repositories parameters: - - *67 + - *69 - name: type description: Specifies the types of repositories you want returned. in: query @@ -41392,11 +41638,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41415,7 +41661,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-organization-repository parameters: - - *67 + - *69 requestBody: required: true content: @@ -41596,7 +41842,7 @@ paths: description: Response content: application/json: - schema: &335 + schema: &338 title: Full Repository description: Full Repository type: object @@ -41884,8 +42130,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *285 - required: *286 + properties: *288 + required: *289 nullable: true temp_clone_token: type: string @@ -41969,8 +42215,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true organization: title: Simple User @@ -41979,8 +42225,8 @@ paths: properties: *20 required: *21 nullable: true - parent: *71 - source: *71 + parent: *73 + source: *73 forks: type: integer master_branch: @@ -41997,7 +42243,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &475 + properties: &478 url: type: string format: uri @@ -42013,12 +42259,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &476 + required: &479 - url - key - name - html_url - security_and_analysis: *287 + security_and_analysis: *290 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42102,7 +42348,7 @@ paths: - network_count - subscribers_count examples: - default: &337 + default: &340 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42621,10 +42867,10 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - *17 - *19 - - &601 + - &604 name: targets description: | A comma-separated list of rule targets to filter by. @@ -42642,7 +42888,7 @@ paths: application/json: schema: type: array - items: &314 + items: &317 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -42677,7 +42923,7 @@ paths: source: type: string description: The name of the source - enforcement: &290 + enforcement: &293 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -42690,7 +42936,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &291 + items: &294 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -42760,7 +43006,7 @@ paths: conditions: nullable: true anyOf: - - &288 + - &291 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -42784,7 +43030,7 @@ paths: match. items: type: string - - &292 + - &295 title: Organization ruleset conditions type: object description: |- @@ -42798,7 +43044,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -42832,7 +43078,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -42854,7 +43100,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *288 + - *291 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -42867,7 +43113,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &289 + items: &292 title: Repository ruleset property targeting definition type: object @@ -42900,17 +43146,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *289 + items: *292 required: - repository_property rules: type: array - items: &602 + items: &605 title: Repository Rule type: object description: A repository rule. oneOf: - - &293 + - &296 title: creation description: Only allow users with bypass permission to create matching refs. @@ -42922,7 +43168,7 @@ paths: type: string enum: - creation - - &294 + - &297 title: update description: Only allow users with bypass permission to update matching refs. @@ -42943,7 +43189,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &295 + - &298 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -42955,7 +43201,7 @@ paths: type: string enum: - deletion - - &296 + - &299 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -42967,7 +43213,7 @@ paths: type: string enum: - required_linear_history - - &600 + - &603 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -43045,7 +43291,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &297 + - &300 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -43069,7 +43315,7 @@ paths: type: string required: - required_deployment_environments - - &298 + - &301 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -43081,7 +43327,7 @@ paths: type: string enum: - required_signatures - - &299 + - &302 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -43187,7 +43433,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &300 + - &303 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -43235,7 +43481,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &301 + - &304 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -43247,7 +43493,7 @@ paths: type: string enum: - non_fast_forward - - &302 + - &305 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -43284,7 +43530,7 @@ paths: required: - operator - pattern - - &303 + - &306 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -43321,7 +43567,7 @@ paths: required: - operator - pattern - - &304 + - &307 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -43358,7 +43604,7 @@ paths: required: - operator - pattern - - &305 + - &308 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -43395,7 +43641,7 @@ paths: required: - operator - pattern - - &306 + - &309 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -43432,7 +43678,7 @@ paths: required: - operator - pattern - - &307 + - &310 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -43457,7 +43703,7 @@ paths: type: string required: - restricted_file_paths - - &308 + - &311 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -43481,7 +43727,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &309 + - &312 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -43504,7 +43750,7 @@ paths: type: string required: - restricted_file_extensions - - &310 + - &313 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -43529,7 +43775,7 @@ paths: maximum: 100 required: - max_file_size - - &311 + - &314 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -43579,7 +43825,7 @@ paths: - repository_id required: - workflows - - &312 + - &315 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -43640,7 +43886,7 @@ paths: - tool required: - code_scanning_tools - - &313 + - &316 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -43702,7 +43948,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 post: summary: Create an organization repository ruleset description: Create a repository ruleset for an organization. @@ -43718,7 +43964,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 requestBody: description: Request body required: true @@ -43739,23 +43985,20 @@ paths: - push - repository default: branch - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *292 + items: *294 + conditions: *295 rules: type: array description: An array of rules within the ruleset. - items: &316 + items: &319 title: Repository Rule type: object description: A repository rule. oneOf: - - *293 - - *294 - - *295 - *296 - *297 - *298 @@ -43774,6 +44017,9 @@ paths: - *311 - *312 - *313 + - *314 + - *315 + - *316 required: - name - enforcement @@ -43811,9 +44057,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: &315 + default: &318 value: id: 21 name: super cool ruleset @@ -43854,7 +44100,7 @@ paths: updated_at: '2023-09-23T16:29:47Z' '404': *6 '422': *15 - '500': *113 + '500': *115 "/orgs/{org}/rulesets/rule-suites": get: summary: List organization rule suites @@ -43868,8 +44114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - - *67 - - &603 + - *69 + - &606 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -43884,7 +44130,7 @@ paths: in: query schema: type: string - - &604 + - &607 name: time_period description: |- The time period to filter by. @@ -43900,14 +44146,14 @@ paths: - week - month default: day - - &605 + - &608 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &606 + - &609 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -43927,7 +44173,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &610 title: Rule Suites description: Response type: array @@ -43982,7 +44228,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &608 + default: &611 value: - id: 21 actor_id: 12 @@ -44006,7 +44252,7 @@ paths: result: pass evaluation_result: fail '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44025,8 +44271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - - *67 - - &609 + - *69 + - &612 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -44042,7 +44288,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &613 title: Rule Suite description: Response type: object @@ -44141,7 +44387,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &611 + default: &614 value: id: 21 actor_id: 12 @@ -44176,7 +44422,7 @@ paths: result: fail rule_type: commit_message_pattern '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44202,7 +44448,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44214,11 +44460,11 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *315 + default: *318 '404': *6 - '500': *113 + '500': *115 put: summary: Update an organization repository ruleset description: Update a ruleset for an organization. @@ -44234,7 +44480,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44260,16 +44506,16 @@ paths: - tag - push - repository - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *292 + items: *294 + conditions: *295 rules: description: An array of rules within the ruleset. type: array - items: *316 + items: *319 examples: default: value: @@ -44304,12 +44550,12 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *315 + default: *318 '404': *6 '422': *15 - '500': *113 + '500': *115 delete: summary: Delete an organization repository ruleset description: Delete a ruleset for an organization. @@ -44325,7 +44571,7 @@ paths: category: orgs subcategory: rules parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44336,7 +44582,7 @@ paths: '204': description: Response '404': *6 - '500': *113 + '500': *115 "/orgs/{org}/rulesets/{ruleset_id}/history": get: summary: Get organization ruleset history @@ -44348,7 +44594,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history parameters: - - *67 + - *69 - *17 - *19 - name: ruleset_id @@ -44364,7 +44610,7 @@ paths: application/json: schema: type: array - items: &317 + items: &320 title: Ruleset version type: object description: The historical version of a ruleset @@ -44388,7 +44634,7 @@ paths: type: string format: date-time examples: - default: &613 + default: &616 value: - version_id: 3 actor: @@ -44406,7 +44652,7 @@ paths: type: User updated_at: '2024-08-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44423,7 +44669,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version parameters: - - *67 + - *69 - name: ruleset_id description: The ID of the ruleset. in: path @@ -44441,9 +44687,9 @@ paths: description: Response content: application/json: - schema: &614 + schema: &617 allOf: - - *317 + - *320 - type: object required: - state @@ -44490,7 +44736,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44512,8 +44758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - - *67 - - &615 + - *69 + - &618 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -44524,7 +44770,7 @@ paths: enum: - open - resolved - - &616 + - &619 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -44534,7 +44780,7 @@ paths: required: false schema: type: string - - &617 + - &620 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -44543,7 +44789,7 @@ paths: required: false schema: type: string - - &618 + - &621 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -44562,7 +44808,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &619 + - &622 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -44574,10 +44820,10 @@ paths: - created - updated default: created - - *53 + - *55 - *19 - *17 - - &620 + - &623 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -44587,7 +44833,7 @@ paths: required: false schema: type: string - - &621 + - &624 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -44597,7 +44843,7 @@ paths: required: false schema: type: string - - &622 + - &625 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -44606,7 +44852,7 @@ paths: required: false schema: type: string - - &623 + - &626 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -44615,7 +44861,7 @@ paths: schema: type: boolean default: false - - &624 + - &627 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -44624,7 +44870,7 @@ paths: schema: type: boolean default: false - - &625 + - &628 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -44643,8 +44889,8 @@ paths: items: type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -44652,21 +44898,21 @@ paths: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: &626 + state: &629 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &627 + resolution: &630 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -44700,7 +44946,7 @@ paths: secret: type: string description: The secret that was detected. - repository: *58 + repository: *60 push_protection_bypassed: type: boolean description: Whether push protection was bypassed for the detected @@ -44773,8 +45019,8 @@ paths: pull request. ' - oneOf: &628 - - &630 + oneOf: &631 + - &633 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -44826,7 +45072,7 @@ paths: - blob_url - commit_sha - commit_url - - &631 + - &634 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -44881,7 +45127,7 @@ paths: - page_url - commit_sha - commit_url - - &632 + - &635 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -44895,7 +45141,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &633 + - &636 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -44909,7 +45155,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &634 + - &637 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -44923,7 +45169,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &635 + - &638 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -44937,7 +45183,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &636 + - &639 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -44951,7 +45197,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &637 + - &640 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -44965,7 +45211,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &638 + - &641 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -44979,7 +45225,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &639 + - &642 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -44993,7 +45239,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &640 + - &643 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -45007,7 +45253,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &641 + - &644 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -45021,7 +45267,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &642 + - &645 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -45224,9 +45470,9 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45251,7 +45497,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *67 + - *69 responses: '200': description: Response @@ -45263,7 +45509,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &319 + pattern_config_version: &322 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -45272,7 +45518,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &318 + items: &321 type: object properties: token_type: @@ -45338,7 +45584,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *318 + items: *321 examples: default: value: @@ -45387,7 +45633,7 @@ paths: category: secret-scanning subcategory: push-protection parameters: - - *67 + - *69 requestBody: required: true content: @@ -45395,7 +45641,7 @@ paths: schema: type: object properties: - pattern_config_version: *319 + pattern_config_version: *322 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -45421,7 +45667,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *319 + custom_pattern_version: *322 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -45457,7 +45703,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *15 "/orgs/{org}/security-advisories": get: @@ -45475,8 +45721,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories-for-an-organization parameters: - - *67 - - *53 + - *69 + - *55 - name: sort description: The property to sort the results by. in: query @@ -45488,8 +45734,8 @@ paths: - updated - published default: created - - *45 - - *46 + - *47 + - *48 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -45519,7 +45765,7 @@ paths: application/json: schema: type: array - items: &646 + items: &649 description: A repository security advisory. type: object properties: @@ -45688,7 +45934,7 @@ paths: - patched_versions - vulnerable_functions additionalProperties: false - cvss_severities: *55 + cvss_severities: *57 cwes: type: array nullable: true @@ -45721,7 +45967,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 credits_detailed: type: array nullable: true @@ -45731,7 +45977,7 @@ paths: type: object properties: user: *4 - type: *320 + type: *323 state: type: string description: The state of the user's acceptance of the @@ -45755,14 +46001,14 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *190 + items: *193 private_fork: readOnly: true nullable: true description: A temporary private fork of the advisory's repository for collaborating on a fix. allOf: - - *58 + - *60 required: - ghsa_id - cve_id @@ -45791,7 +46037,7 @@ paths: - private_fork additionalProperties: false examples: - default: &647 + default: &650 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -46170,7 +46416,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#list-security-manager-teams parameters: - - *67 + - *69 responses: '200': description: Response @@ -46178,7 +46424,7 @@ paths: application/json: schema: type: array - items: *321 + items: *324 examples: default: value: @@ -46218,8 +46464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -46244,8 +46490,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response @@ -46272,7 +46518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#get-immutable-releases-settings-for-an-organization parameters: - - *67 + - *69 responses: '200': description: Immutable releases settings response @@ -46321,7 +46567,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-immutable-releases-settings-for-an-organization parameters: - - *67 + - *69 responses: '204': description: Response @@ -46378,7 +46624,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-selected-repositories-for-immutable-releases-enforcement parameters: - - *67 + - *69 - *19 - *17 responses: @@ -46396,9 +46642,9 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *165 + default: *168 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46417,7 +46663,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#set-selected-repositories-for-immutable-releases-enforcement parameters: - - *67 + - *69 requestBody: required: true content: @@ -46466,8 +46712,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -46489,8 +46735,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization parameters: - - *67 - - *142 + - *69 + - *145 responses: '204': description: Response @@ -46513,7 +46759,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#list-hosted-compute-network-configurations-for-an-organization parameters: - - *67 + - *69 - *17 - *19 responses: @@ -46531,7 +46777,7 @@ paths: type: integer network_configurations: type: array - items: &322 + items: &325 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -46602,7 +46848,7 @@ paths: - 6789ABDCEF12345 created_on: '2023-04-26T15:23:37Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46621,7 +46867,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 + - *69 requestBody: required: true content: @@ -46664,9 +46910,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: &323 + default: &326 value: id: 123456789ABCDEF name: My network configuration @@ -46694,8 +46940,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 - - &324 + - *69 + - &327 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -46707,11 +46953,11 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *323 + default: *326 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46730,8 +46976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - - *67 - - *324 + - *69 + - *327 requestBody: required: true content: @@ -46771,9 +47017,9 @@ paths: description: Response content: application/json: - schema: *322 + schema: *325 examples: - default: *323 + default: *326 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46792,8 +47038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - - *67 - - *324 + - *69 + - *327 responses: '204': description: Response @@ -46816,7 +47062,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - - *67 + - *69 - name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -46870,7 +47116,7 @@ paths: subnet_id: "/subscriptions/14839728-3ad9-43ab-bd2b-fa6ad0f75e2a/resourceGroups/my-rg/providers/Microsoft.Network/virtualNetworks/my-vnet/subnets/my-subnet" region: eastus headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46900,8 +47146,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - - *67 - *69 + - *71 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -46933,13 +47179,13 @@ paths: application/json: schema: type: array - items: *325 + items: *328 examples: - default: *326 - '500': *113 + default: *329 + '500': *115 '403': *29 '404': *6 - '422': *327 + '422': *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46957,7 +47203,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-teams parameters: - - *67 + - *69 - *17 - *19 - name: team_type @@ -46979,11 +47225,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '403': *29 x-github: githubCloudOnly: false @@ -47003,7 +47249,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#create-a-team parameters: - - *67 + - *69 requestBody: required: true content: @@ -47067,7 +47313,7 @@ paths: description: Response content: application/json: - schema: &328 + schema: &331 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -47130,8 +47376,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *247 - required: *248 + properties: *250 + required: *251 nullable: true members_count: type: integer @@ -47394,7 +47640,7 @@ paths: - repos_count - organization examples: - default: &329 + default: &332 value: id: 1 node_id: MDQ6VGVhbTE= @@ -47464,16 +47710,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - - *67 - *69 + - *71 responses: '200': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 x-github: githubCloudOnly: false @@ -47494,8 +47740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - - *67 - *69 + - *71 requestBody: required: false content: @@ -47557,16 +47803,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '201': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 '422': *15 '403': *29 @@ -47591,12 +47837,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - - *67 - *69 + - *71 responses: '204': description: Response - '422': &330 + '422': &333 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -47619,8 +47865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -47630,12 +47876,12 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 - '422': *330 + Link: *61 + '422': *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47655,8 +47901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members parameters: - - *67 - *69 + - *71 - name: role description: Filters members returned by their role in the team. in: query @@ -47679,9 +47925,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47709,15 +47955,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 responses: '200': description: Response content: application/json: - schema: &331 + schema: &334 title: Team Membership description: Team Membership type: object @@ -47744,7 +47990,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &663 + response-if-user-is-a-team-maintainer: &666 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -47780,9 +48026,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 requestBody: required: false content: @@ -47807,9 +48053,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-users-membership-with-team-is-now-pending: &664 + response-if-users-membership-with-team-is-now-pending: &667 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -47844,9 +48090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - - *67 - *69 - - *63 + - *71 + - *65 responses: '204': description: Response @@ -47872,8 +48118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -47883,11 +48129,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47914,16 +48160,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &665 + schema: &668 title: Team Repository description: A team's access to a repository. type: object @@ -47946,8 +48192,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true forks: type: integer @@ -48486,10 +48732,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 requestBody: required: false content: @@ -48534,10 +48780,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - - *67 - *69 - - *332 - - *333 + - *71 + - *335 + - *336 responses: '204': description: Response @@ -48561,8 +48807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - - *67 - *69 + - *71 - *17 - *19 responses: @@ -48572,9 +48818,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - response-if-child-teams-exist: &666 + response-if-child-teams-exist: &669 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -48602,7 +48848,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos html_url: https://github.com/orgs/rails/teams/core headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48627,7 +48873,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#enable-or-disable-a-security-feature-for-an-organization parameters: - - *67 + - *69 - name: security_product in: path description: The security feature to enable or disable. @@ -48728,7 +48974,7 @@ paths: resources: type: object properties: - core: &334 + core: &337 title: Rate Limit type: object properties: @@ -48745,17 +48991,17 @@ paths: - remaining - reset - used - graphql: *334 - search: *334 - code_search: *334 - source_import: *334 - integration_manifest: *334 - code_scanning_upload: *334 - actions_runner_registration: *334 - scim: *334 - dependency_snapshots: *334 - dependency_sbom: *334 - code_scanning_autofix: *334 + graphql: *337 + search: *337 + code_search: *337 + source_import: *337 + integration_manifest: *337 + code_scanning_upload: *337 + actions_runner_registration: *337 + scim: *337 + dependency_snapshots: *337 + dependency_sbom: *337 + code_scanning_autofix: *337 required: - core - search @@ -48862,14 +49108,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *335 + schema: *338 examples: default-response: summary: Default response @@ -49374,7 +49620,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *336 + '301': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49392,8 +49638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -49684,10 +49930,10 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 - '307': &338 + default: *340 + '307': &341 description: Temporary Redirect content: application/json: @@ -49716,8 +49962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -49739,9 +49985,9 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *338 + '307': *341 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49763,11 +50009,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - - &371 + - &374 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -49790,7 +50036,7 @@ paths: type: integer artifacts: type: array - items: &339 + items: &342 title: Artifact description: An artifact type: object @@ -49868,7 +50114,7 @@ paths: - expires_at - updated_at examples: - default: &372 + default: &375 value: total_count: 2 artifacts: @@ -49907,7 +50153,7 @@ paths: head_branch: main head_sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49929,9 +50175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *332 - - *333 - - &340 + - *335 + - *336 + - &343 name: artifact_id description: The unique identifier of the artifact. in: path @@ -49943,7 +50189,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *342 examples: default: value: @@ -49981,9 +50227,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *332 - - *333 - - *340 + - *335 + - *336 + - *343 responses: '204': description: Response @@ -50007,9 +50253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *332 - - *333 - - *340 + - *335 + - *336 + - *343 - name: archive_format in: path required: true @@ -50023,7 +50269,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &532 + '410': &535 description: Gone content: application/json: @@ -50048,14 +50294,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &341 + schema: &344 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -50088,13 +50334,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *341 + schema: *344 examples: selected_actions: *42 responses: @@ -50123,14 +50369,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &342 + schema: &345 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -50163,13 +50409,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *342 + schema: *345 examples: selected_actions: *44 responses: @@ -50200,14 +50446,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *343 + schema: *346 examples: default: value: @@ -50233,11 +50479,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - - &344 + - &347 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -50265,13 +50511,13 @@ paths: - last_accessed_at - size_in_bytes default: last_accessed_at - - *53 + - *55 responses: '200': description: Response content: application/json: - schema: &345 + schema: &348 title: Repository actions caches description: Repository actions caches type: object @@ -50313,7 +50559,7 @@ paths: - total_count - actions_caches examples: - default: &346 + default: &349 value: total_count: 1 actions_caches: @@ -50325,7 +50571,7 @@ paths: created_at: '2019-01-24T22:45:36.000Z' size_in_bytes: 1024 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50345,23 +50591,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *332 - - *333 + - *335 + - *336 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *344 + - *347 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50381,8 +50627,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *332 - - *333 + - *335 + - *336 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -50413,9 +50659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *332 - - *333 - - &347 + - *335 + - *336 + - &350 name: job_id description: The unique identifier of the job. in: path @@ -50427,7 +50673,7 @@ paths: description: Response content: application/json: - schema: &375 + schema: &378 title: Job description: Information of a job execution in a workflow run type: object @@ -50734,9 +50980,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *332 - - *333 - - *347 + - *335 + - *336 + - *350 responses: '302': description: Response @@ -50764,9 +51010,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *332 - - *333 - - *347 + - *335 + - *336 + - *350 requestBody: required: false content: @@ -50787,7 +51033,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -50811,8 +51057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Status response @@ -50862,8 +51108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -50897,7 +51143,7 @@ paths: description: Empty response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -50926,8 +51172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -50945,7 +51191,7 @@ paths: type: integer secrets: type: array - items: &377 + items: &380 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -50965,7 +51211,7 @@ paths: - created_at - updated_at examples: - default: &378 + default: &381 value: total_count: 2 secrets: @@ -50976,7 +51222,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50998,9 +51244,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *332 - - *333 - - *348 + - *335 + - *336 + - *351 - *19 responses: '200': @@ -51017,7 +51263,7 @@ paths: type: integer variables: type: array - items: &381 + items: &384 title: Actions Variable type: object properties: @@ -51047,7 +51293,7 @@ paths: - created_at - updated_at examples: - default: &382 + default: &385 value: total_count: 2 variables: @@ -51060,7 +51306,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51080,8 +51326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -51090,12 +51336,12 @@ paths: schema: type: object properties: - enabled: &350 + enabled: &353 type: boolean description: Whether GitHub Actions is enabled on the repository. - allowed_actions: *138 - selected_actions_url: *349 - sha_pinning_required: *139 + allowed_actions: *141 + selected_actions_url: *352 + sha_pinning_required: *142 required: - enabled examples: @@ -51123,8 +51369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51135,9 +51381,9 @@ paths: schema: type: object properties: - enabled: *350 - allowed_actions: *138 - sha_pinning_required: *139 + enabled: *353 + allowed_actions: *141 + sha_pinning_required: *142 required: - enabled examples: @@ -51167,14 +51413,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &351 + schema: &354 type: object properties: access_level: @@ -51191,7 +51437,7 @@ paths: required: - access_level examples: - default: &352 + default: &355 value: access_level: organization x-github: @@ -51215,15 +51461,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *351 + schema: *354 examples: - default: *352 + default: *355 responses: '204': description: Response @@ -51247,14 +51493,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *353 + schema: *356 examples: default: value: @@ -51278,8 +51524,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Empty response for successful settings update @@ -51289,7 +51535,7 @@ paths: required: true content: application/json: - schema: *354 + schema: *357 examples: default: summary: Set retention days @@ -51313,16 +51559,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *140 + schema: *143 examples: - default: *355 + default: *358 '404': *6 x-github: enabledForGitHubApps: true @@ -51341,8 +51587,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51352,7 +51598,7 @@ paths: required: true content: application/json: - schema: *140 + schema: *143 examples: default: summary: Set approval policy to first time contributors @@ -51376,16 +51622,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *356 + schema: *359 examples: - default: *141 + default: *144 '403': *29 '404': *6 x-github: @@ -51405,15 +51651,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *357 + schema: *360 examples: - default: *141 + default: *144 responses: '204': description: Empty response for successful settings update @@ -51437,16 +51683,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *143 + schema: *146 examples: - default: *144 + default: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -51465,8 +51711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -51474,9 +51720,9 @@ paths: required: false content: application/json: - schema: *143 + schema: *146 examples: - selected_actions: *144 + selected_actions: *147 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -51498,16 +51744,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *358 + schema: *361 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51528,8 +51774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Success response @@ -51540,9 +51786,9 @@ paths: required: true content: application/json: - schema: *359 + schema: *362 examples: - default: *148 + default: *151 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51569,8 +51815,8 @@ paths: in: query schema: type: string - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -51588,11 +51834,11 @@ paths: type: integer runners: type: array - items: *155 + items: *158 examples: - default: *156 + default: *159 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51614,8 +51860,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -51623,9 +51869,9 @@ paths: application/json: schema: type: array - items: *360 + items: *363 examples: - default: *361 + default: *364 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51647,8 +51893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -51691,10 +51937,10 @@ paths: - no-gpu work_folder: _work responses: - '201': *362 + '201': *365 '404': *6 '422': *7 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51722,16 +51968,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: *363 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51759,16 +52005,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response content: application/json: - schema: *157 + schema: *160 examples: - default: *364 + default: *367 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51790,17 +52036,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: '200': description: Response content: application/json: - schema: *155 + schema: *158 examples: - default: *365 + default: *368 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51821,9 +52067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: '204': description: Response @@ -51849,11 +52095,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: - '200': *159 + '200': *162 '404': *6 x-github: githubCloudOnly: false @@ -51875,9 +52121,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 requestBody: required: true content: @@ -51901,7 +52147,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -51925,9 +52171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 requestBody: required: true content: @@ -51952,7 +52198,7 @@ paths: - gpu - accelerated responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -51976,11 +52222,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 + - *335 + - *336 + - *157 responses: - '200': *366 + '200': *369 '404': *6 x-github: githubCloudOnly: false @@ -52007,12 +52253,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *332 - - *333 - - *154 - - *367 + - *335 + - *336 + - *157 + - *370 responses: - '200': *159 + '200': *162 '404': *6 '422': *7 x-github: @@ -52038,9 +52284,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *332 - - *333 - - &385 + - *335 + - *336 + - &388 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -52048,7 +52294,7 @@ paths: required: false schema: type: string - - &386 + - &389 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -52056,7 +52302,7 @@ paths: required: false schema: type: string - - &387 + - &390 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -52065,7 +52311,7 @@ paths: required: false schema: type: string - - &388 + - &391 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -52092,7 +52338,7 @@ paths: - pending - *17 - *19 - - &389 + - &392 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -52101,7 +52347,7 @@ paths: schema: type: string format: date-time - - &368 + - &371 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -52110,13 +52356,13 @@ paths: schema: type: boolean default: false - - &390 + - &393 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &391 + - &394 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -52139,7 +52385,7 @@ paths: type: integer workflow_runs: type: array - items: &369 + items: &372 title: Workflow Run description: An invocation of a workflow type: object @@ -52234,7 +52480,7 @@ paths: that triggered the run. type: array nullable: true - items: *82 + items: *84 created_at: type: string format: date-time @@ -52287,7 +52533,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &413 + properties: &416 id: type: string description: SHA for the commit @@ -52338,7 +52584,7 @@ paths: - name - email nullable: true - required: &414 + required: &417 - id - tree_id - message @@ -52346,8 +52592,8 @@ paths: - author - committer nullable: true - repository: *153 - head_repository: *153 + repository: *156 + head_repository: *156 head_repository_id: type: integer example: 5 @@ -52385,7 +52631,7 @@ paths: - workflow_url - pull_requests examples: - default: &392 + default: &395 value: total_count: 1 workflow_runs: @@ -52599,7 +52845,7 @@ paths: releases_url: https://api.github.com/repos/octo-org/octo-repo/releases{/id} deployments_url: https://api.github.com/repos/octo-org/octo-repo/deployments headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52621,24 +52867,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *332 - - *333 - - &370 + - *335 + - *336 + - &373 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *368 + - *371 responses: '200': description: Response content: application/json: - schema: *369 + schema: *372 examples: - default: &373 + default: &376 value: id: 30433642 name: Build @@ -52879,9 +53125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '204': description: Response @@ -52904,9 +53150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -53025,15 +53271,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -53060,13 +53306,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 - *17 - *19 - - *371 - - *53 + - *374 + - *55 responses: '200': description: Response @@ -53082,11 +53328,11 @@ paths: type: integer artifacts: type: array - items: *339 + items: *342 examples: - default: *372 + default: *375 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53108,25 +53354,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *332 - - *333 - - *370 - - &374 + - *335 + - *336 + - *373 + - &377 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *368 + - *371 responses: '200': description: Response content: application/json: - schema: *369 + schema: *372 examples: - default: *373 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53149,10 +53395,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *332 - - *333 - - *370 - - *374 + - *335 + - *336 + - *373 + - *377 - *17 - *19 responses: @@ -53170,9 +53416,9 @@ paths: type: integer jobs: type: array - items: *375 + items: *378 examples: - default: &376 + default: &379 value: total_count: 1 jobs: @@ -53261,7 +53507,7 @@ paths: workflow_name: CI head_branch: main headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -53285,10 +53531,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *332 - - *333 - - *370 - - *374 + - *335 + - *336 + - *373 + - *377 responses: '302': description: Response @@ -53316,19 +53562,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '202': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53351,9 +53597,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: true content: @@ -53420,19 +53666,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '202': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53455,9 +53701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -53487,11 +53733,11 @@ paths: type: integer jobs: type: array - items: *375 + items: *378 examples: - default: *376 + default: *379 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53514,9 +53760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '302': description: Response @@ -53543,14 +53789,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '204': description: Response '403': *29 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53572,9 +53818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -53634,7 +53880,7 @@ paths: items: type: object properties: - type: &498 + type: &501 type: string description: The type of reviewer. enum: @@ -53644,7 +53890,7 @@ paths: reviewer: anyOf: - *4 - - *190 + - *193 required: - environment - wait_timer @@ -53719,9 +53965,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: true content: @@ -53768,12 +54014,12 @@ paths: application/json: schema: type: array - items: &493 + items: &496 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &737 + properties: &740 url: type: string format: uri @@ -53856,9 +54102,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - required: &738 + properties: *74 + required: *75 + required: &741 - id - node_id - sha @@ -53874,7 +54120,7 @@ paths: - created_at - updated_at examples: - default: &494 + default: &497 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -53930,9 +54176,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: false content: @@ -53953,7 +54199,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -53976,9 +54222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 requestBody: required: false content: @@ -53999,7 +54245,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54031,9 +54277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *332 - - *333 - - *370 + - *335 + - *336 + - *373 responses: '200': description: Response @@ -54170,8 +54416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -54189,11 +54435,11 @@ paths: type: integer secrets: type: array - items: *377 + items: *380 examples: - default: *378 + default: *381 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54216,16 +54462,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: - default: *380 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54247,17 +54493,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: &511 + default: &514 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -54283,9 +54529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -54316,7 +54562,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54342,9 +54588,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -54369,9 +54615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *332 - - *333 - - *348 + - *335 + - *336 + - *351 - *19 responses: '200': @@ -54388,11 +54634,11 @@ paths: type: integer variables: type: array - items: *381 + items: *384 examples: - default: *382 + default: *385 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54413,8 +54659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -54441,7 +54687,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -54466,17 +54712,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: &512 + default: &515 value: name: USERNAME value: octocat @@ -54502,9 +54748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 requestBody: required: true content: @@ -54546,9 +54792,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *332 - - *333 - - *164 + - *335 + - *336 + - *167 responses: '204': description: Response @@ -54573,8 +54819,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -54592,7 +54838,7 @@ paths: type: integer workflows: type: array - items: &383 + items: &386 title: Workflow description: A GitHub Actions workflow type: object @@ -54676,7 +54922,7 @@ paths: html_url: https://github.com/octo-org/octo-repo/blob/master/.github/workflows/269289 badge_url: https://github.com/octo-org/octo-repo/workflows/Linter/badge.svg headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54699,9 +54945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *332 - - *333 - - &384 + - *335 + - *336 + - &387 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -54716,7 +54962,7 @@ paths: description: Response content: application/json: - schema: *383 + schema: *386 examples: default: value: @@ -54749,9 +54995,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '204': description: Response @@ -54776,9 +55022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '200': description: Response including the workflow run ID and URLs when `return_run_details` @@ -54859,9 +55105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '204': description: Response @@ -54888,19 +55134,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *332 - - *333 - - *384 - - *385 - - *386 + - *335 + - *336 - *387 - *388 - - *17 - - *19 - *389 - - *368 - *390 - *391 + - *17 + - *19 + - *392 + - *371 + - *393 + - *394 responses: '200': description: Response @@ -54916,11 +55162,11 @@ paths: type: integer workflow_runs: type: array - items: *369 + items: *372 examples: - default: *392 + default: *395 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54950,9 +55196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *332 - - *333 - - *384 + - *335 + - *336 + - *387 responses: '200': description: Response @@ -55013,12 +55259,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *332 - - *333 - - *53 + - *335 + - *336 + - *55 - *17 - - *45 - - *46 + - *47 + - *48 - name: ref description: |- The Git reference for the activities you want to list. @@ -55159,7 +55405,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '422': *7 x-github: githubCloudOnly: false @@ -55178,8 +55424,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -55191,9 +55437,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -55216,8 +55462,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *332 - - *333 + - *335 + - *336 - name: assignee in: path required: true @@ -55253,8 +55499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -55366,11 +55612,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *332 - - *333 + - *335 + - *336 - *17 - - *45 - - *46 + - *47 + - *48 - name: subject_digest description: The parameter should be set to the attestation's subject's SHA256 digest, in the form `sha256:HEX_DIGEST`. @@ -55408,7 +55654,7 @@ paths: initiator: type: string examples: - default: *393 + default: *396 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55428,8 +55674,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -55437,7 +55683,7 @@ paths: application/json: schema: type: array - items: &394 + items: &397 title: Autolink reference description: An autolink reference. type: object @@ -55491,8 +55737,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -55531,9 +55777,9 @@ paths: description: response content: application/json: - schema: *394 + schema: *397 examples: - default: &395 + default: &398 value: id: 1 key_prefix: TICKET- @@ -55564,9 +55810,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *332 - - *333 - - &396 + - *335 + - *336 + - &399 name: autolink_id description: The unique identifier of the autolink. in: path @@ -55578,9 +55824,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *397 examples: - default: *395 + default: *398 '404': *6 x-github: githubCloudOnly: false @@ -55600,9 +55846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *332 - - *333 - - *396 + - *335 + - *336 + - *399 responses: '204': description: Response @@ -55626,8 +55872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response if Dependabot is enabled @@ -55675,8 +55921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -55697,8 +55943,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -55718,8 +55964,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *332 - - *333 + - *335 + - *336 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -55757,7 +56003,7 @@ paths: - url protected: type: boolean - protection: &398 + protection: &401 title: Branch Protection description: Branch Protection type: object @@ -55799,7 +56045,7 @@ paths: required: - contexts - checks - enforce_admins: &401 + enforce_admins: &404 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -55814,7 +56060,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &403 + required_pull_request_reviews: &406 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -55835,7 +56081,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *190 + items: *193 apps: description: The list of apps with review dismissal access. @@ -55864,7 +56110,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *190 + items: *193 apps: description: The list of apps allowed to bypass pull request requirements. @@ -55890,7 +56136,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &400 + restrictions: &403 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -55953,7 +56199,7 @@ paths: type: string teams: type: array - items: *190 + items: *193 apps: type: array items: @@ -56149,7 +56395,7 @@ paths: - linter protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -56167,9 +56413,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *332 - - *333 - - &399 + - *335 + - *336 + - &402 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -56183,14 +56429,14 @@ paths: description: Response content: application/json: - schema: &409 + schema: &412 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &466 + commit: &469 title: Commit description: Commit type: object @@ -56224,7 +56470,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &397 + properties: &400 name: type: string example: '"Chris Wanstrath"' @@ -56240,7 +56486,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true message: type: string @@ -56261,7 +56507,7 @@ paths: required: - sha - url - verification: &518 + verification: &521 title: Verification type: object properties: @@ -56295,12 +56541,12 @@ paths: nullable: true oneOf: - *4 - - *162 + - *165 committer: nullable: true oneOf: - *4 - - *162 + - *165 parents: type: array items: @@ -56331,7 +56577,7 @@ paths: type: integer files: type: array - items: &479 + items: &482 title: Diff Entry description: Diff Entry type: object @@ -56415,7 +56661,7 @@ paths: - self protected: type: boolean - protection: *398 + protection: *401 protection_url: type: string format: uri @@ -56522,7 +56768,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *336 + '301': *339 '404': *6 x-github: githubCloudOnly: false @@ -56544,15 +56790,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: default: value: @@ -56746,9 +56992,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -57003,7 +57249,7 @@ paths: url: type: string format: uri - required_status_checks: &406 + required_status_checks: &409 title: Status Check Policy description: Status Check Policy type: object @@ -57079,7 +57325,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 apps: type: array items: *5 @@ -57097,7 +57343,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 apps: type: array items: *5 @@ -57155,7 +57401,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *400 + restrictions: *403 required_conversation_resolution: type: object properties: @@ -57267,9 +57513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57294,17 +57540,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &402 + default: &405 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -57326,17 +57572,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *402 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57355,9 +57601,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57382,17 +57628,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: &404 + default: &407 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -57488,9 +57734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -57588,9 +57834,9 @@ paths: description: Response content: application/json: - schema: *403 + schema: *406 examples: - default: *404 + default: *407 '422': *15 x-github: githubCloudOnly: false @@ -57611,9 +57857,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57640,17 +57886,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: &405 + default: &408 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -57673,17 +57919,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *401 + schema: *404 examples: - default: *405 + default: *408 '404': *6 x-github: githubCloudOnly: false @@ -57703,9 +57949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57730,17 +57976,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *406 + schema: *409 examples: - default: &407 + default: &410 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -57766,9 +58012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -57820,9 +58066,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *409 examples: - default: *407 + default: *410 '404': *6 '422': *15 x-github: @@ -57844,9 +58090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -57870,9 +58116,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -57906,9 +58152,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -57975,9 +58221,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58041,9 +58287,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: content: application/json: @@ -58109,15 +58355,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response content: application/json: - schema: *400 + schema: *403 examples: default: value: @@ -58208,9 +58454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '204': description: Response @@ -58233,9 +58479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58245,7 +58491,7 @@ paths: type: array items: *5 examples: - default: &408 + default: &411 value: - id: 1 slug: octoapp @@ -58302,9 +58548,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58338,7 +58584,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58359,9 +58605,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58395,7 +58641,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58416,9 +58662,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58452,7 +58698,7 @@ paths: type: array items: *5 examples: - default: *408 + default: *411 '422': *15 x-github: githubCloudOnly: false @@ -58474,9 +58720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58484,9 +58730,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '404': *6 x-github: githubCloudOnly: false @@ -58506,9 +58752,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58544,9 +58790,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -58567,9 +58813,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: false content: @@ -58605,9 +58851,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -58628,9 +58874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: content: application/json: @@ -58665,9 +58911,9 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -58689,9 +58935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 responses: '200': description: Response @@ -58701,7 +58947,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '404': *6 x-github: githubCloudOnly: false @@ -58725,9 +58971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58760,7 +59006,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -58785,9 +59031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58820,7 +59066,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -58845,9 +59091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58880,7 +59126,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '422': *15 x-github: githubCloudOnly: false @@ -58907,9 +59153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 requestBody: required: true content: @@ -58931,7 +59177,7 @@ paths: description: Response content: application/json: - schema: *409 + schema: *412 examples: default: value: @@ -59047,8 +59293,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -59327,7 +59573,7 @@ paths: description: Response content: application/json: - schema: &410 + schema: &413 title: CheckRun description: A check performed on the code of a given code change type: object @@ -59438,16 +59684,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *82 - deployment: &730 + items: *84 + deployment: &733 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -59514,8 +59760,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -59727,9 +59973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *332 - - *333 - - &411 + - *335 + - *336 + - &414 name: check_run_id description: The unique identifier of the check run. in: path @@ -59741,9 +59987,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *413 examples: - default: &412 + default: &415 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -59843,9 +60089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 requestBody: required: true content: @@ -60085,9 +60331,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *413 examples: - default: *412 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60107,9 +60353,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 - *17 - *19 responses: @@ -60184,7 +60430,7 @@ paths: raw_details: Do you mean 'bananas' or 'banana'? blob_href: https://api.github.com/repos/github/rest-api-description/git/blobs/abc headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60204,15 +60450,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *332 - - *333 - - *411 + - *335 + - *336 + - *414 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -60250,8 +60496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -60273,7 +60519,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &415 + schema: &418 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -60337,7 +60583,7 @@ paths: nullable: true pull_requests: type: array - items: *82 + items: *84 nullable: true app: title: GitHub app @@ -60348,9 +60594,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - repository: *153 + properties: *74 + required: *75 + repository: *156 created_at: type: string format: date-time @@ -60359,12 +60605,12 @@ paths: type: string format: date-time nullable: true - head_commit: &758 + head_commit: &761 title: Simple Commit description: A commit. type: object - properties: *413 - required: *414 + properties: *416 + required: *417 latest_check_runs_count: type: integer check_runs_url: @@ -60392,7 +60638,7 @@ paths: - check_runs_url - pull_requests examples: - default: &416 + default: &419 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -60683,9 +60929,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *415 + schema: *418 examples: - default: *416 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60704,8 +60950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -60766,7 +61012,7 @@ paths: required: - app_id - setting - repository: *153 + repository: *156 examples: default: value: @@ -61014,9 +61260,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *332 - - *333 - - &417 + - *335 + - *336 + - &420 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -61028,9 +61274,9 @@ paths: description: Response content: application/json: - schema: *415 + schema: *418 examples: - default: *416 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61053,17 +61299,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *332 - - *333 - - *417 - - &472 + - *335 + - *336 + - *420 + - &475 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &473 + - &476 name: status description: Returns check runs with the specified `status`. in: query @@ -61102,9 +61348,9 @@ paths: type: integer check_runs: type: array - items: *410 + items: *413 examples: - default: &474 + default: &477 value: total_count: 1 check_runs: @@ -61186,7 +61432,7 @@ paths: url: https://api.github.com/repos/github/hello-world name: hello-world headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61206,15 +61452,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *332 - - *333 - - *417 + - *335 + - *336 + - *420 responses: '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -61241,30 +61487,30 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *332 - - *333 - - *418 - - *419 + - *335 + - *336 + - *421 + - *422 - *19 - *17 - - &436 + - &439 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *420 - - &437 + schema: *423 + - &440 name: pr description: The number of the pull request for the results you want to list. in: query required: false schema: type: integer - - *53 - - *45 - - *46 + - *55 + - *47 + - *48 - name: sort description: The property by which to sort the results. in: query @@ -61280,13 +61526,13 @@ paths: be returned. in: query required: false - schema: *421 + schema: *424 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *422 + schema: *425 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -61305,14 +61551,14 @@ paths: items: type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: *423 - state: *180 - fixed_at: *176 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: *426 + state: *183 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -61320,12 +61566,12 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: *424 - dismissed_comment: *425 - rule: *426 - tool: *427 - most_recent_instance: *428 + dismissed_at: *180 + dismissed_reason: *427 + dismissed_comment: *428 + rule: *429 + tool: *430 + most_recent_instance: *431 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -61451,14 +61697,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &429 + '403': &432 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61478,9 +61724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *332 - - *333 - - &430 + - *335 + - *336 + - &433 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -61488,23 +61734,23 @@ paths: field in the response from the `GET /repos/{owner}/{repo}/code-scanning/alerts` operation. required: true - schema: *171 + schema: *174 responses: '200': description: Response content: application/json: - schema: &431 + schema: &434 type: object properties: - number: *171 - created_at: *172 - updated_at: *173 - url: *174 - html_url: *175 - instances_url: *423 - state: *180 - fixed_at: *176 + number: *174 + created_at: *175 + updated_at: *176 + url: *177 + html_url: *178 + instances_url: *426 + state: *183 + fixed_at: *179 dismissed_by: title: Simple User description: A GitHub user. @@ -61512,9 +61758,9 @@ paths: properties: *20 required: *21 nullable: true - dismissed_at: *177 - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_at: *180 + dismissed_reason: *427 + dismissed_comment: *428 rule: type: object properties: @@ -61568,8 +61814,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *427 - most_recent_instance: *428 + tool: *430 + most_recent_instance: *431 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -61668,9 +61914,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61688,9 +61934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: true content: @@ -61705,8 +61951,8 @@ paths: enum: - open - dismissed - dismissed_reason: *424 - dismissed_comment: *425 + dismissed_reason: *427 + dismissed_comment: *428 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -61734,7 +61980,7 @@ paths: description: Response content: application/json: - schema: *431 + schema: *434 examples: default: value: @@ -61810,14 +62056,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &435 + '403': &438 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -61837,15 +62083,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 responses: '200': description: Response content: application/json: - schema: &432 + schema: &435 type: object properties: status: @@ -61871,13 +62117,13 @@ paths: - description - started_at examples: - default: &433 + default: &436 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &434 + '400': &437 description: Bad Request content: application/json: @@ -61888,9 +62134,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61913,29 +62159,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 responses: '200': description: OK content: application/json: - schema: *432 + schema: *435 examples: - default: *433 + default: *436 '202': description: Accepted content: application/json: - schema: *432 + schema: *435 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *434 + '400': *437 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -61945,7 +62191,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61967,9 +62213,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: false content: @@ -62014,12 +62260,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *434 - '403': *435 + '400': *437 + '403': *438 '404': *6 '422': description: Unprocessable Entity - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62039,13 +62285,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 - *19 - *17 - - *436 - - *437 + - *439 + - *440 responses: '200': description: Response @@ -62056,10 +62302,10 @@ paths: items: type: object properties: - ref: *420 - analysis_key: *438 - environment: *439 - category: *440 + ref: *423 + analysis_key: *441 + environment: *442 + category: *443 state: type: string description: State of a code scanning alert instance. @@ -62074,7 +62320,7 @@ paths: properties: text: type: string - location: *441 + location: *444 html_url: type: string classifications: @@ -62082,7 +62328,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *442 + items: *445 examples: default: value: @@ -62119,9 +62365,9 @@ paths: end_column: 50 classifications: - source - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62153,29 +62399,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *332 - - *333 - - *418 - - *419 + - *335 + - *336 + - *421 + - *422 - *19 - *17 - - *437 + - *440 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *420 + schema: *423 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &443 + schema: &446 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 - - *53 + - *55 - name: sort description: The property by which to sort the results. in: query @@ -62192,23 +62438,23 @@ paths: application/json: schema: type: array - items: &444 + items: &447 type: object properties: - ref: *420 - commit_sha: &452 + ref: *423 + commit_sha: &455 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *438 + analysis_key: *441 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *440 + category: *443 error: type: string example: error reading field xyz @@ -62232,8 +62478,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *443 - tool: *427 + sarif_id: *446 + tool: *430 deletable: type: boolean warning: @@ -62294,9 +62540,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62330,8 +62576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62344,7 +62590,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *447 examples: response: summary: application/json response @@ -62398,14 +62644,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *429 + '403': *432 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62485,8 +62731,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -62539,9 +62785,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *435 + '403': *438 '404': *6 - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -62561,8 +62807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -62570,7 +62816,7 @@ paths: application/json: schema: type: array - items: &445 + items: &448 title: CodeQL Database description: A CodeQL database. type: object @@ -62681,9 +62927,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62710,8 +62956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: language in: path description: The language of the CodeQL database. @@ -62723,7 +62969,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: default: value: @@ -62755,11 +63001,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &481 + '302': &484 description: Found - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62779,8 +63025,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *332 - - *333 + - *335 + - *336 - name: language in: path description: The language of the CodeQL database. @@ -62790,9 +63036,9 @@ paths: responses: '204': description: Response - '403': *435 + '403': *438 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62818,8 +63064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -62828,7 +63074,7 @@ paths: type: object additionalProperties: false properties: - language: &446 + language: &449 type: string description: The language targeted by the CodeQL query enum: @@ -62908,7 +63154,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &450 + schema: &453 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -62916,9 +63162,9 @@ paths: id: type: integer description: The ID of the variant analysis. - controller_repo: *58 + controller_repo: *60 actor: *4 - query_language: *446 + query_language: *449 query_pack_url: type: string description: The download url for the query pack. @@ -62965,7 +63211,7 @@ paths: items: type: object properties: - repository: &447 + repository: &450 title: Repository Identifier description: Repository Identifier type: object @@ -63001,7 +63247,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &451 + analysis_status: &454 type: string description: The new status of the CodeQL variant analysis repository task. @@ -63033,7 +63279,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &448 + access_mismatch_repos: &451 type: object properties: repository_count: @@ -63047,7 +63293,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *447 + items: *450 required: - repository_count - repositories @@ -63069,8 +63315,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *448 - over_limit_repos: *448 + no_codeql_db_repos: *451 + over_limit_repos: *451 required: - access_mismatch_repos - not_found_repos @@ -63086,7 +63332,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &449 + value: &452 summary: Default response value: id: 1 @@ -63232,17 +63478,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *449 + value: *452 repository_lists: summary: Response for a successful variant analysis submission - value: *449 + value: *452 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63263,8 +63509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *332 - - *333 + - *335 + - *336 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -63276,11 +63522,11 @@ paths: description: Response content: application/json: - schema: *450 + schema: *453 examples: - default: *449 + default: *452 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63301,7 +63547,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *332 + - *335 - name: repo in: path description: The name of the controller repository. @@ -63335,8 +63581,8 @@ paths: schema: type: object properties: - repository: *58 - analysis_status: *451 + repository: *60 + analysis_status: *454 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -63440,7 +63686,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63461,8 +63707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -63545,9 +63791,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *429 + '403': *432 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63566,8 +63812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -63634,7 +63880,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -63659,7 +63905,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *435 + '403': *438 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -63673,7 +63919,7 @@ paths: content: application/json: schema: *3 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63730,8 +63976,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -63739,7 +63985,7 @@ paths: schema: type: object properties: - commit_sha: *452 + commit_sha: *455 ref: type: string description: |- @@ -63797,7 +64043,7 @@ paths: schema: type: object properties: - id: *443 + id: *446 url: type: string description: The REST API URL for checking the status of the upload. @@ -63811,11 +64057,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *435 + '403': *438 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63834,8 +64080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *332 - - *333 + - *335 + - *336 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -63881,10 +64127,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *429 + '403': *432 '404': description: Not Found if the sarif id does not match any upload - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -63906,8 +64152,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -63931,7 +64177,7 @@ paths: - failed - updating - removed_by_enterprise - configuration: *47 + configuration: *49 examples: default: value: @@ -63963,7 +64209,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *184 + '204': *187 '304': *37 '403': *29 '404': *6 @@ -63988,8 +64234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -64109,8 +64355,8 @@ paths: parameters: - *17 - *19 - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -64126,7 +64372,7 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: default: value: @@ -64402,7 +64648,7 @@ paths: start_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/start stop_url: https://api.github.com/user/codespaces/monalisa-octocat-hello-world-3f89ada1j3/stop recent_folders: [] - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -64424,8 +64670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -64488,22 +64734,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -64527,8 +64773,8 @@ paths: parameters: - *17 - *19 - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -64568,7 +64814,7 @@ paths: - path: ".devcontainer.json" display_name: Default project configuration total_count: 3 - '500': *113 + '500': *115 '400': *14 '401': *25 '403': *29 @@ -64592,8 +64838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -64628,14 +64874,14 @@ paths: type: integer machines: type: array - items: &672 + items: &675 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *454 - required: *455 + properties: *457 + required: *458 examples: - default: &673 + default: &676 value: total_count: 2 machines: @@ -64652,7 +64898,7 @@ paths: memory_in_bytes: 34359738368 cpus: 8 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -64675,8 +64921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -64760,8 +65006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -64806,7 +65052,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64827,8 +65073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -64846,7 +65092,7 @@ paths: type: integer secrets: type: array - items: &459 + items: &462 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -64866,9 +65112,9 @@ paths: - created_at - updated_at examples: - default: *456 + default: *459 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64889,16 +65135,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *457 + schema: *460 examples: - default: *458 + default: *461 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -64918,17 +65164,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: *460 + default: *463 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64948,9 +65194,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -64978,7 +65224,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -65002,9 +65248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -65032,8 +65278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *332 - - *333 + - *335 + - *336 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -65075,7 +65321,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &461 + properties: &464 login: type: string example: octocat @@ -65168,7 +65414,7 @@ paths: user_view_type: type: string example: public - required: &462 + required: &465 - avatar_url - events_url - followers_url @@ -65217,7 +65463,7 @@ paths: admin: false role_name: write headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -65242,9 +65488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '204': description: Response if user is a collaborator @@ -65290,9 +65536,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 requestBody: required: false content: @@ -65318,7 +65564,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &531 + schema: &534 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -65329,7 +65575,7 @@ paths: example: 42 type: integer format: int64 - repository: *153 + repository: *156 invitee: title: Simple User description: A GitHub user. @@ -65507,7 +65753,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *122 + schema: *124 '403': *29 x-github: triggersNotification: true @@ -65547,9 +65793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '204': description: No Content when collaborator was removed from the repository. @@ -65580,9 +65826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *332 - - *333 - - *63 + - *335 + - *336 + - *65 responses: '200': description: if user has admin permissions @@ -65602,8 +65848,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *461 - required: *462 + properties: *464 + required: *465 nullable: true required: - permission @@ -65658,8 +65904,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -65669,7 +65915,7 @@ paths: application/json: schema: type: array - items: &463 + items: &466 title: Commit Comment description: Commit Comment type: object @@ -65710,8 +65956,8 @@ paths: updated_at: type: string format: date-time - author_association: *74 - reactions: *75 + author_association: *76 + reactions: *77 required: - url - html_url @@ -65727,7 +65973,7 @@ paths: - created_at - updated_at examples: - default: &468 + default: &471 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -65761,7 +66007,7 @@ paths: updated_at: '2011-04-14T16:00:49Z' author_association: COLLABORATOR headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65786,17 +66032,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *463 + schema: *466 examples: - default: &469 + default: &472 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -65853,9 +66099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -65877,7 +66123,7 @@ paths: description: Response content: application/json: - schema: *463 + schema: *466 examples: default: value: @@ -65928,9 +66174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -65951,9 +66197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a commit comment. @@ -65979,7 +66225,7 @@ paths: application/json: schema: type: array - items: &464 + items: &467 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -66022,7 +66268,7 @@ paths: - content - created_at examples: - default: &535 + default: &538 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -66048,7 +66294,7 @@ paths: content: heart created_at: '2016-05-20T20:09:31Z' headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -66067,9 +66313,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -66101,9 +66347,9 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: &465 + default: &468 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -66132,9 +66378,9 @@ paths: description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -66156,10 +66402,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *332 - - *333 - - *93 - - &536 + - *335 + - *336 + - *95 + - &539 name: reaction_id description: The unique identifier of the reaction. in: path @@ -66214,8 +66460,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *332 - - *333 + - *335 + - *336 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -66271,9 +66517,9 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: &586 + default: &589 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -66343,11 +66589,11 @@ paths: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e headers: - Link: *59 - '500': *113 + Link: *61 + '500': *115 '400': *14 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66367,9 +66613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *332 - - *333 - - &467 + - *335 + - *336 + - &470 name: commit_sha description: The SHA of the commit. in: path @@ -66416,7 +66662,7 @@ paths: url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc protected: false '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66441,9 +66687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 - *17 - *19 responses: @@ -66453,11 +66699,11 @@ paths: application/json: schema: type: array - items: *463 + items: *466 examples: - default: *468 + default: *471 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66483,9 +66729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 requestBody: required: true content: @@ -66520,9 +66766,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *466 examples: - default: *469 + default: *472 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -66550,9 +66796,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 - *17 - *19 responses: @@ -66562,9 +66808,9 @@ paths: application/json: schema: type: array - items: *470 + items: *473 examples: - default: &578 + default: &581 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -67043,8 +67289,8 @@ paths: auto_merge: draft: false headers: - Link: *59 - '409': *52 + Link: *61 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67101,11 +67347,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 - - &471 + - &474 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -67120,9 +67366,9 @@ paths: description: Response content: application/json: - schema: *466 + schema: *469 examples: - default: &565 + default: &568 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -67208,9 +67454,9 @@ paths: ..... '422': *15 '404': *6 - '500': *113 - '503': *114 - '409': *52 + '500': *115 + '503': *116 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67235,11 +67481,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *332 - - *333 - - *471 - - *472 - - *473 + - *335 + - *336 + - *474 + - *475 + - *476 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -67273,11 +67519,11 @@ paths: type: integer check_runs: type: array - items: *410 + items: *413 examples: - default: *474 + default: *477 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67300,9 +67546,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -67310,7 +67556,7 @@ paths: schema: type: integer example: 1 - - *472 + - *475 - *17 - *19 responses: @@ -67328,7 +67574,7 @@ paths: type: integer check_suites: type: array - items: *415 + items: *418 examples: default: value: @@ -67503,7 +67749,7 @@ paths: latest_check_runs_count: 1 check_runs_url: https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67528,9 +67774,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - *17 - *19 responses: @@ -67597,7 +67843,7 @@ paths: type: string total_count: type: integer - repository: *153 + repository: *156 commit_url: type: string format: uri @@ -67728,9 +67974,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *332 - - *333 - - *471 + - *335 + - *336 + - *474 - *17 - *19 responses: @@ -67740,7 +67986,7 @@ paths: application/json: schema: type: array - items: &651 + items: &654 title: Status description: The status of a commit. type: object @@ -67820,8 +68066,8 @@ paths: type: User site_admin: false headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67849,8 +68095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -67879,20 +68125,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *475 - required: *476 + properties: *478 + required: *479 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &477 + properties: &480 url: type: string format: uri html_url: type: string format: uri - required: &478 + required: &481 - url - html_url nullable: true @@ -67900,32 +68146,32 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true contributing: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true readme: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true issue_template: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true pull_request_template: title: Community Health File type: object - properties: *477 - required: *478 + properties: *480 + required: *481 nullable: true required: - code_of_conduct @@ -68052,8 +68298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 - name: basehead @@ -68096,8 +68342,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *466 - merge_base_commit: *466 + base_commit: *469 + merge_base_commit: *469 status: type: string enum: @@ -68117,10 +68363,10 @@ paths: example: 6 commits: type: array - items: *466 + items: *469 files: type: array - items: *479 + items: *482 required: - url - html_url @@ -68363,8 +68609,8 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68406,8 +68652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -68567,7 +68813,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &480 + response-if-content-is-a-file-github-object: &483 summary: Response if content is a file value: type: file @@ -68699,7 +68945,7 @@ paths: - size - type - url - - &591 + - &594 title: Content File description: Content File type: object @@ -68900,7 +69146,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *480 + response-if-content-is-a-file: *483 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -68969,7 +69215,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *481 + '302': *484 '304': *37 x-github: githubCloudOnly: false @@ -68992,8 +69238,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -69086,7 +69332,7 @@ paths: description: Response content: application/json: - schema: &482 + schema: &485 title: File Commit description: File Commit type: object @@ -69238,7 +69484,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: example-for-creating-a-file: value: @@ -69292,7 +69538,7 @@ paths: schema: oneOf: - *3 - - &513 + - &516 description: Repository rule violation was detected type: object properties: @@ -69313,7 +69559,7 @@ paths: items: type: object properties: - placeholder_id: &643 + placeholder_id: &646 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -69345,8 +69591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *332 - - *333 + - *335 + - *336 - name: path description: path parameter in: path @@ -69407,7 +69653,7 @@ paths: description: Response content: application/json: - schema: *482 + schema: *485 examples: default: value: @@ -69441,8 +69687,8 @@ paths: verified_at: '422': *15 '404': *6 - '409': *52 - '503': *114 + '409': *54 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69462,8 +69708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *332 - - *333 + - *335 + - *336 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -69563,7 +69809,7 @@ paths: site_admin: false contributions: 32 headers: - Link: *59 + Link: *61 '204': description: Response if repository is empty '403': *29 @@ -69586,26 +69832,26 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *332 - - *333 - - *191 - - *192 - - *193 + - *335 + - *336 - *194 + - *195 + - *196 + - *197 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *195 - - *483 - - *196 - - *197 - *198 - - *53 - - *45 - - *46 + - *486 + - *199 + - *200 + - *201 + - *55 + - *47 + - *48 - *17 responses: '200': @@ -69614,11 +69860,11 @@ paths: application/json: schema: type: array - items: &487 + items: &490 type: object description: A Dependabot alert. properties: - number: *171 + number: *174 state: type: string description: The state of the Dependabot alert. @@ -69633,7 +69879,7 @@ paths: description: Details for the vulnerable dependency. readOnly: true properties: - package: *54 + package: *56 manifest_path: type: string description: The full path to the dependency manifest file, @@ -69660,13 +69906,13 @@ paths: - unknown - direct - transitive - security_advisory: *484 - security_vulnerability: *57 - url: *174 - html_url: *175 - created_at: *172 - updated_at: *173 - dismissed_at: *177 + security_advisory: *487 + security_vulnerability: *59 + url: *177 + html_url: *178 + created_at: *175 + updated_at: *176 + dismissed_at: *180 dismissed_by: title: Simple User description: A GitHub user. @@ -69690,9 +69936,9 @@ paths: dismissal. nullable: true maxLength: 280 - fixed_at: *176 - auto_dismissed_at: *485 - dismissal_request: *486 + fixed_at: *179 + auto_dismissed_at: *488 + dismissal_request: *489 assignees: type: array description: The users assigned to this alert. @@ -69947,9 +70193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *332 - - *333 - - &488 + - *335 + - *336 + - &491 name: alert_number in: path description: |- @@ -69958,13 +70204,13 @@ paths: or in `number` fields in the response from the `GET /repos/{owner}/{repo}/dependabot/alerts` operation. required: true - schema: *171 + schema: *174 responses: '200': description: Response content: application/json: - schema: *487 + schema: *490 examples: default: value: @@ -70096,9 +70342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *332 - - *333 - - *488 + - *335 + - *336 + - *491 requestBody: required: true content: @@ -70154,7 +70400,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *490 examples: default: value: @@ -70261,7 +70507,7 @@ paths: '400': *14 '403': *29 '404': *6 - '409': *52 + '409': *54 '422': *7 x-github: githubCloudOnly: false @@ -70284,8 +70530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -70303,7 +70549,7 @@ paths: type: integer secrets: type: array - items: &491 + items: &494 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -70334,7 +70580,7 @@ paths: created_at: '2020-01-10T10:59:22Z' updated_at: '2020-01-11T11:59:22Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70356,16 +70602,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *489 + schema: *492 examples: - default: *490 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70385,15 +70631,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '200': description: Response content: application/json: - schema: *491 + schema: *494 examples: default: value: @@ -70419,9 +70665,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 requestBody: required: true content: @@ -70449,7 +70695,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -70473,9 +70719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *332 - - *333 - - *161 + - *335 + - *336 + - *164 responses: '204': description: Response @@ -70497,8 +70743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *332 - - *333 + - *335 + - *336 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -70634,7 +70880,7 @@ paths: advisory_summary: Ruby OpenID advisory_url: https://github.com/advisories/GHSA-fqfj-cmh6-hj49 headers: - Link: *59 + Link: *61 '404': *6 '403': description: Response for a private repository when GitHub Advanced Security @@ -70658,8 +70904,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -70875,7 +71121,7 @@ paths: spdxElementId: SPDXRef-DOCUMENT relatedSpdxElement: SPDXRef-Repository headers: - Link: *59 + Link: *61 '404': *6 '403': *29 x-github: @@ -70898,8 +71144,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -70974,7 +71220,7 @@ paths: - version - url additionalProperties: false - metadata: &492 + metadata: &495 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -71007,7 +71253,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *492 + metadata: *495 resolved: type: object description: A collection of resolved package dependencies. @@ -71020,7 +71266,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *492 + metadata: *495 relationship: type: string description: A notation of whether a dependency is requested @@ -71149,8 +71395,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *332 - - *333 + - *335 + - *336 - name: sha description: The SHA recorded at creation time. in: query @@ -71190,11 +71436,11 @@ paths: application/json: schema: type: array - items: *493 + items: *496 examples: - default: *494 + default: *497 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71258,8 +71504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -71340,7 +71586,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *496 examples: simple-example: summary: Simple example @@ -71413,9 +71659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *332 - - *333 - - &495 + - *335 + - *336 + - &498 name: deployment_id description: deployment_id parameter in: path @@ -71427,7 +71673,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *496 examples: default: value: @@ -71492,9 +71738,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 responses: '204': description: Response @@ -71516,9 +71762,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 - *17 - *19 responses: @@ -71528,7 +71774,7 @@ paths: application/json: schema: type: array - items: &496 + items: &499 title: Deployment Status description: The status of a deployment. type: object @@ -71619,8 +71865,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -71669,7 +71915,7 @@ paths: environment_url: https://test-branch.lab.acme.com log_url: https://example.com/deployment/42/output headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -71689,9 +71935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 requestBody: required: true content: @@ -71766,9 +72012,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: &497 + default: &500 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -71824,9 +72070,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *332 - - *333 - - *495 + - *335 + - *336 + - *498 - name: status_id in: path required: true @@ -71837,9 +72083,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: *497 + default: *500 '404': *6 x-github: githubCloudOnly: false @@ -71864,8 +72110,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -71922,8 +72168,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -71940,7 +72186,7 @@ paths: type: integer environments: type: array - items: &499 + items: &502 title: Environment description: Details of a deployment environment type: object @@ -71992,7 +72238,7 @@ paths: type: type: string example: wait_timer - wait_timer: &501 + wait_timer: &504 type: integer example: 30 description: The amount of time to delay a job after @@ -72029,11 +72275,11 @@ paths: items: type: object properties: - type: *498 + type: *501 reviewer: anyOf: - *4 - - *190 + - *193 required: - id - node_id @@ -72053,7 +72299,7 @@ paths: - id - node_id - type - deployment_branch_policy: &502 + deployment_branch_policy: &505 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -72169,9 +72415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *332 - - *333 - - &500 + - *335 + - *336 + - &503 name: environment_name in: path required: true @@ -72184,9 +72430,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: &503 + default: &506 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -72270,9 +72516,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: false content: @@ -72281,7 +72527,7 @@ paths: type: object nullable: true properties: - wait_timer: *501 + wait_timer: *504 prevent_self_review: type: boolean example: false @@ -72298,13 +72544,13 @@ paths: items: type: object properties: - type: *498 + type: *501 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *502 + deployment_branch_policy: *505 additionalProperties: false examples: default: @@ -72324,9 +72570,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *502 examples: - default: *503 + default: *506 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -72350,9 +72596,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 responses: '204': description: Default response @@ -72377,9 +72623,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 - *17 - *19 responses: @@ -72397,7 +72643,7 @@ paths: example: 2 branch_policies: type: array - items: &504 + items: &507 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -72454,9 +72700,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: true content: @@ -72502,9 +72748,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - example-wildcard: &505 + example-wildcard: &508 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -72546,10 +72792,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - &506 + - *335 + - *336 + - *503 + - &509 name: branch_policy_id in: path required: true @@ -72561,9 +72807,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72582,10 +72828,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - *506 + - *335 + - *336 + - *503 + - *509 requestBody: required: true content: @@ -72613,9 +72859,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72634,10 +72880,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *332 - - *333 - - *500 - - *506 + - *335 + - *336 + - *503 + - *509 responses: '204': description: Response @@ -72662,9 +72908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 responses: '200': description: List of deployment protection rules @@ -72680,7 +72926,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &507 + items: &510 title: Deployment protection rule description: Deployment protection rule type: object @@ -72699,7 +72945,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &508 + app: &511 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -72798,9 +73044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 requestBody: content: application/json: @@ -72821,9 +73067,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *507 + schema: *510 examples: - default: &509 + default: &512 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -72858,9 +73104,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *500 - - *333 - - *332 + - *503 + - *336 + - *335 - *19 - *17 responses: @@ -72879,7 +73125,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *508 + items: *511 examples: default: value: @@ -72914,10 +73160,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *332 - - *333 - - *500 - - &510 + - *335 + - *336 + - *503 + - &513 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -72929,9 +73175,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *509 + default: *512 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72952,10 +73198,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *500 - - *333 - - *332 - - *510 + - *503 + - *336 + - *335 + - *513 responses: '204': description: Response @@ -72981,9 +73227,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 - *17 - *19 responses: @@ -73001,11 +73247,11 @@ paths: type: integer secrets: type: array - items: *377 + items: *380 examples: - default: *378 + default: *381 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73028,17 +73274,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 responses: '200': description: Response content: application/json: - schema: *379 + schema: *382 examples: - default: *380 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73060,18 +73306,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 responses: '200': description: Response content: application/json: - schema: *377 + schema: *380 examples: - default: *511 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73093,10 +73339,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 requestBody: required: true content: @@ -73127,7 +73373,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -73153,10 +73399,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *332 - - *333 - - *500 - - *161 + - *335 + - *336 + - *503 + - *164 responses: '204': description: Default response @@ -73181,10 +73427,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *332 - - *333 - - *500 - - *348 + - *335 + - *336 + - *503 + - *351 - *19 responses: '200': @@ -73201,11 +73447,11 @@ paths: type: integer variables: type: array - items: *381 + items: *384 examples: - default: *382 + default: *385 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73226,9 +73472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *332 - - *333 - - *500 + - *335 + - *336 + - *503 requestBody: required: true content: @@ -73255,7 +73501,7 @@ paths: description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -73280,18 +73526,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *332 - - *333 - - *500 - - *164 + - *335 + - *336 + - *503 + - *167 responses: '200': description: Response content: application/json: - schema: *381 + schema: *384 examples: - default: *512 + default: *515 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73312,10 +73558,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *332 - - *333 - - *164 - - *500 + - *335 + - *336 + - *167 + - *503 requestBody: required: true content: @@ -73357,10 +73603,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *332 - - *333 - - *164 - - *500 + - *335 + - *336 + - *167 + - *503 responses: '204': description: Response @@ -73382,8 +73628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -73393,7 +73639,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: 200-response: value: @@ -73451,8 +73697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *332 - - *333 + - *335 + - *336 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -73474,7 +73720,7 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: default: value: @@ -73587,7 +73833,7 @@ paths: url: https://api.github.com/licenses/mit node_id: MDc6TGljZW5zZW1pdA== headers: - Link: *59 + Link: *61 '400': *14 x-github: githubCloudOnly: false @@ -73611,8 +73857,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -73644,9 +73890,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 '400': *14 '422': *15 '403': *29 @@ -73667,8 +73913,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -73719,7 +73965,7 @@ paths: schema: type: string '404': *6 - '409': *52 + '409': *54 '403': *29 '422': description: Validation failed @@ -73727,8 +73973,8 @@ paths: application/json: schema: oneOf: - - *122 - - *513 + - *124 + - *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73753,8 +73999,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *332 - - *333 + - *335 + - *336 - name: file_sha in: path required: true @@ -73805,7 +74051,7 @@ paths: '404': *6 '422': *15 '403': *29 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73853,8 +74099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -73963,7 +74209,7 @@ paths: description: Response content: application/json: - schema: &514 + schema: &517 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -74127,7 +74373,7 @@ paths: type: string '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74177,15 +74423,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *332 - - *333 - - *467 + - *335 + - *336 + - *470 responses: '200': description: Response content: application/json: - schema: *514 + schema: *517 examples: default: value: @@ -74216,7 +74462,7 @@ paths: payload: verified_at: '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74241,9 +74487,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *332 - - *333 - - &515 + - *335 + - *336 + - &518 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -74260,7 +74506,7 @@ paths: application/json: schema: type: array - items: &516 + items: &519 title: Git Reference description: Git references within a repository type: object @@ -74313,8 +74559,8 @@ paths: sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac headers: - Link: *59 - '409': *52 + Link: *61 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74335,17 +74581,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 responses: '200': description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: &517 + default: &520 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -74355,7 +74601,7 @@ paths: sha: aa218f56b14c9653891f9e74264a383fa43fefbd url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74374,8 +74620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74404,16 +74650,16 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA schema: type: string '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74432,9 +74678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 requestBody: required: true content: @@ -74463,11 +74709,11 @@ paths: description: Response content: application/json: - schema: *516 + schema: *519 examples: - default: *517 + default: *520 '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74483,16 +74729,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *332 - - *333 - - *515 + - *335 + - *336 + - *518 responses: '204': description: Response '422': description: Validation failed, an attempt was made to delete the default branch, or the endpoint has been spammed. - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74540,8 +74786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74608,7 +74854,7 @@ paths: description: Response content: application/json: - schema: &519 + schema: &522 title: Git Tag description: Metadata for a Git tag type: object @@ -74659,7 +74905,7 @@ paths: - sha - type - url - verification: *518 + verification: *521 required: - sha - url @@ -74669,7 +74915,7 @@ paths: - tag - message examples: - default: &520 + default: &523 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -74696,7 +74942,7 @@ paths: schema: type: string '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74742,8 +74988,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *332 - - *333 + - *335 + - *336 - name: tag_sha in: path required: true @@ -74754,11 +75000,11 @@ paths: description: Response content: application/json: - schema: *519 + schema: *522 examples: - default: *520 + default: *523 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74780,8 +75026,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -74854,7 +75100,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &524 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -74927,7 +75173,7 @@ paths: '422': *15 '404': *6 '403': *29 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74950,8 +75196,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *332 - - *333 + - *335 + - *336 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -74974,7 +75220,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *524 examples: default-response: summary: Default response @@ -75015,7 +75261,7 @@ paths: truncated: false '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75033,8 +75279,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -75044,7 +75290,7 @@ paths: application/json: schema: type: array - items: &522 + items: &525 title: Webhook description: Webhooks for repositories. type: object @@ -75098,7 +75344,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &766 + last_response: &769 title: Hook Response type: object properties: @@ -75153,7 +75399,7 @@ paths: status: unused message: headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -75172,8 +75418,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -75225,9 +75471,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: &523 + default: &526 value: type: Repository id: 12345678 @@ -75275,17 +75521,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '200': description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: *523 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -75305,9 +75551,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 requestBody: required: true content: @@ -75352,9 +75598,9 @@ paths: description: Response content: application/json: - schema: *522 + schema: *525 examples: - default: *523 + default: *526 '422': *15 '404': *6 x-github: @@ -75375,9 +75621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -75401,9 +75647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '200': description: Response @@ -75430,9 +75676,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 requestBody: required: false content: @@ -75476,11 +75722,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *17 - - *207 + - *210 responses: '200': description: Response @@ -75488,9 +75734,9 @@ paths: application/json: schema: type: array - items: *208 + items: *211 examples: - default: *209 + default: *212 '400': *14 '422': *15 x-github: @@ -75509,18 +75755,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *16 responses: '200': description: Response content: application/json: - schema: *210 + schema: *213 examples: - default: *211 + default: *214 '400': *14 '422': *15 x-github: @@ -75539,9 +75785,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 - *16 responses: '202': *39 @@ -75564,9 +75810,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -75591,9 +75837,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *332 - - *333 - - *206 + - *335 + - *336 + - *209 responses: '204': description: Response @@ -75616,8 +75862,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response if immutable releases are enabled @@ -75663,11 +75909,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 - '409': *52 + '204': *187 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75684,11 +75930,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 - '409': *52 + '204': *187 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75742,14 +75988,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &524 + schema: &527 title: Import description: A repository import from an external source. type: object @@ -75848,7 +76094,7 @@ paths: - html_url - authors_url examples: - default: &527 + default: &530 value: vcs: subversion use_lfs: true @@ -75864,7 +76110,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &525 + '503': &528 description: Unavailable due to service under maintenance. content: application/json: @@ -75893,8 +76139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -75942,7 +76188,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: default: value: @@ -75967,7 +76213,7 @@ paths: type: string '422': *15 '404': *6 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75995,8 +76241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -76045,7 +76291,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: example-1: summary: Example 1 @@ -76093,7 +76339,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76116,12 +76362,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76147,9 +76393,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *332 - - *333 - - &695 + - *335 + - *336 + - &698 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -76163,7 +76409,7 @@ paths: application/json: schema: type: array - items: &526 + items: &529 title: Porter Author description: Porter Author type: object @@ -76217,7 +76463,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76242,8 +76488,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *332 - - *333 + - *335 + - *336 - name: author_id in: path required: true @@ -76273,7 +76519,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *529 examples: default: value: @@ -76286,7 +76532,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76310,8 +76556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76352,7 +76598,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76380,8 +76626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -76408,11 +76654,11 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: *527 + default: *530 '422': *15 - '503': *525 + '503': *528 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76435,8 +76681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76444,8 +76690,8 @@ paths: application/json: schema: *22 examples: - default: *528 - '301': *336 + default: *531 + '301': *339 '404': *6 x-github: githubCloudOnly: false @@ -76465,8 +76711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -76474,12 +76720,12 @@ paths: application/json: schema: anyOf: - - *224 + - *227 - type: object properties: {} additionalProperties: false examples: - default: &530 + default: &533 value: limit: collaborators_only origin: repository @@ -76504,13 +76750,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: application/json: - schema: *529 + schema: *532 examples: default: summary: Example request body @@ -76522,9 +76768,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: - default: *530 + default: *533 '409': description: Response x-github: @@ -76546,8 +76792,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -76570,8 +76816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -76581,9 +76827,9 @@ paths: application/json: schema: type: array - items: *531 + items: *534 examples: - default: &687 + default: &690 value: - id: 1 repository: @@ -76697,7 +76943,7 @@ paths: html_url: https://github.com/octocat/Hello-World/invitations node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76714,9 +76960,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *332 - - *333 - - *228 + - *335 + - *336 + - *231 requestBody: required: false content: @@ -76745,7 +76991,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *534 examples: default: value: @@ -76876,9 +77122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *332 - - *333 - - *228 + - *335 + - *336 + - *231 responses: '204': description: Response @@ -76909,8 +77155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *332 - - *333 + - *335 + - *336 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -76958,7 +77204,7 @@ paths: required: false schema: type: string - - *235 + - *238 - name: sort description: What to sort results by. in: query @@ -76970,8 +77216,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -76981,9 +77227,9 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: &543 + default: &546 value: - id: 1 node_id: MDU6SXNzdWUx @@ -77131,8 +77377,8 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '422': *15 '404': *6 x-github: @@ -77161,8 +77407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -77237,9 +77483,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: &540 + default: &543 value: id: 1 node_id: MDU6SXNzdWUx @@ -77394,9 +77640,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *114 + '503': *116 '404': *6 - '410': *532 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -77424,9 +77670,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *332 - - *333 - - *101 + - *335 + - *336 + - *103 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -77436,7 +77682,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -77446,9 +77692,9 @@ paths: application/json: schema: type: array - items: *533 + items: *536 examples: - default: &542 + default: &545 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -77479,7 +77725,7 @@ paths: issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 '422': *15 '404': *6 x-github: @@ -77506,17 +77752,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: &534 + default: &537 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -77571,9 +77817,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -77595,9 +77841,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: *534 + default: *537 '422': *15 x-github: githubCloudOnly: false @@ -77615,9 +77861,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -77645,15 +77891,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *533 + schema: *536 examples: default: value: @@ -77709,7 +77955,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -77726,17 +77972,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response '401': *25 '403': *29 '404': *6 - '410': *532 - '503': *114 + '410': *535 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77753,9 +77999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue comment. @@ -77781,11 +78027,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -77804,9 +78050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -77838,16 +78084,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -77869,10 +78115,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *332 - - *333 - - *93 - - *536 + - *335 + - *336 + - *95 + - *539 responses: '204': description: Response @@ -77892,8 +78138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -77903,7 +78149,7 @@ paths: application/json: schema: type: array - items: &539 + items: &542 title: Issue Event description: Issue Event type: object @@ -77946,8 +78192,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *537 - required: *538 + properties: *540 + required: *541 nullable: true label: title: Issue Event Label @@ -77991,7 +78237,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *190 + requested_team: *193 dismissed_review: title: Issue Event Dismissed Review type: object @@ -78056,7 +78302,7 @@ paths: required: - from - to - author_association: *74 + author_association: *76 lock_reason: type: string nullable: true @@ -78069,8 +78315,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 required: - id - node_id @@ -78237,7 +78483,7 @@ paths: author_association: COLLABORATOR state_reason: completed headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -78255,8 +78501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *332 - - *333 + - *335 + - *336 - name: event_id in: path required: true @@ -78267,7 +78513,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *542 examples: default: value: @@ -78460,7 +78706,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *532 + '410': *535 '403': *29 x-github: githubCloudOnly: false @@ -78494,9 +78740,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *332 - - *333 - - &541 + - *335 + - *336 + - &544 name: issue_number description: The number that identifies the issue. in: path @@ -78508,11 +78754,11 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: default: summary: Issue - value: *540 + value: *543 pinned_comment: summary: Issue with pinned comment value: @@ -78711,9 +78957,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 '304': *37 x-github: githubCloudOnly: false @@ -78738,9 +78984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -78859,15 +79105,15 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 '422': *15 - '503': *114 + '503': *116 '403': *29 - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78885,9 +79131,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -78913,9 +79159,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78931,9 +79177,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: content: application/json: @@ -78958,9 +79204,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78982,9 +79228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: assignee in: path required: true @@ -79024,10 +79270,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *332 - - *333 - - *541 - - *84 + - *335 + - *336 + - *544 + - *86 - *17 - *19 responses: @@ -79037,13 +79283,13 @@ paths: application/json: schema: type: array - items: *533 + items: *536 examples: - default: *542 + default: *545 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79072,9 +79318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -79096,16 +79342,16 @@ paths: description: Response content: application/json: - schema: *533 + schema: *536 examples: - default: *534 + default: *537 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -79133,9 +79379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79145,14 +79391,14 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79180,9 +79426,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -79204,17 +79450,17 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *336 + '301': *339 '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -79245,9 +79491,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -79259,15 +79505,15 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 - '301': *336 + default: *543 + '301': *339 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *532 + '410': *535 x-github: triggersNotification: true githubCloudOnly: false @@ -79293,9 +79539,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79305,14 +79551,14 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79329,9 +79575,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -79345,7 +79591,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &546 + - &549 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -79376,8 +79622,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 label: type: object properties: @@ -79399,7 +79645,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &547 + - &550 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -79430,8 +79676,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 label: type: object properties: @@ -79519,8 +79765,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 assigner: *4 required: @@ -79535,7 +79781,7 @@ paths: - performed_via_github_app - assignee - assigner - - &548 + - &551 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -79566,8 +79812,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 milestone: type: object properties: @@ -79586,7 +79832,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &549 + - &552 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -79617,8 +79863,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 milestone: type: object properties: @@ -79637,7 +79883,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &550 + - &553 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -79668,8 +79914,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 rename: type: object properties: @@ -79691,7 +79937,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &551 + - &554 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -79722,10 +79968,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 review_requester: *4 - requested_team: *190 + requested_team: *193 requested_reviewer: *4 required: - review_requester @@ -79738,7 +79984,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &555 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -79769,10 +80015,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 review_requester: *4 - requested_team: *190 + requested_team: *193 requested_reviewer: *4 required: - review_requester @@ -79785,7 +80031,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &556 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -79816,8 +80062,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 dismissed_review: type: object properties: @@ -79845,7 +80091,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &557 title: Locked Issue Event description: Locked Issue Event type: object @@ -79876,8 +80122,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 lock_reason: type: string example: '"off-topic"' @@ -79893,7 +80139,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &558 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -79924,8 +80170,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -79959,7 +80205,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &559 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -79990,8 +80236,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -80025,7 +80271,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &560 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -80056,8 +80302,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 project_card: type: object properties: @@ -80091,7 +80337,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &561 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -80181,8 +80427,8 @@ paths: name: label color: red headers: - Link: *59 - '410': *532 + Link: *61 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80199,9 +80445,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -80211,9 +80457,9 @@ paths: application/json: schema: type: array - items: *544 + items: *547 examples: - default: &657 + default: &660 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -80236,10 +80482,10 @@ paths: data_type: date value: '2025-12-25' headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80256,9 +80502,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -80268,9 +80514,9 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: &545 + default: &548 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -80287,10 +80533,10 @@ paths: color: a2eeef default: false headers: - Link: *59 - '301': *336 + Link: *61 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80306,9 +80552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80351,12 +80597,12 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 - '301': *336 + default: *548 + '301': *339 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -80373,9 +80619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80435,12 +80681,12 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 - '301': *336 + default: *548 + '301': *339 '404': *6 - '410': *532 + '410': *535 '422': *15 x-github: githubCloudOnly: false @@ -80457,15 +80703,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '204': description: Response - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80484,9 +80730,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: name in: path required: true @@ -80499,7 +80745,7 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: default: value: @@ -80510,9 +80756,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *336 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80532,9 +80778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: false content: @@ -80562,7 +80808,7 @@ paths: '204': description: Response '403': *29 - '410': *532 + '410': *535 '404': *6 '422': *15 x-github: @@ -80580,9 +80826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '204': description: Response @@ -80612,20 +80858,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 responses: '200': description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 - '301': *336 + default: *543 + '301': *339 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80642,9 +80888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -80670,13 +80916,13 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80694,9 +80940,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -80728,16 +80974,16 @@ paths: description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Response content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -80759,10 +81005,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *332 - - *333 - - *541 - - *536 + - *335 + - *336 + - *544 + - *539 responses: '204': description: Response @@ -80791,9 +81037,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -80815,9 +81061,9 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -80850,9 +81096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -80862,13 +81108,13 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *543 + default: *546 headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80896,9 +81142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -80925,16 +81171,16 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *532 + '410': *535 '422': *15 '404': *6 x-github: @@ -80954,9 +81200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 requestBody: required: true content: @@ -80987,13 +81233,13 @@ paths: description: Response content: application/json: - schema: *77 + schema: *79 examples: - default: *540 + default: *543 '403': *29 '404': *6 '422': *7 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -81011,9 +81257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *332 - - *333 - - *541 + - *335 + - *336 + - *544 - *17 - *19 responses: @@ -81028,9 +81274,6 @@ paths: description: Timeline Event type: object anyOf: - - *546 - - *547 - - *548 - *549 - *550 - *551 @@ -81041,6 +81284,9 @@ paths: - *556 - *557 - *558 + - *559 + - *560 + - *561 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -81083,7 +81329,7 @@ paths: issue_url: type: string format: uri - author_association: *74 + author_association: *76 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -81093,16 +81339,16 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 - reactions: *75 + properties: *74 + required: *75 + reactions: *77 pin: title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true required: - event @@ -81134,7 +81380,7 @@ paths: properties: type: type: string - issue: *77 + issue: *79 required: - event - created_at @@ -81334,7 +81580,7 @@ paths: type: string body_text: type: string - author_association: *74 + author_association: *76 required: - event - id @@ -81357,7 +81603,7 @@ paths: type: string comments: type: array - items: &580 + items: &583 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -81452,7 +81698,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *74 + author_association: *76 _links: type: object properties: @@ -81536,7 +81782,7 @@ paths: enum: - line - file - reactions: *75 + reactions: *77 body_html: type: string example: '"

comment body

"' @@ -81572,7 +81818,7 @@ paths: type: string comments: type: array - items: *463 + items: *466 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -81603,8 +81849,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 required: - id @@ -81647,8 +81893,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 assignee: *4 required: - id @@ -81691,8 +81937,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 state_reason: type: string nullable: true @@ -81859,9 +82105,9 @@ paths: type: User site_admin: true headers: - Link: *59 + Link: *61 '404': *6 - '410': *532 + '410': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81878,8 +82124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -81889,7 +82135,7 @@ paths: application/json: schema: type: array - items: &561 + items: &564 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -81939,7 +82185,7 @@ paths: last_used: '2022-01-10T15:53:42Z' enabled: true headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81955,8 +82201,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -81992,9 +82238,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: &562 + default: &565 value: id: 1 key: ssh-rsa AAA... @@ -82028,9 +82274,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *332 - - *333 - - &563 + - *335 + - *336 + - &566 name: key_id description: The unique identifier of the key. in: path @@ -82042,9 +82288,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *564 examples: - default: *562 + default: *565 '404': *6 x-github: githubCloudOnly: false @@ -82062,9 +82308,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *332 - - *333 - - *563 + - *335 + - *336 + - *566 responses: '204': description: Response @@ -82084,8 +82330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -82095,11 +82341,11 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 + default: *548 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -82118,8 +82364,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82155,9 +82401,9 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: &564 + default: &567 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82189,8 +82435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82201,9 +82447,9 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: - default: *564 + default: *567 '404': *6 x-github: githubCloudOnly: false @@ -82220,8 +82466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82260,7 +82506,7 @@ paths: description: Response content: application/json: - schema: *76 + schema: *78 examples: default: value: @@ -82286,8 +82532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *332 - - *333 + - *335 + - *336 - name: name in: path required: true @@ -82313,8 +82559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -82353,9 +82599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *332 - - *333 - - *436 + - *335 + - *336 + - *439 responses: '200': description: Response @@ -82417,8 +82663,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true required: - _links @@ -82500,8 +82746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82566,8 +82812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82601,9 +82847,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *466 + schema: *469 examples: - default: *565 + default: *568 '204': description: Response when already merged '404': @@ -82628,8 +82874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *332 - - *333 + - *335 + - *336 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -82670,12 +82916,12 @@ paths: application/json: schema: type: array - items: &566 + items: &569 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 examples: default: value: @@ -82714,7 +82960,7 @@ paths: closed_at: '2013-02-12T13:22:01Z' due_on: '2012-10-09T23:39:01Z' headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -82731,8 +82977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -82772,9 +83018,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: &567 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -82833,9 +83079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *332 - - *333 - - &568 + - *335 + - *336 + - &571 name: milestone_number description: The number that identifies the milestone. in: path @@ -82847,9 +83093,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *567 + default: *570 '404': *6 x-github: githubCloudOnly: false @@ -82866,9 +83112,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 requestBody: required: false content: @@ -82906,9 +83152,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *569 examples: - default: *567 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82924,9 +83170,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 responses: '204': description: Response @@ -82947,9 +83193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *332 - - *333 - - *568 + - *335 + - *336 + - *571 - *17 - *19 responses: @@ -82959,11 +83205,11 @@ paths: application/json: schema: type: array - items: *76 + items: *78 examples: - default: *545 + default: *548 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82980,12 +83226,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *332 - - *333 - - *569 - - *570 - - *84 - - *571 + - *335 + - *336 + - *572 + - *573 + - *86 + - *574 - *17 - *19 responses: @@ -82995,11 +83241,11 @@ paths: application/json: schema: type: array - items: *104 + items: *106 examples: - default: *572 + default: *575 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -83021,8 +83267,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -83080,14 +83326,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: &573 + schema: &576 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -83212,7 +83458,7 @@ paths: - custom_404 - public examples: - default: &574 + default: &577 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -83253,8 +83499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83308,11 +83554,11 @@ paths: description: Response content: application/json: - schema: *573 + schema: *576 examples: - default: *574 + default: *577 '422': *15 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83333,8 +83579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83412,7 +83658,7 @@ paths: description: Response '422': *15 '400': *14 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83433,14 +83679,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response '422': *15 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83460,8 +83706,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -83471,7 +83717,7 @@ paths: application/json: schema: type: array - items: &575 + items: &578 title: Page Build description: Page Build type: object @@ -83546,7 +83792,7 @@ paths: created_at: '2014-02-10T19:00:49Z' updated_at: '2014-02-10T19:00:51Z' headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83565,8 +83811,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *332 - - *333 + - *335 + - *336 responses: '201': description: Response @@ -83611,16 +83857,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: &576 + default: &579 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -83668,8 +83914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *332 - - *333 + - *335 + - *336 - name: build_id in: path required: true @@ -83680,9 +83926,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: *576 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83702,8 +83948,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -83808,9 +84054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *332 - - *333 - - &577 + - *335 + - *336 + - &580 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -83868,11 +84114,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *332 - - *333 - - *577 + - *335 + - *336 + - *580 responses: - '204': *184 + '204': *187 '404': *6 x-github: githubCloudOnly: false @@ -83897,8 +84143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -84129,7 +84375,7 @@ paths: description: Empty response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -84156,8 +84402,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Private vulnerability reporting status @@ -84194,10 +84440,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 + '204': *187 '422': *14 x-github: githubCloudOnly: false @@ -84216,10 +84462,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: - '204': *184 + '204': *187 '422': *14 x-github: githubCloudOnly: false @@ -84239,8 +84485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -84248,7 +84494,7 @@ paths: application/json: schema: type: array - items: *284 + items: *287 examples: default: value: @@ -84279,8 +84525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -84292,7 +84538,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *284 + items: *287 required: - properties examples: @@ -84342,8 +84588,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *332 - - *333 + - *335 + - *336 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -84403,11 +84649,11 @@ paths: application/json: schema: type: array - items: *470 + items: *473 examples: - default: *578 + default: *581 headers: - Link: *59 + Link: *61 '304': *37 '422': *15 x-github: @@ -84437,8 +84683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -84503,7 +84749,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &585 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -84614,8 +84860,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true active_lock_reason: type: string @@ -84647,7 +84893,7 @@ paths: items: *4 requested_teams: type: array - items: *321 + items: *324 head: type: object properties: @@ -84655,7 +84901,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: *4 @@ -84672,7 +84918,7 @@ paths: type: string ref: type: string - repo: *71 + repo: *73 sha: type: string user: *4 @@ -84685,14 +84931,14 @@ paths: _links: type: object properties: - comments: *271 - commits: *271 - statuses: *271 - html: *271 - issue: *271 - review_comments: *271 - review_comment: *271 - self: *271 + comments: *274 + commits: *274 + statuses: *274 + html: *274 + issue: *274 + review_comments: *274 + review_comment: *274 + self: *274 required: - comments - commits @@ -84702,8 +84948,8 @@ paths: - review_comments - review_comment - self - author_association: *74 - auto_merge: *579 + author_association: *76 + auto_merge: *582 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -84793,7 +85039,7 @@ paths: - merged_by - review_comments examples: - default: &583 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -85320,8 +85566,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *332 - - *333 + - *335 + - *336 - name: sort in: query required: false @@ -85340,7 +85586,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -85350,9 +85596,9 @@ paths: application/json: schema: type: array - items: *580 + items: *583 examples: - default: &585 + default: &588 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85404,7 +85650,7 @@ paths: original_line: 2 side: RIGHT headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85429,17 +85675,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '200': description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: &581 + default: &584 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -85514,9 +85760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -85538,9 +85784,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: - default: *581 + default: *584 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85556,9 +85802,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 responses: '204': description: Response @@ -85579,9 +85825,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a pull request review comment. @@ -85607,11 +85853,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -85630,9 +85876,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *332 - - *333 - - *93 + - *335 + - *336 + - *95 requestBody: required: true content: @@ -85664,16 +85910,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -85695,10 +85941,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *332 - - *333 - - *93 - - *536 + - *335 + - *336 + - *95 + - *539 responses: '204': description: Response @@ -85741,9 +85987,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *332 - - *333 - - &584 + - *335 + - *336 + - &587 name: pull_number description: The number that identifies the pull request. in: path @@ -85756,9 +86002,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *582 + schema: *585 examples: - default: *583 + default: *586 '304': *37 '404': *6 '406': @@ -85766,8 +86012,8 @@ paths: content: application/json: schema: *3 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85793,9 +86039,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -85837,9 +86083,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *585 examples: - default: *583 + default: *586 '422': *15 '403': *29 x-github: @@ -85861,9 +86107,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -85923,21 +86169,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -85963,10 +86209,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *332 - - *333 - - *584 - - *101 + - *335 + - *336 + - *587 + - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -85976,7 +86222,7 @@ paths: enum: - asc - desc - - *84 + - *86 - *17 - *19 responses: @@ -85986,11 +86232,11 @@ paths: application/json: schema: type: array - items: *580 + items: *583 examples: - default: *585 + default: *588 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86021,9 +86267,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -86128,7 +86374,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: example-for-a-multi-line-comment: value: @@ -86216,10 +86462,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *332 - - *333 - - *584 - - *93 + - *335 + - *336 + - *587 + - *95 requestBody: required: true content: @@ -86241,7 +86487,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *583 examples: default: value: @@ -86327,9 +86573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -86339,11 +86585,11 @@ paths: application/json: schema: type: array - items: *466 + items: *469 examples: - default: *586 + default: *589 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86371,9 +86617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -86383,7 +86629,7 @@ paths: application/json: schema: type: array - items: *479 + items: *482 examples: default: value: @@ -86399,10 +86645,10 @@ paths: patch: "@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test" headers: - Link: *59 + Link: *61 '422': *15 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86421,9 +86667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 responses: '204': description: Response if pull request has been merged @@ -86446,9 +86692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -86559,9 +86805,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 responses: '200': description: Response @@ -86577,7 +86823,7 @@ paths: items: *4 teams: type: array - items: *190 + items: *193 required: - users - teams @@ -86618,7 +86864,7 @@ paths: repositories_url: https://api.github.com/teams/1/repos parent: headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86636,9 +86882,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -86675,7 +86921,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -87211,9 +87457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: true content: @@ -87247,7 +87493,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *473 examples: default: value: @@ -87752,9 +87998,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 - *17 - *19 responses: @@ -87764,7 +88010,7 @@ paths: application/json: schema: type: array - items: &587 + items: &590 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -87833,7 +88079,7 @@ paths: type: string body_text: type: string - author_association: *74 + author_association: *76 required: - id - node_id @@ -87882,7 +88128,7 @@ paths: commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091 author_association: COLLABORATOR headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87915,9 +88161,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -88003,9 +88249,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: &589 + default: &592 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88068,10 +88314,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - &588 + - *335 + - *336 + - *587 + - &591 name: review_id description: The unique identifier of the review. in: path @@ -88083,9 +88329,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: &590 + default: &593 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -88144,10 +88390,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -88170,7 +88416,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -88232,18 +88478,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 responses: '200': description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: *589 + default: *592 '422': *7 '404': *6 x-github: @@ -88270,10 +88516,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 - *17 - *19 responses: @@ -88352,13 +88598,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *74 + author_association: *76 _links: type: object properties: - self: *271 - html: *271 - pull_request: *271 + self: *274 + html: *274 + pull_request: *274 required: - self - html @@ -88367,7 +88613,7 @@ paths: type: string body_html: type: string - reactions: *75 + reactions: *77 side: description: The side of the first line of the range for a multi-line comment. @@ -88479,7 +88725,7 @@ paths: pull_request: href: https://api.github.com/repos/octocat/Hello-World/pulls/1 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -88508,10 +88754,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -88539,7 +88785,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: default: value: @@ -88602,10 +88848,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *332 - - *333 - - *584 - - *588 + - *335 + - *336 + - *587 + - *591 requestBody: required: true content: @@ -88640,9 +88886,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *590 examples: - default: *590 + default: *593 '404': *6 '422': *7 '403': *29 @@ -88664,9 +88910,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *332 - - *333 - - *584 + - *335 + - *336 + - *587 requestBody: required: false content: @@ -88729,8 +88975,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *332 - - *333 + - *335 + - *336 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -88743,9 +88989,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: &592 + default: &595 value: type: file encoding: base64 @@ -88787,8 +89033,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *332 - - *333 + - *335 + - *336 - name: dir description: The alternate path to look for a README file in: path @@ -88808,9 +89054,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *594 examples: - default: *592 + default: *595 '404': *6 '422': *15 x-github: @@ -88832,8 +89078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -88843,7 +89089,7 @@ paths: application/json: schema: type: array - items: *593 + items: *596 examples: default: value: @@ -88917,7 +89163,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -88937,8 +89183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -89014,9 +89260,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: &597 + default: &600 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -89121,9 +89367,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *332 - - *333 - - &595 + - *335 + - *336 + - &598 name: asset_id description: The unique identifier of the asset. in: path @@ -89135,9 +89381,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: &596 + default: &599 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -89172,7 +89418,7 @@ paths: type: User site_admin: false '404': *6 - '302': *481 + '302': *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89188,9 +89434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *332 - - *333 - - *595 + - *335 + - *336 + - *598 requestBody: required: false content: @@ -89218,9 +89464,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *596 + default: *599 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89236,9 +89482,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *332 - - *333 - - *595 + - *335 + - *336 + - *598 responses: '204': description: Response @@ -89262,8 +89508,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -89348,16 +89594,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89374,8 +89620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *332 - - *333 + - *335 + - *336 - name: tag description: tag parameter in: path @@ -89388,9 +89634,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 '404': *6 x-github: githubCloudOnly: false @@ -89412,9 +89658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *332 - - *333 - - &598 + - *335 + - *336 + - &601 name: release_id description: The unique identifier of the release. in: path @@ -89428,9 +89674,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 '401': description: Unauthorized x-github: @@ -89448,9 +89694,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 requestBody: required: false content: @@ -89514,9 +89760,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *596 examples: - default: *597 + default: *600 '404': description: Not Found if the discussion category name is invalid content: @@ -89537,9 +89783,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 responses: '204': description: Response @@ -89559,9 +89805,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - *17 - *19 responses: @@ -89571,7 +89817,7 @@ paths: application/json: schema: type: array - items: *594 + items: *597 examples: default: value: @@ -89608,7 +89854,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89652,9 +89898,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - name: name in: query required: true @@ -89680,7 +89926,7 @@ paths: description: Response for successful upload content: application/json: - schema: *594 + schema: *597 examples: response-for-successful-upload: value: @@ -89735,9 +89981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -89761,11 +90007,11 @@ paths: application/json: schema: type: array - items: *464 + items: *467 examples: - default: *535 + default: *538 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -89784,9 +90030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *332 - - *333 - - *598 + - *335 + - *336 + - *601 requestBody: required: true content: @@ -89816,16 +90062,16 @@ paths: description: Reaction exists content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '201': description: Reaction created content: application/json: - schema: *464 + schema: *467 examples: - default: *465 + default: *468 '422': *15 x-github: githubCloudOnly: false @@ -89847,10 +90093,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *332 - - *333 - - *598 - - *536 + - *335 + - *336 + - *601 + - *539 responses: '204': description: Response @@ -89874,9 +90120,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *332 - - *333 - - *399 + - *335 + - *336 + - *402 - *17 - *19 responses: @@ -89892,8 +90138,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *293 - - &599 + - *296 + - &602 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -89912,69 +90158,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *294 - - *599 - - allOf: - - *295 - - *599 - - allOf: - - *296 - - *599 - - allOf: - - *600 - - *599 - allOf: - *297 - - *599 + - *602 - allOf: - *298 - - *599 + - *602 - allOf: - *299 - - *599 + - *602 + - allOf: + - *603 + - *602 - allOf: - *300 - - *599 + - *602 - allOf: - *301 - - *599 + - *602 - allOf: - *302 - - *599 + - *602 - allOf: - *303 - - *599 + - *602 - allOf: - *304 - - *599 + - *602 - allOf: - *305 - - *599 + - *602 - allOf: - *306 - - *599 + - *602 - allOf: - *307 - - *599 + - *602 - allOf: - *308 - - *599 + - *602 - allOf: - *309 - - *599 + - *602 - allOf: - *310 - - *599 + - *602 - allOf: - *311 - - *599 + - *602 - allOf: - *312 - - *599 + - *602 - allOf: - *313 - - *599 + - *602 + - allOf: + - *314 + - *602 + - allOf: + - *315 + - *602 + - allOf: + - *316 + - *602 examples: default: value: @@ -90013,8 +90259,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - name: includes_parents @@ -90025,7 +90271,7 @@ paths: schema: type: boolean default: true - - *601 + - *604 responses: '200': description: Response @@ -90033,7 +90279,7 @@ paths: application/json: schema: type: array - items: *314 + items: *317 examples: default: value: @@ -90064,7 +90310,7 @@ paths: created_at: '2023-08-15T08:43:03Z' updated_at: '2023-09-23T16:29:47Z' '404': *6 - '500': *113 + '500': *115 post: summary: Create a repository ruleset description: Create a ruleset for a repository. @@ -90080,8 +90326,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 requestBody: description: Request body required: true @@ -90101,16 +90347,16 @@ paths: - tag - push default: branch - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *288 + items: *294 + conditions: *291 rules: type: array description: An array of rules within the ruleset. - items: *602 + items: *605 required: - name - enforcement @@ -90141,9 +90387,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: &612 + default: &615 value: id: 42 name: super cool ruleset @@ -90177,7 +90423,7 @@ paths: updated_at: '2023-08-23T16:29:47Z' '404': *6 '422': *15 - '500': *113 + '500': *115 "/repos/{owner}/{repo}/rulesets/rule-suites": get: summary: List repository rule suites @@ -90191,12 +90437,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *332 - - *333 - - *603 - - *604 - - *605 + - *335 + - *336 - *606 + - *607 + - *608 + - *609 - *17 - *19 responses: @@ -90204,11 +90450,11 @@ paths: description: Response content: application/json: - schema: *607 + schema: *610 examples: - default: *608 + default: *611 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90227,19 +90473,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *332 - - *333 - - *609 + - *335 + - *336 + - *612 responses: '200': description: Response content: application/json: - schema: *610 + schema: *613 examples: - default: *611 + default: *614 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90265,8 +90511,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90286,11 +90532,11 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *612 + default: *615 '404': *6 - '500': *113 + '500': *115 put: summary: Update a repository ruleset description: Update a ruleset for a repository. @@ -90306,8 +90552,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90332,16 +90578,16 @@ paths: - branch - tag - push - enforcement: *290 + enforcement: *293 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *291 - conditions: *288 + items: *294 + conditions: *291 rules: description: An array of rules within the ruleset. type: array - items: *602 + items: *605 examples: default: value: @@ -90369,12 +90615,12 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: - default: *612 + default: *615 '404': *6 '422': *15 - '500': *113 + '500': *115 delete: summary: Delete a repository ruleset description: Delete a ruleset for a repository. @@ -90390,8 +90636,8 @@ paths: category: repos subcategory: rules parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90402,7 +90648,7 @@ paths: '204': description: Response '404': *6 - '500': *113 + '500': *115 "/repos/{owner}/{repo}/rulesets/{ruleset_id}/history": get: summary: Get repository ruleset history @@ -90414,8 +90660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 - name: ruleset_id @@ -90431,11 +90677,11 @@ paths: application/json: schema: type: array - items: *317 + items: *320 examples: - default: *613 + default: *616 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90452,8 +90698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *332 - - *333 + - *335 + - *336 - name: ruleset_id description: The ID of the ruleset. in: path @@ -90471,7 +90717,7 @@ paths: description: Response content: application/json: - schema: *614 + schema: *617 examples: default: value: @@ -90504,7 +90750,7 @@ paths: operator: contains pattern: github '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90526,22 +90772,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *332 - - *333 - - *615 - - *616 - - *617 + - *335 + - *336 - *618 - *619 - - *53 - - *19 - - *17 - *620 - *621 - *622 + - *55 + - *19 + - *17 - *623 - *624 - *625 + - *626 + - *627 + - *628 responses: '200': description: Response @@ -90549,11 +90795,11 @@ paths: application/json: schema: type: array - items: &629 + items: &632 type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -90561,15 +90807,15 @@ paths: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *626 - resolution: *627 + state: *629 + resolution: *630 resolved_at: type: string format: date-time @@ -90665,7 +90911,7 @@ paths: pull request. ' - oneOf: *628 + oneOf: *631 nullable: true has_more_locations: type: boolean @@ -90792,7 +91038,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90814,16 +91060,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 - - *625 + - *335 + - *336 + - *433 + - *628 responses: '200': description: Response content: application/json: - schema: *629 + schema: *632 examples: default: value: @@ -90854,7 +91100,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90877,9 +91123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 requestBody: required: true content: @@ -90887,8 +91133,8 @@ paths: schema: type: object properties: - state: *626 - resolution: *627 + state: *629 + resolution: *630 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -90922,7 +91168,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *632 examples: default: value: @@ -90995,7 +91241,7 @@ paths: '422': description: State does not match the resolution or resolution comment, or assignee does not have write access to the repository - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91017,9 +91263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *332 - - *333 - - *430 + - *335 + - *336 + - *433 - *19 - *17 responses: @@ -91030,7 +91276,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &788 + items: &791 type: object properties: type: @@ -91056,9 +91302,6 @@ paths: example: commit details: oneOf: - - *630 - - *631 - - *632 - *633 - *634 - *635 @@ -91069,6 +91312,9 @@ paths: - *640 - *641 - *642 + - *643 + - *644 + - *645 examples: default: value: @@ -91128,11 +91374,11 @@ paths: details: pull_request_review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/12 headers: - Link: *59 + Link: *61 '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91154,8 +91400,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -91163,14 +91409,14 @@ paths: schema: type: object properties: - reason: &644 + reason: &647 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *643 + placeholder_id: *646 required: - reason - placeholder_id @@ -91187,7 +91433,7 @@ paths: schema: type: object properties: - reason: *644 + reason: *647 expire_at: type: string format: date-time @@ -91210,7 +91456,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *114 + '503': *116 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -91233,13 +91479,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *114 + '503': *116 '200': description: Response content: @@ -91249,7 +91495,7 @@ paths: properties: incremental_scans: type: array - items: &645 + items: &648 description: Information on a single scan performed by secret scanning on the repository type: object @@ -91275,15 +91521,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *645 + items: *648 backfill_scans: type: array - items: *645 + items: *648 custom_pattern_backfill_scans: type: array items: allOf: - - *645 + - *648 - type: object properties: pattern_name: @@ -91353,9 +91599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *332 - - *333 - - *53 + - *335 + - *336 + - *55 - name: sort description: The property to sort the results by. in: query @@ -91367,8 +91613,8 @@ paths: - updated - published default: created - - *45 - - *46 + - *47 + - *48 - name: per_page description: The number of advisories to return per page. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -91398,9 +91644,9 @@ paths: application/json: schema: type: array - items: *646 + items: *649 examples: - default: *647 + default: *650 '400': *14 '404': *6 x-github: @@ -91423,8 +91669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -91497,7 +91743,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 required: - login - type @@ -91584,9 +91830,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: &649 + default: &652 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -91819,8 +92065,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -91924,7 +92170,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: default: value: @@ -92071,17 +92317,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '200': description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: *649 + default: *652 '403': *29 '404': *6 x-github: @@ -92105,9 +92351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 requestBody: required: true content: @@ -92180,7 +92426,7 @@ paths: login: type: string description: The username of the user credited. - type: *320 + type: *323 required: - login - type @@ -92266,17 +92512,17 @@ paths: description: Response content: application/json: - schema: *646 + schema: *649 examples: - default: *649 - add_credit: *649 + default: *652 + add_credit: *652 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *122 + schema: *124 examples: invalid_state_transition: value: @@ -92307,9 +92553,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '202': *39 '400': *14 @@ -92336,17 +92582,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *332 - - *333 - - *648 + - *335 + - *336 + - *651 responses: '202': description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 '400': *14 '422': *15 '403': *29 @@ -92372,8 +92618,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -92450,7 +92696,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -92472,8 +92718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -92482,7 +92728,7 @@ paths: application/json: schema: type: array - items: &650 + items: &653 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -92495,7 +92741,7 @@ paths: - 1124 - -435 '202': *39 - '204': *184 + '204': *187 '422': description: Repository contains more than 10,000 commits x-github: @@ -92515,8 +92761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -92565,7 +92811,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92592,8 +92838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -92667,7 +92913,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92689,8 +92935,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -92844,8 +93090,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -92855,7 +93101,7 @@ paths: application/json: schema: type: array - items: *650 + items: *653 examples: default: value: @@ -92868,7 +93114,7 @@ paths: - - 0 - 2 - 21 - '204': *184 + '204': *187 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92888,8 +93134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *332 - - *333 + - *335 + - *336 - name: sha in: path required: true @@ -92943,7 +93189,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *654 examples: default: value: @@ -92997,8 +93243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93010,9 +93256,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93030,14 +93276,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &652 + schema: &655 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -93105,8 +93351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: false content: @@ -93132,7 +93378,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *655 examples: default: value: @@ -93159,8 +93405,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -93180,8 +93426,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93237,7 +93483,7 @@ paths: tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1 node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93260,8 +93506,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *332 - - *333 + - *335 + - *336 - name: ref in: path required: true @@ -93297,8 +93543,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *332 - - *333 + - *335 + - *336 - *17 - *19 responses: @@ -93308,11 +93554,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - default: *249 + default: *252 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -93330,8 +93576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *332 - - *333 + - *335 + - *336 - *19 - *17 responses: @@ -93339,7 +93585,7 @@ paths: description: Response content: application/json: - schema: &653 + schema: &656 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -93351,7 +93597,7 @@ paths: required: - names examples: - default: &654 + default: &657 value: names: - octocat @@ -93374,8 +93620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -93406,9 +93652,9 @@ paths: description: Response content: application/json: - schema: *653 + schema: *656 examples: - default: *654 + default: *657 '404': *6 '422': *7 x-github: @@ -93429,9 +93675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *332 - - *333 - - &655 + - *335 + - *336 + - &658 name: per description: The time frame to display results for. in: query @@ -93460,7 +93706,7 @@ paths: example: 128 clones: type: array - items: &656 + items: &659 title: Traffic type: object properties: @@ -93547,8 +93793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -93638,8 +93884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *332 - - *333 + - *335 + - *336 responses: '200': description: Response @@ -93699,9 +93945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *332 - - *333 - - *655 + - *335 + - *336 + - *658 responses: '200': description: Response @@ -93720,7 +93966,7 @@ paths: example: 3782 views: type: array - items: *656 + items: *659 required: - uniques - count @@ -93797,8 +94043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *332 - - *333 + - *335 + - *336 requestBody: required: true content: @@ -93834,7 +94080,7 @@ paths: description: Response content: application/json: - schema: *153 + schema: *156 examples: default: value: @@ -94072,8 +94318,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -94096,8 +94342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -94119,8 +94365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -94146,8 +94392,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *332 - - *333 + - *335 + - *336 - name: ref in: path required: true @@ -94239,9 +94485,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -94282,7 +94528,7 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: default: value: @@ -94388,8 +94634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *142 - - *541 + - *145 + - *544 requestBody: required: true content: @@ -94453,14 +94699,14 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *544 + items: *547 examples: - default: *657 + default: *660 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -94491,8 +94737,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *142 - - *541 + - *145 + - *544 requestBody: required: true content: @@ -94557,14 +94803,14 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *544 + items: *547 examples: - default: *657 + default: *660 '400': *14 '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -94590,16 +94836,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *142 - - *541 - - *231 + - *145 + - *544 + - *234 responses: '204': description: Issue field value deleted successfully '403': *29 '404': *6 '422': *15 - '503': *114 + '503': *116 x-github: triggersNotification: true githubCloudOnly: false @@ -94713,7 +94959,7 @@ paths: html_url: type: string format: uri - repository: *153 + repository: *156 score: type: number file_size: @@ -94731,7 +94977,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &658 + text_matches: &661 title: Search Result Text Matches type: array items: @@ -94845,7 +95091,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *114 + '503': *116 '422': *15 '403': *29 x-github: @@ -94893,7 +95139,7 @@ paths: enum: - author-date - committer-date - - &659 + - &662 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -94964,7 +95210,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true comment_count: type: integer @@ -94984,7 +95230,7 @@ paths: url: type: string format: uri - verification: *518 + verification: *521 required: - author - committer @@ -95003,7 +95249,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *397 + properties: *400 nullable: true parents: type: array @@ -95016,12 +95262,12 @@ paths: type: string sha: type: string - repository: *153 + repository: *156 score: type: number node_id: type: string - text_matches: *658 + text_matches: *661 required: - sha - node_id @@ -95213,7 +95459,7 @@ paths: - interactions - created - updated - - *659 + - *662 - *17 - *19 - name: advanced_search @@ -95310,11 +95556,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: type: string state_reason: @@ -95324,8 +95570,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *269 - required: *270 + properties: *272 + required: *273 nullable: true comments: type: integer @@ -95339,7 +95585,7 @@ paths: type: string format: date-time nullable: true - text_matches: *658 + text_matches: *661 pull_request: type: object properties: @@ -95372,10 +95618,10 @@ paths: type: string score: type: number - author_association: *74 + author_association: *76 draft: type: boolean - repository: *71 + repository: *73 body_html: type: string body_text: @@ -95383,7 +95629,7 @@ paths: timeline_url: type: string format: uri - type: *232 + type: *235 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -95393,17 +95639,17 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 pinned_comment: title: Issue Comment description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - reactions: *75 + reactions: *77 required: - closed_at - comments @@ -95518,7 +95764,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *114 + '503': *116 '422': *15 '304': *37 '403': *29 @@ -95571,7 +95817,7 @@ paths: enum: - created - updated - - *659 + - *662 - *17 - *19 responses: @@ -95615,7 +95861,7 @@ paths: nullable: true score: type: number - text_matches: *658 + text_matches: *661 required: - id - node_id @@ -95700,7 +95946,7 @@ paths: - forks - help-wanted-issues - updated - - *659 + - *662 - *17 - *19 responses: @@ -95930,8 +96176,8 @@ paths: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true permissions: type: object @@ -95950,7 +96196,7 @@ paths: - admin - pull - push - text_matches: *658 + text_matches: *661 temp_clone_token: type: string allow_merge_commit: @@ -96152,7 +96398,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *114 + '503': *116 '422': *15 '304': *37 x-github: @@ -96250,7 +96496,7 @@ paths: type: string format: uri nullable: true - text_matches: *658 + text_matches: *661 related: type: array nullable: true @@ -96441,7 +96687,7 @@ paths: - followers - repositories - joined - - *659 + - *662 - *17 - *19 responses: @@ -96545,7 +96791,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *658 + text_matches: *661 blog: type: string nullable: true @@ -96604,7 +96850,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *114 + '503': *116 '422': *15 x-github: githubCloudOnly: false @@ -96624,7 +96870,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &662 + - &665 name: team_id description: The unique identifier of the team. in: path @@ -96636,9 +96882,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 x-github: githubCloudOnly: false @@ -96665,7 +96911,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *662 + - *665 requestBody: required: true content: @@ -96728,16 +96974,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '201': description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 '404': *6 '422': *15 '403': *29 @@ -96765,7 +97011,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *662 + - *665 responses: '204': description: Response @@ -96794,7 +97040,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -96804,11 +97050,11 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: - default: *227 + default: *230 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96832,7 +97078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *662 + - *665 - name: role description: Filters members returned by their role in the team. in: query @@ -96855,9 +97101,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -96883,8 +97129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: if user is a member @@ -96920,8 +97166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -96960,8 +97206,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -96997,16 +97243,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '200': description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-user-is-a-team-maintainer: *663 + response-if-user-is-a-team-maintainer: *666 '404': *6 x-github: githubCloudOnly: false @@ -97039,8 +97285,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 requestBody: required: false content: @@ -97065,9 +97311,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *334 examples: - response-if-users-membership-with-team-is-now-pending: *664 + response-if-users-membership-with-team-is-now-pending: *667 '403': description: Forbidden if team synchronization is set up '422': @@ -97101,8 +97347,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *662 - - *63 + - *665 + - *65 responses: '204': description: Response @@ -97129,7 +97375,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -97139,11 +97385,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -97171,15 +97417,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *665 + schema: *668 examples: alternative-response-with-extra-repository-information: value: @@ -97330,9 +97576,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 requestBody: required: false content: @@ -97382,9 +97628,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *662 - - *332 - - *333 + - *665 + - *335 + - *336 responses: '204': description: Response @@ -97409,7 +97655,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *662 + - *665 - *17 - *19 responses: @@ -97419,11 +97665,11 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: - response-if-child-teams-exist: *666 + response-if-child-teams-exist: *669 headers: - Link: *59 + Link: *61 '404': *6 '403': *29 '422': *15 @@ -97454,7 +97700,7 @@ paths: application/json: schema: oneOf: - - &667 + - &670 title: Private User description: Private User type: object @@ -97657,7 +97903,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &694 + - &697 title: Public User description: Public User type: object @@ -97969,7 +98215,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *670 examples: default: value: @@ -98048,7 +98294,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 '304': *37 '404': *6 '403': *29 @@ -98071,7 +98317,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *63 + - *65 responses: '204': description: If the user is blocked @@ -98099,7 +98345,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#block-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -98123,7 +98369,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/blocking#unblock-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -98172,11 +98418,11 @@ paths: type: integer codespaces: type: array - items: *237 + items: *240 examples: - default: *238 + default: *241 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -98313,21 +98559,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 - '503': *114 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98367,7 +98613,7 @@ paths: type: integer secrets: type: array - items: &668 + items: &671 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -98407,9 +98653,9 @@ paths: - visibility - selected_repositories_url examples: - default: *456 + default: *459 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98477,13 +98723,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 responses: '200': description: Response content: application/json: - schema: *668 + schema: *671 examples: default: value: @@ -98513,7 +98759,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 requestBody: required: true content: @@ -98558,7 +98804,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -98586,7 +98832,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *161 + - *164 responses: '204': description: Response @@ -98611,7 +98857,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *161 + - *164 responses: '200': description: Response @@ -98627,13 +98873,13 @@ paths: type: integer repositories: type: array - items: *153 + items: *156 examples: - default: *669 + default: *672 '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98654,7 +98900,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *161 + - *164 requestBody: required: true content: @@ -98686,7 +98932,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98708,7 +98954,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *161 + - *164 - name: repository_id in: path required: true @@ -98720,7 +98966,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98741,7 +98987,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *161 + - *164 - name: repository_id in: path required: true @@ -98753,7 +98999,7 @@ paths: '401': *25 '403': *29 '404': *6 - '500': *113 + '500': *115 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -98773,17 +99019,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -98807,7 +99053,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 requestBody: required: false content: @@ -98837,9 +99083,9 @@ paths: description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '401': *25 '403': *29 '404': *6 @@ -98861,11 +99107,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '202': *39 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -98890,13 +99136,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '202': description: Response content: application/json: - schema: &670 + schema: &673 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -98937,7 +99183,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &671 + default: &674 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -98945,7 +99191,7 @@ paths: sha: fd95a81ca01e48ede9f39c799ecbcef817b8a3b2 id: latest export_url: https://api.github.com/user/codespaces/:name/exports/latest - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -98969,7 +99215,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *239 + - *242 - name: export_id in: path required: true @@ -98982,9 +99228,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *673 examples: - default: *671 + default: *674 '404': *6 x-github: githubCloudOnly: false @@ -99005,7 +99251,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *239 + - *242 responses: '200': description: Response @@ -99021,11 +99267,11 @@ paths: type: integer machines: type: array - items: *672 + items: *675 examples: - default: *673 + default: *676 '304': *37 - '500': *113 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99052,7 +99298,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *239 + - *242 requestBody: required: true content: @@ -99102,13 +99348,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *335 + repository: *338 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *454 - required: *455 + properties: *457 + required: *458 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -99882,17 +100128,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 + default: *456 '304': *37 - '500': *113 + '500': *115 '400': *14 '401': *25 '402': @@ -99902,7 +100148,7 @@ paths: schema: *3 '403': *29 '404': *6 - '409': *52 + '409': *54 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -99922,16 +100168,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *239 + - *242 responses: '200': description: Response content: application/json: - schema: *237 + schema: *240 examples: - default: *453 - '500': *113 + default: *456 + '500': *115 '401': *25 '403': *29 '404': *6 @@ -99960,9 +100206,9 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: &684 + default: &687 value: - id: 197 name: hello_docker @@ -100063,7 +100309,7 @@ paths: application/json: schema: type: array - items: &674 + items: &677 title: Email description: Email type: object @@ -100128,16 +100374,16 @@ paths: application/json: schema: type: array - items: *674 + items: *677 examples: - default: &686 + default: &689 value: - email: octocat@github.com verified: true primary: true visibility: public headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -100205,7 +100451,7 @@ paths: application/json: schema: type: array - items: *674 + items: *677 examples: default: value: @@ -100315,9 +100561,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -100348,9 +100594,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -100370,7 +100616,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *63 + - *65 responses: '204': description: if the person is followed by the authenticated user @@ -100400,7 +100646,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#follow-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -100425,7 +100671,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#unfollow-a-user parameters: - - *63 + - *65 responses: '204': description: Response @@ -100461,7 +100707,7 @@ paths: application/json: schema: type: array - items: &675 + items: &678 title: GPG Key description: A unique encryption key type: object @@ -100592,7 +100838,7 @@ paths: - subkeys - revoked examples: - default: &703 + default: &706 value: - id: 3 name: Octocat's GPG Key @@ -100624,7 +100870,7 @@ paths: revoked: false raw_key: string headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -100677,9 +100923,9 @@ paths: description: Response content: application/json: - schema: *675 + schema: *678 examples: - default: &676 + default: &679 value: id: 3 name: Octocat's GPG Key @@ -100736,7 +100982,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &677 + - &680 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -100748,9 +100994,9 @@ paths: description: Response content: application/json: - schema: *675 + schema: *678 examples: - default: *676 + default: *679 '404': *6 '304': *37 '403': *29 @@ -100773,7 +101019,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *677 + - *680 responses: '204': description: Response @@ -100916,7 +101162,7 @@ paths: suspended_at: suspended_by: headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -100964,11 +101210,11 @@ paths: type: array items: allOf: - - *71 + - *73 examples: - default: *145 + default: *148 headers: - Link: *59 + Link: *61 '404': *6 '403': *29 '304': *37 @@ -100991,7 +101237,7 @@ paths: url: https://docs.github.com/rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *142 + - *145 responses: '204': description: Response @@ -101017,7 +101263,7 @@ paths: url: https://docs.github.com/rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *142 + - *145 responses: '204': description: Response @@ -101051,12 +101297,12 @@ paths: application/json: schema: anyOf: - - *224 + - *227 - type: object properties: {} additionalProperties: false examples: - default: *225 + default: *228 '204': description: Response when there are no restrictions x-github: @@ -101080,7 +101326,7 @@ paths: required: true content: application/json: - schema: *529 + schema: *532 examples: default: value: @@ -101091,7 +101337,7 @@ paths: description: Response content: application/json: - schema: *224 + schema: *227 examples: default: value: @@ -101172,7 +101418,7 @@ paths: - closed - all default: open - - *235 + - *238 - name: sort description: What to sort results by. in: query @@ -101184,8 +101430,8 @@ paths: - updated - comments default: created - - *53 - - *84 + - *55 + - *86 - *17 - *19 responses: @@ -101195,11 +101441,11 @@ paths: application/json: schema: type: array - items: *77 + items: *79 examples: - default: *236 + default: *239 headers: - Link: *59 + Link: *61 '404': *6 '304': *37 x-github: @@ -101230,7 +101476,7 @@ paths: application/json: schema: type: array - items: &678 + items: &681 title: Key description: Key type: object @@ -101281,7 +101527,7 @@ paths: verified: false read_only: false headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -101331,9 +101577,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *681 examples: - default: &679 + default: &682 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -101366,15 +101612,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *566 responses: '200': description: Response content: application/json: - schema: *678 + schema: *681 examples: - default: *679 + default: *682 '404': *6 '304': *37 '403': *29 @@ -101397,7 +101643,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *566 responses: '204': description: Response @@ -101430,7 +101676,7 @@ paths: application/json: schema: type: array - items: &680 + items: &683 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -101487,7 +101733,7 @@ paths: - id - type - login - plan: *95 + plan: *97 required: - billing_cycle - next_billing_date @@ -101498,7 +101744,7 @@ paths: - account - plan examples: - default: &681 + default: &684 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -101531,7 +101777,7 @@ paths: - Up to 25 private repositories - 11 concurrent builds headers: - Link: *59 + Link: *61 '304': *37 '401': *25 '404': *6 @@ -101560,11 +101806,11 @@ paths: application/json: schema: type: array - items: *680 + items: *683 examples: - default: *681 + default: *684 headers: - Link: *59 + Link: *61 '304': *37 '401': *25 x-github: @@ -101602,7 +101848,7 @@ paths: application/json: schema: type: array - items: *241 + items: *244 examples: default: value: @@ -101685,7 +101931,7 @@ paths: type: User site_admin: false headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -101710,13 +101956,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#get-an-organization-membership-for-the-authenticated-user parameters: - - *67 + - *69 responses: '200': description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -101778,7 +102024,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/members#update-an-organization-membership-for-the-authenticated-user parameters: - - *67 + - *69 requestBody: required: true content: @@ -101803,7 +102049,7 @@ paths: description: Response content: application/json: - schema: *241 + schema: *244 examples: default: value: @@ -101875,7 +102121,7 @@ paths: application/json: schema: type: array - items: *243 + items: *246 examples: default: value: @@ -102028,7 +102274,7 @@ paths: updated_at: '2015-07-06T15:33:38-07:00' node_id: MDQ6VXNlcjE= headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102128,7 +102374,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -102308,7 +102554,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *244 + - *247 - name: exclude in: query required: false @@ -102321,7 +102567,7 @@ paths: description: Response content: application/json: - schema: *243 + schema: *246 examples: default: value: @@ -102515,7 +102761,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *244 + - *247 responses: '302': description: Response @@ -102541,7 +102787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *244 + - *247 responses: '204': description: Response @@ -102570,8 +102816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *244 - - *682 + - *247 + - *685 responses: '204': description: Response @@ -102595,7 +102841,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *244 + - *247 - *17 - *19 responses: @@ -102605,9 +102851,9 @@ paths: application/json: schema: type: array - items: *58 + items: *60 headers: - Link: *59 + Link: *61 '404': *6 x-github: githubCloudOnly: false @@ -102640,11 +102886,11 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -102684,7 +102930,7 @@ paths: - docker - nuget - container - - *683 + - *686 - *19 - *17 responses: @@ -102694,10 +102940,10 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *684 - '400': *685 + default: *687 + '400': *688 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102717,16 +102963,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: - default: &704 + default: &707 value: id: 40201 name: octo-name @@ -102839,8 +103085,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 responses: '204': description: Response @@ -102870,8 +103116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 - name: token description: package token schema: @@ -102903,8 +103149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *252 - - *253 + - *255 + - *256 - *19 - *17 - name: state @@ -102924,7 +103170,7 @@ paths: application/json: schema: type: array - items: *254 + items: *257 examples: default: value: @@ -102973,15 +103219,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '200': description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -103017,9 +103263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '204': description: Response @@ -103049,9 +103295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *252 - - *253 - *255 + - *256 + - *258 responses: '204': description: Response @@ -103088,11 +103334,11 @@ paths: application/json: schema: type: array - items: *674 + items: *677 examples: - default: *686 + default: *689 headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103201,9 +103447,9 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default: &693 + default: &696 summary: Default response value: - id: 1296269 @@ -103324,7 +103570,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '422': *15 '304': *37 '403': *29 @@ -103507,9 +103753,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *338 examples: - default: *337 + default: *340 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -103548,11 +103794,11 @@ paths: application/json: schema: type: array - items: *531 + items: *534 examples: - default: *687 + default: *690 headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103573,12 +103819,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *228 + - *231 responses: '204': description: Response '403': *29 - '409': *52 + '409': *54 '404': *6 '304': *37 '451': *15 @@ -103597,11 +103843,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *228 + - *231 responses: '204': description: Response - '409': *52 + '409': *54 '304': *37 '404': *6 '403': *29 @@ -103630,7 +103876,7 @@ paths: application/json: schema: type: array - items: &688 + items: &691 title: Social account description: Social media account type: object @@ -103645,12 +103891,12 @@ paths: - provider - url examples: - default: &689 + default: &692 value: - provider: twitter url: https://twitter.com/github headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103707,9 +103953,9 @@ paths: application/json: schema: type: array - items: *688 + items: *691 examples: - default: *689 + default: *692 '422': *15 '304': *37 '404': *6 @@ -103796,7 +104042,7 @@ paths: application/json: schema: type: array - items: &690 + items: &693 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -103816,7 +104062,7 @@ paths: - title - created_at examples: - default: &722 + default: &725 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103827,7 +104073,7 @@ paths: title: ssh-rsa AAAAB3NzaC1yc2EAAB created_at: '2020-07-11T21:31:57Z' headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -103880,9 +104126,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *693 examples: - default: &691 + default: &694 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -103912,7 +104158,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &692 + - &695 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -103924,9 +104170,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *693 examples: - default: *691 + default: *694 '404': *6 '304': *37 '403': *29 @@ -103949,7 +104195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *692 + - *695 responses: '204': description: Response @@ -103978,7 +104224,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &723 + - &726 name: sort description: The property to sort the results by. `created` means when the repository was starred. `updated` means when the repository was last pushed @@ -103991,7 +104237,7 @@ paths: - created - updated default: created - - *53 + - *55 - *17 - *19 responses: @@ -104001,13 +104247,13 @@ paths: application/json: schema: type: array - items: *71 + items: *73 examples: - default-response: *693 + default-response: *696 application/vnd.github.v3.star+json: schema: type: array - items: &724 + items: &727 title: Starred Repository description: Starred Repository type: object @@ -104015,7 +104261,7 @@ paths: starred_at: type: string format: date-time - repo: *71 + repo: *73 required: - starred_at - repo @@ -104143,7 +104389,7 @@ paths: open_issues: 1 watchers: 1 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -104163,8 +104409,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response if this repository is starred by you @@ -104192,8 +104438,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -104217,8 +104463,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *332 - - *333 + - *335 + - *336 responses: '204': description: Response @@ -104251,11 +104497,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -104290,7 +104536,7 @@ paths: application/json: schema: type: array - items: *328 + items: *331 examples: default: value: @@ -104341,7 +104587,7 @@ paths: updated_at: '2017-08-17T12:37:15Z' type: Organization headers: - Link: *59 + Link: *61 '304': *37 '404': *6 '403': *29 @@ -104368,7 +104614,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user-using-their-id parameters: - - *97 + - *99 responses: '200': description: Response @@ -104376,10 +104622,10 @@ paths: application/json: schema: oneOf: - - *667 - - *694 + - *670 + - *697 examples: - default-response: &698 + default-response: &701 summary: Default response value: login: octocat @@ -104414,7 +104660,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &699 + response-with-git-hub-plan-information: &702 summary: Response with GitHub plan information value: login: octocat @@ -104471,14 +104717,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &696 + - &699 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *268 + - *271 requestBody: required: true description: Details of the draft item to create in the project. @@ -104512,9 +104758,9 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: - draft_issue: *275 + draft_issue: *278 '304': *37 '403': *29 '401': *25 @@ -104537,7 +104783,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *695 + - *698 - *17 responses: '200': @@ -104548,7 +104794,7 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: Link: example: ; rel="next" @@ -104572,8 +104818,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *696 - - *268 + - *699 + - *271 requestBody: required: true content: @@ -104644,17 +104890,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *697 + schema: *700 examples: table_view: summary: Response for creating a table view - value: *279 + value: *282 board_view: summary: Response for creating a board view with filter - value: *279 + value: *282 roadmap_view: summary: Response for creating a roadmap view - value: *279 + value: *282 '304': *37 '403': *29 '401': *25 @@ -104688,7 +104934,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-a-user parameters: - - *63 + - *65 responses: '200': description: Response @@ -104696,11 +104942,11 @@ paths: application/json: schema: oneOf: - - *667 - - *694 + - *670 + - *697 examples: - default-response: *698 - response-with-git-hub-plan-information: *699 + default-response: *701 + response-with-git-hub-plan-information: *702 '404': *6 x-github: githubCloudOnly: false @@ -104724,9 +104970,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations-by-bulk-subject-digests parameters: - *17 - - *45 - - *46 - - *63 + - *47 + - *48 + - *65 requestBody: required: true content: @@ -104750,8 +104996,8 @@ paths: required: - subject_digests examples: - default: *700 - withPredicateType: *701 + default: *703 + withPredicateType: *704 responses: '200': description: Response @@ -104790,7 +105036,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *702 + default: *705 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104808,7 +105054,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-in-bulk parameters: - - *63 + - *65 requestBody: required: true content: @@ -104873,7 +105119,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *63 + - *65 - name: subject_digest description: Subject Digest in: path @@ -104904,7 +105150,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/attestations#delete-attestations-by-id parameters: - - *63 + - *65 - name: attestation_id description: Attestation ID in: path @@ -104940,9 +105186,9 @@ paths: url: https://docs.github.com/rest/users/attestations#list-attestations parameters: - *17 - - *45 - - *46 - - *63 + - *47 + - *48 + - *65 - name: subject_digest description: Subject Digest in: path @@ -104979,12 +105225,12 @@ paths: initiator: type: string examples: - default: *393 + default: *396 '201': description: Response content: application/json: - schema: *162 + schema: *165 examples: default: value: @@ -105010,7 +105256,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *63 + - *65 responses: '200': description: Response @@ -105018,9 +105264,9 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *684 + default: *687 '403': *29 '401': *25 x-github: @@ -105043,7 +105289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-for-the-authenticated-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105053,7 +105299,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105115,8 +105361,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *63 - - *67 + - *65 + - *69 - *17 - *19 responses: @@ -105126,7 +105372,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105203,7 +105449,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105213,7 +105459,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -105271,7 +105517,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-followers-of-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105283,9 +105529,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105302,7 +105548,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#list-the-people-a-user-follows parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105314,9 +105560,9 @@ paths: type: array items: *4 examples: - default: *62 + default: *64 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105333,7 +105579,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/followers#check-if-a-user-follows-another-user parameters: - - *63 + - *65 - name: target_user in: path required: true @@ -105360,8 +105606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/gists/gists#list-gists-for-a-user parameters: - - *63 - - *84 + - *65 + - *86 - *17 - *19 responses: @@ -105371,11 +105617,11 @@ paths: application/json: schema: type: array - items: *85 + items: *87 examples: - default: *86 + default: *88 headers: - Link: *59 + Link: *61 '422': *15 x-github: githubCloudOnly: false @@ -105394,7 +105640,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105404,11 +105650,11 @@ paths: application/json: schema: type: array - items: *675 + items: *678 examples: - default: *703 + default: *706 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105430,7 +105676,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#get-contextual-information-for-a-user parameters: - - *63 + - *65 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -105502,7 +105748,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *63 + - *65 responses: '200': description: Response @@ -105510,7 +105756,7 @@ paths: application/json: schema: *22 examples: - default: *528 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105528,7 +105774,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#list-public-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105563,7 +105809,7 @@ paths: - id: 1 key: ssh-rsa AAA... headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105583,7 +105829,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/orgs/orgs#list-organizations-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -105593,11 +105839,11 @@ paths: application/json: schema: type: array - items: *65 + items: *67 examples: - default: *108 + default: *110 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105634,8 +105880,8 @@ paths: - docker - nuget - container - - *683 - - *63 + - *686 + - *65 - *19 - *17 responses: @@ -105645,12 +105891,12 @@ paths: application/json: schema: type: array - items: *250 + items: *253 examples: - default: *684 + default: *687 '403': *29 '401': *25 - '400': *685 + '400': *688 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105670,17 +105916,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '200': description: Response content: application/json: - schema: *250 + schema: *253 examples: - default: *704 + default: *707 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -105701,9 +105947,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '204': description: Response @@ -105735,9 +105981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 - name: token description: package token schema: @@ -105769,9 +106015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *252 - - *253 - - *63 + - *255 + - *256 + - *65 responses: '200': description: Response @@ -105779,7 +106025,7 @@ paths: application/json: schema: type: array - items: *254 + items: *257 examples: default: value: @@ -105837,16 +106083,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *252 - - *253 - *255 - - *63 + - *256 + - *258 + - *65 responses: '200': description: Response content: application/json: - schema: *254 + schema: *257 examples: default: value: @@ -105881,10 +106127,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *252 - - *253 - - *63 - *255 + - *256 + - *65 + - *258 responses: '204': description: Response @@ -105916,10 +106162,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *252 - - *253 - - *63 - *255 + - *256 + - *65 + - *258 responses: '204': description: Response @@ -105943,15 +106189,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-projects-for-user parameters: - - *63 + - *65 - name: q description: Limit results to projects of the specified type. in: query required: false schema: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -105960,11 +106206,11 @@ paths: application/json: schema: type: array - items: *266 + items: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -105984,18 +106230,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *268 - - *63 + - *271 + - *65 responses: '200': description: Response content: application/json: - schema: *266 + schema: *269 examples: - default: *267 + default: *270 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106015,11 +106261,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *268 - - *63 + - *271 + - *65 - *17 - - *45 - - *46 + - *47 + - *48 responses: '200': description: Response @@ -106027,11 +106273,11 @@ paths: application/json: schema: type: array - items: *272 + items: *275 examples: - default: *705 + default: *708 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106050,8 +106296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - - *63 - - *268 + - *65 + - *271 requestBody: required: true content: @@ -106089,7 +106335,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *706 + items: *709 required: - name - data_type @@ -106105,7 +106351,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *707 + iteration_configuration: *710 required: - name - data_type @@ -106127,20 +106373,20 @@ paths: value: name: Due date data_type: date - single_select_field: *708 - iteration_field: *709 + single_select_field: *711 + iteration_field: *712 responses: '201': description: Response content: application/json: - schema: *272 + schema: *275 examples: - text_field: *710 - number_field: *711 - date_field: *712 - single_select_field: *713 - iteration_field: *714 + text_field: *713 + number_field: *714 + date_field: *715 + single_select_field: *716 + iteration_field: *717 '304': *37 '403': *29 '401': *25 @@ -106161,19 +106407,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *268 - - *715 - - *63 + - *271 + - *718 + - *65 responses: '200': description: Response content: application/json: - schema: *272 + schema: *275 examples: - default: *716 + default: *719 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106194,10 +106440,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *268 - - *63 - - *45 - - *46 + - *271 + - *65 + - *47 + - *48 - *17 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -106227,11 +106473,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106250,8 +106496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - - *63 - - *268 + - *65 + - *271 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -106321,22 +106567,22 @@ paths: description: Response content: application/json: - schema: *274 + schema: *277 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *275 + value: *278 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *275 + value: *278 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *275 + value: *278 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *275 + value: *278 '304': *37 '403': *29 '401': *25 @@ -106356,9 +106602,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -106378,11 +106624,11 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106401,9 +106647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -106473,13 +106719,13 @@ paths: description: Response content: application/json: - schema: *276 + schema: *279 examples: - text_field: *277 - number_field: *277 - date_field: *277 - single_select_field: *277 - iteration_field: *277 + text_field: *280 + number_field: *280 + date_field: *280 + single_select_field: *280 + iteration_field: *280 '401': *25 '403': *29 '404': *6 @@ -106499,9 +106745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *268 - - *63 - - *278 + - *271 + - *65 + - *281 responses: '204': description: Response @@ -106523,9 +106769,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *268 - - *63 - - *717 + - *271 + - *65 + - *720 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -106541,8 +106787,8 @@ paths: maxItems: 50 items: type: string - - *45 - - *46 + - *47 + - *48 - *17 responses: '200': @@ -106551,11 +106797,11 @@ paths: application/json: schema: type: array - items: *276 + items: *279 examples: - default: *277 + default: *280 headers: - Link: *59 + Link: *61 '304': *37 '403': *29 '401': *25 @@ -106581,7 +106827,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106591,7 +106837,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -106656,7 +106902,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-received-by-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -106666,7 +106912,7 @@ paths: application/json: schema: type: array - items: *103 + items: *105 examples: default: value: @@ -106729,7 +106975,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repositories-for-a-user parameters: - - *63 + - *65 - name: type description: Limit results to repositories of the specified type. in: query @@ -106772,11 +107018,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106796,12 +107042,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-premium-request-usage-report-for-a-user parameters: - - *63 - - *116 + - *65 - *118 - - *117 - - *718 + - *120 - *119 + - *721 + - *121 responses: '200': description: Response when getting a billing premium request usage report @@ -106908,8 +107154,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106929,10 +107175,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-report-for-a-user parameters: - - *63 - - *116 - - *719 - - *117 + - *65 + - *118 + - *722 + - *119 responses: '200': description: Response when getting a billing usage report @@ -107002,8 +107248,8 @@ paths: repositoryName: user/example '400': *14 '403': *29 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107026,13 +107272,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/billing/usage#get-billing-usage-summary-for-a-user parameters: - - *63 - - *116 + - *65 - *118 - - *117 - - *720 + - *120 - *119 - - *721 + - *723 + - *121 + - *724 responses: '200': description: Response when getting a billing usage summary @@ -107137,8 +107383,8 @@ paths: '400': *14 '403': *29 '404': *6 - '500': *113 - '503': *114 + '500': *115 + '503': *116 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107156,7 +107402,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107166,11 +107412,11 @@ paths: application/json: schema: type: array - items: *688 + items: *691 examples: - default: *689 + default: *692 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107188,7 +107434,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107198,11 +107444,11 @@ paths: application/json: schema: type: array - items: *690 + items: *693 examples: - default: *722 + default: *725 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107224,9 +107470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *63 - - *723 - - *53 + - *65 + - *726 + - *55 - *17 - *19 responses: @@ -107237,13 +107483,13 @@ paths: schema: anyOf: - type: array - items: *724 + items: *727 - type: array - items: *71 + items: *73 examples: - default-response: *693 + default-response: *696 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107260,7 +107506,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *63 + - *65 - *17 - *19 responses: @@ -107270,11 +107516,11 @@ paths: application/json: schema: type: array - items: *153 + items: *156 examples: - default: *263 + default: *266 headers: - Link: *59 + Link: *61 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -107400,7 +107646,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &725 + enterprise: &728 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -107458,7 +107704,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &726 + installation: &729 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -107477,7 +107723,7 @@ x-webhooks: required: - id - node_id - organization: &727 + organization: &730 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -107537,13 +107783,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &728 + repository: &731 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &760 + properties: &763 id: description: Unique identifier of the repository example: 42 @@ -107563,8 +107809,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *80 - required: *81 + properties: *82 + required: *83 nullable: true organization: title: Simple User @@ -108232,7 +108478,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &761 + required: &764 - archive_url - assignees_url - blobs_url @@ -108383,10 +108629,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -108462,11 +108708,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: &729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: &732 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -108689,11 +108935,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: *729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: *732 sender: *4 required: - action @@ -108876,11 +109122,11 @@ x-webhooks: - everyone required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - rule: *729 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + rule: *732 sender: *4 required: - action @@ -108964,7 +109210,7 @@ x-webhooks: type: string enum: - completed - check_run: &731 + check_run: &734 title: CheckRun description: A check performed on the code of a given code change type: object @@ -109017,8 +109263,8 @@ x-webhooks: type: string pull_requests: type: array - items: *82 - repository: *153 + items: *84 + repository: *156 status: example: completed type: string @@ -109055,7 +109301,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *730 + deployment: *733 details_url: example: https://example.com type: string @@ -109105,7 +109351,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *82 + items: *84 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -109140,10 +109386,10 @@ x-webhooks: - output - app - pull_requests - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -109534,11 +109780,11 @@ x-webhooks: type: string enum: - created - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -109932,11 +110178,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 requested_action: description: The action requested by the user. type: object @@ -110339,11 +110585,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *731 - installation: *726 - enterprise: *725 - organization: *727 - repository: *728 + check_run: *734 + installation: *729 + enterprise: *728 + organization: *730 + repository: *731 sender: *4 required: - check_run @@ -111313,10 +111559,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -112005,10 +112251,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -112691,10 +112937,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -112860,7 +113106,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -113005,20 +113251,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &732 + commit_oid: &735 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *725 - installation: *726 - organization: *727 - ref: &733 + enterprise: *728 + installation: *729 + organization: *730 + ref: &736 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *728 + repository: *731 sender: *4 required: - action @@ -113183,7 +113429,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -113413,12 +113659,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -113513,7 +113759,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -113684,12 +113930,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -113855,7 +114101,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -114021,12 +114267,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -114125,7 +114371,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114300,16 +114546,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *728 + repository: *731 sender: *4 required: - action @@ -114406,7 +114652,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -114546,12 +114792,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *732 - enterprise: *725 - installation: *726 - organization: *727 - ref: *733 - repository: *728 + commit_oid: *735 + enterprise: *728 + installation: *729 + organization: *730 + ref: *736 + repository: *731 sender: *4 required: - action @@ -114717,7 +114963,7 @@ x-webhooks: required: - login - id - dismissed_comment: *425 + dismissed_comment: *428 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -114862,10 +115108,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -115120,10 +115366,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -115203,18 +115449,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *727 - pusher_type: &734 + organization: *730 + pusher_type: &737 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &735 + ref: &738 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -115224,7 +115470,7 @@ x-webhooks: enum: - tag - branch - repository: *728 + repository: *731 sender: *4 required: - ref @@ -115306,10 +115552,10 @@ x-webhooks: type: string enum: - created - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115394,9 +115640,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115473,10 +115719,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115553,10 +115799,10 @@ x-webhooks: type: string enum: - updated - definition: *280 - enterprise: *725 - installation: *726 - organization: *727 + definition: *283 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -115633,19 +115879,19 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - repository: *728 - organization: *727 + enterprise: *728 + installation: *729 + repository: *731 + organization: *730 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *284 + items: *287 old_property_values: type: array description: The old custom property values for the repository. - items: *284 + items: *287 required: - action - repository @@ -115721,18 +115967,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - pusher_type: *734 - ref: *735 + enterprise: *728 + installation: *729 + organization: *730 + pusher_type: *737 + ref: *738 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *728 + repository: *731 sender: *4 required: - ref @@ -115812,11 +116058,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -115896,11 +116142,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -115981,11 +116227,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116066,11 +116312,11 @@ x-webhooks: type: string enum: - created - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116149,11 +116395,11 @@ x-webhooks: type: string enum: - dismissed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116232,11 +116478,11 @@ x-webhooks: type: string enum: - fixed - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116316,11 +116562,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116399,11 +116645,11 @@ x-webhooks: type: string enum: - reopened - alert: *487 - installation: *726 - organization: *727 - enterprise: *725 - repository: *728 + alert: *490 + installation: *729 + organization: *730 + enterprise: *728 + repository: *731 sender: *4 required: - action @@ -116480,9 +116726,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - key: &736 + enterprise: *728 + installation: *729 + key: &739 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -116518,8 +116764,8 @@ x-webhooks: - verified - created_at - read_only - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -116596,11 +116842,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - key: *736 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + key: *739 + organization: *730 + repository: *731 sender: *4 required: - action @@ -117156,12 +117402,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: &742 + workflow: &745 title: Workflow type: object nullable: true @@ -117902,15 +118148,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *737 - required: *738 + properties: *740 + required: *741 nullable: true pull_requests: type: array - items: *582 - repository: *728 - organization: *727 - installation: *726 + items: *585 + repository: *731 + organization: *730 + installation: *729 sender: *4 responses: '200': @@ -117981,7 +118227,7 @@ x-webhooks: type: string enum: - approved - approver: &739 + approver: &742 type: object properties: avatar_url: @@ -118024,11 +118270,11 @@ x-webhooks: type: string comment: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - reviewers: &740 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + reviewers: &743 type: array items: type: object @@ -118107,7 +118353,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &741 + workflow_job_run: &744 type: object properties: conclusion: @@ -118838,18 +119084,18 @@ x-webhooks: type: string enum: - rejected - approver: *739 + approver: *742 comment: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - reviewers: *740 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + reviewers: *743 sender: *4 since: type: string - workflow_job_run: *741 + workflow_job_run: *744 workflow_job_runs: type: array items: @@ -119553,13 +119799,13 @@ x-webhooks: type: string enum: - requested - enterprise: *725 + enterprise: *728 environment: type: string - installation: *726 - organization: *727 - repository: *728 - requestor: &747 + installation: *729 + organization: *730 + repository: *731 + requestor: &750 title: User type: object nullable: true @@ -121448,12 +121694,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Deployment Workflow Run type: object @@ -122133,7 +122379,7 @@ x-webhooks: type: string enum: - answered - answer: &745 + answer: &748 type: object properties: author_association: @@ -122290,11 +122536,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122421,11 +122667,11 @@ x-webhooks: - from required: - category - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122508,11 +122754,11 @@ x-webhooks: type: string enum: - closed - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122594,7 +122840,7 @@ x-webhooks: type: string enum: - created - comment: &744 + comment: &747 type: object properties: author_association: @@ -122751,11 +122997,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122838,12 +123084,12 @@ x-webhooks: type: string enum: - deleted - comment: *744 - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + comment: *747 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -122938,12 +123184,12 @@ x-webhooks: - from required: - body - comment: *744 - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + comment: *747 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123027,11 +123273,11 @@ x-webhooks: type: string enum: - created - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123113,11 +123359,11 @@ x-webhooks: type: string enum: - deleted - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123217,11 +123463,11 @@ x-webhooks: type: string required: - from - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123303,10 +123549,10 @@ x-webhooks: type: string enum: - labeled - discussion: *743 - enterprise: *725 - installation: *726 - label: &746 + discussion: *746 + enterprise: *728 + installation: *729 + label: &749 title: Label type: object properties: @@ -123338,8 +123584,8 @@ x-webhooks: - color - default - description - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123422,11 +123668,11 @@ x-webhooks: type: string enum: - locked - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123508,11 +123754,11 @@ x-webhooks: type: string enum: - pinned - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123594,11 +123840,11 @@ x-webhooks: type: string enum: - reopened - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123683,16 +123929,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *743 - new_repository: *728 + new_discussion: *746 + new_repository: *731 required: - new_discussion - new_repository - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123775,10 +124021,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *743 - old_answer: *745 - organization: *727 - repository: *728 + discussion: *746 + old_answer: *748 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123860,12 +124106,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *743 - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -123948,11 +124194,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124034,11 +124280,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *743 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + discussion: *746 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -124111,7 +124357,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *725 + enterprise: *728 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -124771,9 +125017,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *726 - organization: *727 - repository: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - forkee @@ -124919,9 +125165,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pages: description: The pages that were updated. type: array @@ -124958,7 +125204,7 @@ x-webhooks: - action - sha - html_url - repository: *728 + repository: *731 sender: *4 required: - pages @@ -125034,10 +125280,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: &748 + organization: *730 + repositories: &751 description: An array of repository objects that the installation can access. type: array @@ -125063,8 +125309,8 @@ x-webhooks: - name - full_name - private - repository: *728 - requester: *747 + repository: *731 + requester: *750 sender: *4 required: - action @@ -125139,11 +125385,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125219,11 +125465,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125299,10 +125545,10 @@ x-webhooks: type: string enum: - added - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories_added: &749 + organization: *730 + repositories_added: &752 description: An array of repository objects, which were added to the installation. type: array @@ -125348,15 +125594,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *728 - repository_selection: &750 + repository: *731 + repository_selection: &753 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *747 + requester: *750 sender: *4 required: - action @@ -125435,10 +125681,10 @@ x-webhooks: type: string enum: - removed - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories_added: *749 + organization: *730 + repositories_added: *752 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -125465,9 +125711,9 @@ x-webhooks: - name - full_name - private - repository: *728 - repository_selection: *750 - requester: *747 + repository: *731 + repository_selection: *753 + requester: *750 sender: *4 required: - action @@ -125546,11 +125792,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125728,10 +125974,10 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 target_type: type: string @@ -125810,11 +126056,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *725 + enterprise: *728 installation: *22 - organization: *727 - repositories: *748 - repository: *728 + organization: *730 + repositories: *751 + repository: *731 requester: nullable: true sender: *4 @@ -125938,8 +126184,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *72 - required: *73 + properties: *74 + required: *75 reactions: title: Reactions type: object @@ -125988,8 +126234,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true user: title: User @@ -126074,8 +126320,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -126864,8 +127110,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -126881,7 +127127,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -127214,8 +127460,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -127295,7 +127541,7 @@ x-webhooks: type: string enum: - deleted - comment: &751 + comment: &754 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -127452,8 +127698,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *559 - required: *560 + properties: *562 + required: *563 nullable: true required: - url @@ -127468,8 +127714,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -128254,8 +128500,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -128271,7 +128517,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -128606,8 +128852,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -128687,7 +128933,7 @@ x-webhooks: type: string enum: - edited - changes: &780 + changes: &783 description: The changes to the comment. type: object properties: @@ -128699,9 +128945,9 @@ x-webhooks: type: string required: - from - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -129489,8 +129735,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -129506,7 +129752,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -129839,8 +130085,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -129921,9 +130167,9 @@ x-webhooks: type: string enum: - pinned - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130713,8 +130959,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130730,7 +130976,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -131065,8 +131311,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -131146,9 +131392,9 @@ x-webhooks: type: string enum: - unpinned - comment: *751 - enterprise: *725 - installation: *726 + comment: *754 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131938,8 +132184,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131955,7 +132201,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -132290,8 +132536,8 @@ x-webhooks: - state - locked - assignee - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132374,15 +132620,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 + blocked_issue: *79 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - blocking_issue_repo: *71 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + blocking_issue_repo: *73 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132465,15 +132711,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 + blocked_issue: *79 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - blocking_issue_repo: *71 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + blocking_issue_repo: *73 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132555,15 +132801,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 - blocked_issue_repo: *71 + blocked_issue: *79 + blocked_issue_repo: *73 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132646,15 +132892,15 @@ x-webhooks: blocked_issue_id: description: The ID of the blocked issue. type: number - blocked_issue: *77 - blocked_issue_repo: *71 + blocked_issue: *79 + blocked_issue_repo: *73 blocking_issue_id: description: The ID of the blocking issue. type: number - blocking_issue: *77 - installation: *726 - organization: *727 - repository: *728 + blocking_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -132734,10 +132980,10 @@ x-webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *725 - installation: *726 - issue: &754 + assignee: *750 + enterprise: *728 + installation: *729 + issue: &757 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -133526,14 +133772,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133549,7 +133795,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -133650,8 +133896,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -133731,8 +133977,8 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -134526,14 +134772,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134549,7 +134795,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -134785,8 +135031,8 @@ x-webhooks: required: - state - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -134865,8 +135111,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135651,14 +135897,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135674,7 +135920,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -135774,8 +136020,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -135854,8 +136100,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136662,14 +136908,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136685,7 +136931,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -136764,7 +137010,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &752 + milestone: &755 title: Milestone description: A collection of related issues and pull requests. type: object @@ -136902,8 +137148,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -137002,8 +137248,8 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137792,14 +138038,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137812,7 +138058,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -137916,9 +138162,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *727 - repository: *728 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -137998,8 +138244,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138787,14 +139033,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138807,7 +139053,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -138911,9 +139157,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *746 - organization: *727 - repository: *728 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -138993,8 +139239,8 @@ x-webhooks: type: string enum: - locked - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139806,14 +140052,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139826,7 +140072,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *232 + type: *235 title: description: Title of the issue type: string @@ -139907,8 +140153,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -139987,8 +140233,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140794,14 +141040,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140817,7 +141063,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -140895,9 +141141,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *752 - organization: *727 - repository: *728 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -141760,11 +142006,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141792,8 +142038,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true user: title: User @@ -141865,7 +142111,7 @@ x-webhooks: required: - login - id - type: *232 + type: *235 required: - id - number @@ -142349,8 +142595,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143134,11 +143380,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143154,7 +143400,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -143167,8 +143413,8 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true user: title: User @@ -143262,8 +143508,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -143343,9 +143589,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *725 - installation: *726 - issue: &753 + enterprise: *728 + installation: *729 + issue: &756 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144128,14 +144374,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144151,7 +144397,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -144251,8 +144497,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -144331,8 +144577,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145142,14 +145388,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145243,9 +145489,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *232 - organization: *727 - repository: *728 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -146111,14 +146357,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146134,7 +146380,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -146717,11 +146963,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *725 - installation: *726 - issue: *753 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *756 + organization: *730 + repository: *731 sender: *4 required: - action @@ -146801,12 +147047,12 @@ x-webhooks: type: string enum: - typed - enterprise: *725 - installation: *726 - issue: *754 - type: *232 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -146887,7 +147133,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &783 + assignee: &786 title: User type: object nullable: true @@ -146957,11 +147203,11 @@ x-webhooks: required: - login - id - enterprise: *725 - installation: *726 - issue: *754 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147040,12 +147286,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *725 - installation: *726 - issue: *754 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -147125,8 +147371,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147936,14 +148182,14 @@ x-webhooks: description: Comments provide a way for people to collaborate on an issue. type: object - properties: *78 - required: *79 + properties: *80 + required: *81 nullable: true - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *663 + issue_dependencies_summary: *664 issue_field_values: type: array - items: *544 + items: *547 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147959,7 +148205,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *232 + type: *235 updated_at: type: string format: date-time @@ -148037,8 +148283,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148118,11 +148364,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *725 - installation: *726 - issue: *753 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *756 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148201,12 +148447,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *725 - installation: *726 - issue: *754 - type: *232 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + issue: *757 + type: *235 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148286,11 +148532,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148368,11 +148614,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148482,11 +148728,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - label: *746 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + label: *749 + organization: *730 + repository: *731 sender: *4 required: - action @@ -148568,9 +148814,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: &755 + enterprise: *728 + installation: *729 + marketplace_purchase: &758 title: Marketplace Purchase type: object required: @@ -148653,8 +148899,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *727 - previous_marketplace_purchase: &756 + organization: *730 + previous_marketplace_purchase: &759 title: Marketplace Purchase type: object properties: @@ -148734,7 +148980,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -148814,10 +149060,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -148900,7 +149146,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -148982,10 +149228,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -149067,7 +149313,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *728 + repository: *731 sender: *4 required: - action @@ -149148,8 +149394,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 marketplace_purchase: title: Marketplace Purchase type: object @@ -149231,9 +149477,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *727 - previous_marketplace_purchase: *756 - repository: *728 + organization: *730 + previous_marketplace_purchase: *759 + repository: *731 sender: *4 required: - action @@ -149313,12 +149559,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *725 - installation: *726 - marketplace_purchase: *755 - organization: *727 - previous_marketplace_purchase: *756 - repository: *728 + enterprise: *728 + installation: *729 + marketplace_purchase: *758 + organization: *730 + previous_marketplace_purchase: *759 + repository: *731 sender: *4 required: - action @@ -149420,11 +149666,11 @@ x-webhooks: type: string required: - to - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -149524,11 +149770,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -149607,11 +149853,11 @@ x-webhooks: type: string enum: - removed - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 sender: *4 required: - action @@ -149689,11 +149935,11 @@ x-webhooks: type: string enum: - added - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 scope: description: The scope of the membership. Currently, can only be `team`. @@ -149769,7 +150015,7 @@ x-webhooks: required: - login - id - team: &757 + team: &760 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -149992,11 +150238,11 @@ x-webhooks: type: string enum: - removed - enterprise: *725 - installation: *726 - member: *747 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + member: *750 + organization: *730 + repository: *731 scope: description: The scope of the membership. Currently, can only be `team`. @@ -150073,7 +150319,7 @@ x-webhooks: required: - login - id - team: *757 + team: *760 required: - action - scope @@ -150155,8 +150401,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *726 - merge_group: &759 + installation: *729 + merge_group: &762 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -150175,15 +150421,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *758 + head_commit: *761 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150269,10 +150515,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *726 - merge_group: *759 - organization: *727 - repository: *728 + installation: *729 + merge_group: *762 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150345,7 +150591,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 + enterprise: *728 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -150454,16 +150700,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *726 - organization: *727 + installation: *729 + organization: *730 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -150544,11 +150790,11 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150627,9 +150873,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - milestone: &762 + enterprise: *728 + installation: *729 + milestone: &765 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150766,8 +151012,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150846,11 +151092,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -150960,11 +151206,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - milestone: *752 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *755 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151044,11 +151290,11 @@ x-webhooks: type: string enum: - opened - enterprise: *725 - installation: *726 - milestone: *762 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + milestone: *765 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151127,11 +151373,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *747 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + blocked_user: *750 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151210,11 +151456,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *747 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + blocked_user: *750 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151293,9 +151539,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - membership: &763 + enterprise: *728 + installation: *729 + membership: &766 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -151402,8 +151648,8 @@ x-webhooks: - role - organization_url - user - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151481,11 +151727,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151564,8 +151810,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -151681,10 +151927,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 - user: *747 + user: *750 required: - action - invitation @@ -151762,11 +152008,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151853,11 +152099,11 @@ x-webhooks: properties: from: type: string - enterprise: *725 - installation: *726 - membership: *763 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + membership: *766 + organization: *730 + repository: *731 sender: *4 required: - action @@ -151934,9 +152180,9 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 package: description: Information about the package. type: object @@ -152435,7 +152681,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &764 + items: &767 title: Ruby Gems metadata type: object properties: @@ -152530,7 +152776,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -152606,9 +152852,9 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 package: description: Information about the package. type: object @@ -152961,7 +153207,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *767 source_url: type: string format: uri @@ -153031,7 +153277,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -153207,12 +153453,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *725 + enterprise: *728 id: type: integer - installation: *726 - organization: *727 - repository: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - id @@ -153289,7 +153535,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &765 + personal_access_token_request: &768 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -153435,10 +153681,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *725 - organization: *727 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153515,11 +153761,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *765 - enterprise: *725 - organization: *727 + personal_access_token_request: *768 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153595,11 +153841,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *765 - enterprise: *725 - organization: *727 + personal_access_token_request: *768 + enterprise: *728 + organization: *730 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153674,11 +153920,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *765 - organization: *727 - enterprise: *725 + personal_access_token_request: *768 + organization: *730 + enterprise: *728 sender: *4 - installation: *726 + installation: *729 required: - action - personal_access_token_request @@ -153783,7 +154029,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *766 + last_response: *769 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -153815,8 +154061,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 zen: description: Random string of GitHub zen. @@ -154061,10 +154307,10 @@ x-webhooks: - from required: - note - enterprise: *725 - installation: *726 - organization: *727 - project_card: &767 + enterprise: *728 + installation: *729 + organization: *730 + project_card: &770 title: Project Card type: object properties: @@ -154183,7 +154429,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -154264,11 +154510,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project_card: *767 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_card: *770 + repository: *731 sender: *4 required: - action @@ -154348,9 +154594,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 project_card: title: Project Card type: object @@ -154478,8 +154724,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -154573,11 +154819,11 @@ x-webhooks: - from required: - note - enterprise: *725 - installation: *726 - organization: *727 - project_card: *767 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_card: *770 + repository: *731 sender: *4 required: - action @@ -154671,9 +154917,9 @@ x-webhooks: - from required: - column_id - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 project_card: allOf: - title: Project Card @@ -154863,7 +155109,7 @@ x-webhooks: type: string required: - after_id - repository: *728 + repository: *731 sender: *4 required: - action @@ -154943,10 +155189,10 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - organization: *727 - project: &769 + enterprise: *728 + installation: *729 + organization: *730 + project: &772 title: Project type: object properties: @@ -155070,7 +155316,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -155150,10 +155396,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project_column: &768 + enterprise: *728 + installation: *729 + organization: *730 + project_column: &771 title: Project Column type: object properties: @@ -155192,7 +155438,7 @@ x-webhooks: - name - created_at - updated_at - repository: *728 + repository: *731 sender: *4 required: - action @@ -155271,18 +155517,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -155372,11 +155618,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 + repository: *731 sender: *4 required: - action @@ -155456,11 +155702,11 @@ x-webhooks: type: string enum: - moved - enterprise: *725 - installation: *726 - organization: *727 - project_column: *768 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project_column: *771 + repository: *731 sender: *4 required: - action @@ -155540,11 +155786,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -155624,18 +155870,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - project: *769 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *760 - required: *761 + properties: *763 + required: *764 nullable: true sender: *4 required: @@ -155737,11 +155983,11 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -155820,11 +156066,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 - organization: *727 - project: *769 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + project: *772 + repository: *731 sender: *4 required: - action @@ -155905,9 +156151,9 @@ x-webhooks: type: string enum: - closed - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -155988,9 +156234,9 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156071,9 +156317,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156190,9 +156436,9 @@ x-webhooks: type: string to: type: string - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -156275,7 +156521,7 @@ x-webhooks: type: string enum: - archived - changes: &773 + changes: &776 type: object properties: archived_at: @@ -156289,9 +156535,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *726 - organization: *727 - projects_v2_item: &770 + installation: *729 + organization: *730 + projects_v2_item: &773 title: Projects v2 Item description: An item belonging to a project type: object @@ -156309,7 +156555,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *273 + content_type: *276 creator: *4 created_at: type: string @@ -156426,9 +156672,9 @@ x-webhooks: nullable: true to: type: string - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156510,9 +156756,9 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156593,9 +156839,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156701,7 +156947,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &771 + - &774 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -156723,7 +156969,7 @@ x-webhooks: required: - id - name - - &772 + - &775 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -156757,8 +157003,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *771 - - *772 + - *774 + - *775 required: - field_value - type: object @@ -156774,9 +157020,9 @@ x-webhooks: nullable: true required: - body - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156871,9 +157117,9 @@ x-webhooks: to: type: string nullable: true - installation: *726 - organization: *727 - projects_v2_item: *770 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -156956,10 +157202,10 @@ x-webhooks: type: string enum: - restored - changes: *773 - installation: *726 - organization: *727 - projects_v2_item: *770 + changes: *776 + installation: *729 + organization: *730 + projects_v2_item: *773 sender: *4 required: - action @@ -157041,9 +157287,9 @@ x-webhooks: type: string enum: - reopened - installation: *726 - organization: *727 - projects_v2: *266 + installation: *729 + organization: *730 + projects_v2: *269 sender: *4 required: - action @@ -157124,14 +157370,14 @@ x-webhooks: type: string enum: - created - installation: *726 - organization: *727 - projects_v2_status_update: &776 + installation: *729 + organization: *730 + projects_v2_status_update: &779 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *774 - required: *775 + properties: *777 + required: *778 sender: *4 required: - action @@ -157212,9 +157458,9 @@ x-webhooks: type: string enum: - deleted - installation: *726 - organization: *727 - projects_v2_status_update: *776 + installation: *729 + organization: *730 + projects_v2_status_update: *779 sender: *4 required: - action @@ -157350,9 +157596,9 @@ x-webhooks: type: string format: date nullable: true - installation: *726 - organization: *727 - projects_v2_status_update: *776 + installation: *729 + organization: *730 + projects_v2_status_update: *779 sender: *4 required: - action @@ -157423,10 +157669,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - repository @@ -157503,13 +157749,13 @@ x-webhooks: type: string enum: - assigned - assignee: *747 - enterprise: *725 - installation: *726 - number: &777 + assignee: *750 + enterprise: *728 + installation: *729 + number: &780 description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -159804,7 +160050,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -159886,11 +160132,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -162180,7 +162426,7 @@ x-webhooks: - draft reason: type: string - repository: *728 + repository: *731 sender: *4 required: - action @@ -162262,11 +162508,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -164556,7 +164802,7 @@ x-webhooks: - draft reason: type: string - repository: *728 + repository: *731 sender: *4 required: - action @@ -164638,13 +164884,13 @@ x-webhooks: type: string enum: - closed - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: &778 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: &781 allOf: - - *582 + - *585 - type: object properties: allow_auto_merge: @@ -164706,7 +164952,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *728 + repository: *731 sender: *4 required: - action @@ -164787,12 +165033,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -164872,11 +165118,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *725 - milestone: *566 - number: *777 - organization: *727 - pull_request: &779 + enterprise: *728 + milestone: *569 + number: *780 + organization: *730 + pull_request: &782 title: Pull Request type: object properties: @@ -167165,7 +167411,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -167244,11 +167490,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -169556,7 +169802,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *728 + repository: *731 sender: *4 required: - action @@ -169680,12 +169926,12 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -169765,11 +170011,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -172062,7 +172308,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -172142,11 +172388,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *725 - installation: *726 - label: *746 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + label: *749 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -174440,7 +174686,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -174521,10 +174767,10 @@ x-webhooks: type: string enum: - locked - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -176816,7 +177062,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -176896,12 +177142,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *725 - milestone: *566 - number: *777 - organization: *727 - pull_request: *779 - repository: *728 + enterprise: *728 + milestone: *569 + number: *780 + organization: *730 + pull_request: *782 + repository: *731 sender: *4 required: - action @@ -176980,12 +177226,12 @@ x-webhooks: type: string enum: - opened - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177066,12 +177312,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177151,12 +177397,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *725 - installation: *726 - number: *777 - organization: *727 - pull_request: *778 - repository: *728 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 + pull_request: *781 + repository: *731 sender: *4 required: - action @@ -177522,9 +177768,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -179706,7 +179952,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -179786,7 +180032,7 @@ x-webhooks: type: string enum: - deleted - comment: &781 + comment: &784 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -180071,9 +180317,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -182243,7 +182489,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -182323,11 +182569,11 @@ x-webhooks: type: string enum: - edited - changes: *780 - comment: *781 - enterprise: *725 - installation: *726 - organization: *727 + changes: *783 + comment: *784 + enterprise: *728 + installation: *729 + organization: *730 pull_request: type: object properties: @@ -184500,7 +184746,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *728 + repository: *731 sender: *4 required: - action @@ -184581,9 +184827,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -186768,7 +187014,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 review: description: The review that was affected. type: object @@ -187015,9 +187261,9 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -189067,8 +189313,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 - review: &782 + repository: *731 + review: &785 description: The review that was affected. type: object properties: @@ -189301,12 +189547,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -191601,7 +191847,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_reviewer: title: User type: object @@ -191685,12 +191931,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -193992,7 +194238,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_team: title: Team description: Groups of organization members that gives permissions @@ -194184,12 +194430,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -196486,7 +196732,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_reviewer: title: User type: object @@ -196571,12 +196817,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *725 - installation: *726 + enterprise: *728 + installation: *729 number: description: The pull request number. type: integer - organization: *727 + organization: *730 pull_request: title: Pull Request type: object @@ -198864,7 +199110,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199045,9 +199291,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -201234,8 +201480,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 - review: *782 + repository: *731 + review: *785 sender: *4 required: - action @@ -201315,9 +201561,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -203413,7 +203659,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 sender: *4 thread: type: object @@ -203800,9 +204046,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 pull_request: title: Simple Pull Request type: object @@ -205884,7 +206130,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *728 + repository: *731 sender: *4 thread: type: object @@ -206274,10 +206520,10 @@ x-webhooks: type: string before: type: string - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -208560,7 +208806,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -208642,11 +208888,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *783 - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + assignee: *786 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -210941,7 +211187,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -211020,11 +211266,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *725 - installation: *726 - label: *746 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + label: *749 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -213309,7 +213555,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -213390,10 +213636,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *725 - installation: *726 - number: *777 - organization: *727 + enterprise: *728 + installation: *729 + number: *780 + organization: *730 pull_request: title: Pull Request type: object @@ -215670,7 +215916,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *728 + repository: *731 sender: *4 required: - action @@ -215870,7 +216116,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *725 + enterprise: *728 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -215962,8 +216208,8 @@ x-webhooks: - url - author - committer - installation: *726 - organization: *727 + installation: *729 + organization: *730 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -216553,9 +216799,9 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 registry_package: type: object properties: @@ -217001,7 +217247,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *764 + items: *767 summary: type: string tag_name: @@ -217055,7 +217301,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -217133,9 +217379,9 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 registry_package: type: object properties: @@ -217443,7 +217689,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *767 summary: type: string tag_name: @@ -217492,7 +217738,7 @@ x-webhooks: - owner - package_version - registry - repository: *728 + repository: *731 sender: *4 required: - action @@ -217569,10 +217815,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - release: &784 + enterprise: *728 + installation: *729 + organization: *730 + release: &787 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -217890,7 +218136,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *728 + repository: *731 sender: *4 required: - action @@ -217967,11 +218213,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -218088,11 +218334,11 @@ x-webhooks: type: boolean required: - to - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -218170,9 +218416,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -218494,7 +218740,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *728 + repository: *731 sender: *4 required: - action @@ -218570,10 +218816,10 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - release: &785 + enterprise: *728 + installation: *729 + organization: *730 + release: &788 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -218892,7 +219138,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *728 + repository: *731 sender: *4 required: - action @@ -218968,11 +219214,11 @@ x-webhooks: type: string enum: - released - enterprise: *725 - installation: *726 - organization: *727 - release: *784 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *787 + repository: *731 sender: *4 required: - action @@ -219048,11 +219294,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *725 - installation: *726 - organization: *727 - release: *785 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + release: *788 + repository: *731 sender: *4 required: - action @@ -219128,11 +219374,11 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_advisory: *646 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_advisory: *649 sender: *4 required: - action @@ -219208,11 +219454,11 @@ x-webhooks: type: string enum: - reported - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_advisory: *646 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_advisory: *649 sender: *4 required: - action @@ -219288,10 +219534,10 @@ x-webhooks: type: string enum: - archived - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219368,10 +219614,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219449,10 +219695,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219536,10 +219782,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219651,10 +219897,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219726,10 +219972,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 status: type: string @@ -219810,10 +220056,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219890,10 +220136,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -219987,10 +220233,10 @@ x-webhooks: - name required: - repository - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220070,11 +220316,11 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 sender: *4 required: - action @@ -220152,11 +220398,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 sender: *4 required: - action @@ -220234,11 +220480,11 @@ x-webhooks: type: string enum: - edited - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - repository_ruleset: *314 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + repository_ruleset: *317 changes: type: object properties: @@ -220257,16 +220503,16 @@ x-webhooks: properties: added: type: array - items: *288 + items: *291 deleted: type: array - items: *288 + items: *291 updated: type: array items: type: object properties: - condition: *288 + condition: *291 changes: type: object properties: @@ -220299,16 +220545,16 @@ x-webhooks: properties: added: type: array - items: *602 + items: *605 deleted: type: array - items: *602 + items: *605 updated: type: array items: type: object properties: - rule: *602 + rule: *605 changes: type: object properties: @@ -220542,10 +220788,10 @@ x-webhooks: - from required: - owner - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220623,10 +220869,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -220704,7 +220950,7 @@ x-webhooks: type: string enum: - create - alert: &786 + alert: &789 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -220826,10 +221072,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221035,10 +221281,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221116,11 +221362,11 @@ x-webhooks: type: string enum: - reopen - alert: *786 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221319,10 +221565,10 @@ x-webhooks: enum: - fixed - open - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221400,11 +221646,11 @@ x-webhooks: type: string enum: - assigned - alert: &787 + alert: &790 type: object properties: - number: *171 - created_at: *172 + number: *174 + created_at: *175 updated_at: type: string description: 'The time that the alert was last updated in ISO @@ -221412,8 +221658,8 @@ x-webhooks: format: date-time readOnly: true nullable: true - url: *174 - html_url: *175 + url: *177 + html_url: *178 locations_url: type: string format: uri @@ -221519,10 +221765,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221600,11 +221846,11 @@ x-webhooks: type: string enum: - created - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -221685,11 +221931,11 @@ x-webhooks: type: string enum: - created - alert: *787 - installation: *726 - location: *788 - organization: *727 - repository: *728 + alert: *790 + installation: *729 + location: *791 + organization: *730 + repository: *731 sender: *4 required: - location @@ -221927,11 +222173,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222009,11 +222255,11 @@ x-webhooks: type: string enum: - reopened - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222091,11 +222337,11 @@ x-webhooks: type: string enum: - resolved - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222173,12 +222419,12 @@ x-webhooks: type: string enum: - unassigned - alert: *787 + alert: *790 assignee: *4 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222256,11 +222502,11 @@ x-webhooks: type: string enum: - validated - alert: *787 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + alert: *790 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -222386,10 +222632,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *728 - enterprise: *725 - installation: *726 - organization: *727 + repository: *731 + enterprise: *728 + installation: *729 + organization: *730 sender: *4 required: - action @@ -222467,16 +222713,16 @@ x-webhooks: type: string enum: - published - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - security_advisory: &789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + security_advisory: &792 description: The details of the security advisory, including summary, description, and severity. type: object properties: - cvss_severities: *55 + cvss_severities: *57 cwes: type: array items: @@ -222642,11 +222888,11 @@ x-webhooks: type: string enum: - updated - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 - security_advisory: *789 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 + security_advisory: *792 sender: *4 required: - action @@ -222719,16 +222965,16 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 security_advisory: description: The details of the security advisory, including summary, description, and severity. type: object properties: - cvss_severities: *55 + cvss_severities: *57 cwes: type: array items: @@ -222894,11 +223140,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *287 - enterprise: *725 - installation: *726 - organization: *727 - repository: *335 + security_and_analysis: *290 + enterprise: *728 + installation: *729 + organization: *730 + repository: *338 sender: *4 required: - changes @@ -222976,12 +223222,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: &790 + sponsorship: &793 type: object properties: created_at: @@ -223282,12 +223528,12 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -223375,12 +223621,12 @@ x-webhooks: type: string required: - from - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -223457,17 +223703,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &791 + effective_date: &794 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -223541,7 +223787,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &792 + changes: &795 type: object properties: tier: @@ -223585,13 +223831,13 @@ x-webhooks: - from required: - tier - effective_date: *791 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + effective_date: *794 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -223668,13 +223914,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *792 - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + changes: *795 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -223748,10 +223994,10 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -223834,10 +224080,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -224257,15 +224503,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *725 + enterprise: *728 id: description: The unique identifier of the status. type: integer - installation: *726 + installation: *729 name: type: string - organization: *727 - repository: *728 + organization: *730 + repository: *731 sender: *4 sha: description: The Commit SHA. @@ -224374,15 +224620,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - parent_issue_repo: *71 + parent_issue: *79 + parent_issue_repo: *73 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - installation: *726 - organization: *727 - repository: *728 + sub_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -224466,15 +224712,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - parent_issue_repo: *71 + parent_issue: *79 + parent_issue_repo: *73 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - installation: *726 - organization: *727 - repository: *728 + sub_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -224558,15 +224804,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - sub_issue_repo: *71 + sub_issue: *79 + sub_issue_repo: *73 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - installation: *726 - organization: *727 - repository: *728 + parent_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -224650,15 +224896,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *77 - sub_issue_repo: *71 + sub_issue: *79 + sub_issue_repo: *73 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *77 - installation: *726 - organization: *727 - repository: *728 + parent_issue: *79 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -224735,12 +224981,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - team: &793 + team: &796 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -224963,9 +225209,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -225423,7 +225669,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -225499,9 +225745,9 @@ x-webhooks: type: string enum: - created - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -225959,7 +226205,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -226036,9 +226282,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -226496,7 +226742,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -226640,9 +226886,9 @@ x-webhooks: - from required: - permissions - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -227100,7 +227346,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - changes @@ -227178,9 +227424,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *725 - installation: *726 - organization: *727 + enterprise: *728 + installation: *729 + organization: *730 repository: title: Repository description: A git repository @@ -227638,7 +227884,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -227714,10 +227960,10 @@ x-webhooks: type: string enum: - started - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 required: - action @@ -227790,16 +228036,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *725 + enterprise: *728 inputs: type: object nullable: true additionalProperties: true - installation: *726 - organization: *727 + installation: *729 + organization: *730 ref: type: string - repository: *728 + repository: *731 sender: *4 workflow: type: string @@ -227881,10 +228127,10 @@ x-webhooks: type: string enum: - completed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: allOf: @@ -228121,7 +228367,7 @@ x-webhooks: type: string required: - conclusion - deployment: *493 + deployment: *496 required: - action - repository @@ -228200,10 +228446,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: allOf: @@ -228463,7 +228709,7 @@ x-webhooks: required: - status - steps - deployment: *493 + deployment: *496 required: - action - repository @@ -228542,10 +228788,10 @@ x-webhooks: type: string enum: - queued - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: type: object @@ -228680,7 +228926,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *493 + deployment: *496 required: - action - repository @@ -228759,10 +229005,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 workflow_job: type: object @@ -228898,7 +229144,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *493 + deployment: *496 required: - action - repository @@ -228978,12 +229224,12 @@ x-webhooks: type: string enum: - completed - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object @@ -229982,12 +230228,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object @@ -230971,12 +231217,12 @@ x-webhooks: type: string enum: - requested - enterprise: *725 - installation: *726 - organization: *727 - repository: *728 + enterprise: *728 + installation: *729 + organization: *730 + repository: *731 sender: *4 - workflow: *742 + workflow: *745 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index 1da9f1147..6b9e9e715 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -17417,6 +17417,345 @@ } } }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an enterprise", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "custom_property_name": "environment", + "inclusion_source": "enterprise" + }, + { + "custom_property_name": "team", + "inclusion_source": "enterprise" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an enterprise", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/enterprises/{enterprise}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an enterprise", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an enterprise.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:enterprise` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-enterprise", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-enterprise" + }, + "parameters": [ + { + "name": "enterprise", + "description": "The slug version of the enterprise name.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Property inclusion not found" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "githubCloudOnly": false, + "category": "actions", + "subcategory": "oidc" + } + } + }, "/enterprises/{enterprise}/code-security/configurations": { "get": { "summary": "Get code security configurations for an enterprise", @@ -78186,6 +78525,340 @@ } } }, + "/orgs/{org}/actions/oidc/customization/properties/repo": { + "get": { + "summary": "List OIDC custom property inclusions for an organization", + "description": "Lists the repository custom properties that are included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `read:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/list-oidc-custom-property-inclusions-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#list-oidc-custom-property-inclusions-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "A JSON array of OIDC custom property inclusions", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "property_name": "environment" + }, + { + "property_name": "team" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + }, + "post": { + "summary": "Create an OIDC custom property inclusion for an organization", + "description": "Adds a repository custom property to be included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/create-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#create-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion Input", + "description": "Input for creating an OIDC custom property inclusion", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property to include in the OIDC token" + } + }, + "required": [ + "custom_property_name" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "responses": { + "201": { + "description": "OIDC custom property inclusion created", + "content": { + "application/json": { + "schema": { + "title": "Actions OIDC Custom Property Inclusion", + "description": "An OIDC custom property inclusion for repository properties", + "type": "object", + "properties": { + "custom_property_name": { + "type": "string", + "description": "The name of the custom property that is included in the OIDC token" + }, + "inclusion_source": { + "type": "string", + "description": "Whether the inclusion was defined at the organization or enterprise level", + "enum": [ + "organization", + "enterprise" + ], + "example": "organization" + } + }, + "required": [ + "custom_property_name", + "inclusion_source" + ] + }, + "examples": { + "default": { + "value": { + "custom_property_name": "environment" + } + } + } + } + } + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Property inclusion already exists" + } + }, + "x-github": { + "enabledForGitHubApps": true, + "category": "actions", + "subcategory": "oidc" + } + } + }, + "/orgs/{org}/actions/oidc/customization/properties/repo/{custom_property_name}": { + "delete": { + "summary": "Delete an OIDC custom property inclusion for an organization", + "description": "Removes a repository custom property from being included in the OIDC token for repository actions in an organization.\n\nOAuth app tokens and personal access tokens (classic) need the `admin:org` scope to use this endpoint.", + "tags": [ + "oidc" + ], + "operationId": "oidc/delete-oidc-custom-property-inclusion-for-org", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/actions/oidc#delete-an-oidc-custom-property-inclusion-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "custom_property_name", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "The name of the custom property to remove from OIDC token inclusion" + } + ], + "responses": { + "204": { + "description": "OIDC custom property inclusion deleted" + }, + "400": { + "description": "Invalid input" + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + {"code":"deadline_exceeded","msg":"operation timed out"}